fix: s/EMAIL_SENDER_ADDRESS/DEFAULT_FROM_EMAIL/
ci/woodpecker/push/woodpecker Pipeline failed Details
ci/woodpecker/pr/woodpecker Pipeline failed Details

Aravinth Manivannan 2022-07-04 16:07:30 +05:30
parent 5f77bbe75a
commit 887c65d324
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
6 changed files with 6 additions and 6 deletions

View File

@ -47,7 +47,7 @@ def send_verification_email(request, challenge):
email = challenge.owned_by.email
sender = settings.HOSTEA["EMAIL_SENDER_ADDRESS"]
sender = settings.HOSTEA["DEFAULT_FROM_EMAIL"]
send_mail(
subject="[Hostea] Please confirm your email address",

View File

@ -56,7 +56,7 @@ PAYMENT_VARIANTS = {
HOSTEA = {
"SOURCE_CODE": "https://gitea.hostea.org/Hostea/dashboard",
"INSTANCE_MAINTAINER_CONTACT": "contact@hostea.example.org",
"EMAIL_SENDER_ADDRESS": "no-reply@hostea.org",
"DEFAULT_FROM_EMAIL": "no-reply@hostea.org",
"ACCOUNTS": {
"MAX_VERIFICATION_TOLERANCE_PERIOD": 60 * 60 * 24, # in seconds
"SUDO_TTL": 60 * 5,

View File

@ -55,7 +55,7 @@ PAYMENT_VARIANTS = {
HOSTEA = {
"SOURCE_CODE": "https://gitea.hostea.org/Hostea/dashboard",
"INSTANCE_MAINTAINER_CONTACT": "contact@hostea.example.org",
"EMAIL_SENDER_ADDRESS": "no-reply@hostea.org",
"DEFAULT_FROM_EMAIL": "no-reply@hostea.org",
"ACCOUNTS": {
"MAX_VERIFICATION_TOLERANCE_PERIOD": 60 * 60 * 24, # in seconds
"SUDO_TTL": 60 * 5,

View File

@ -170,7 +170,7 @@ PAYMENT_VARIANTS = {
HOSTEA = {
"SOURCE_CODE": "https://gitea.hostea.org/Hostea/dashboard",
"RESTRICT_NEW_INTEGRATION_INSTALLATION": True,
"EMAIL_SENDER_ADDRESS": "no-reply@hostea.org",
"DEFAULT_FROM_EMAIL": "no-reply@hostea.org",
"INSTANCE_MAINTAINER_CONTACT": "contact@hostea.example.org",
"ACCOUNTS": {
"MAX_VERIFICATION_TOLERANCE_PERIOD": 60 * 60 * 24, # in seconds

View File

@ -64,7 +64,7 @@ class Worker(Thread):
context=ctx,
)
sender = settings.HOSTEA["EMAIL_SENDER_ADDRESS"]
sender = settings.HOSTEA["DEFAULT_FROM_EMAIL"]
send_mail(
subject="[Hostea] Your Hostea instance is now online!",

View File

@ -66,7 +66,7 @@ def create_instance(request, instance_name: str):
context=ctx,
)
sender = settings.HOSTEA["EMAIL_SENDER_ADDRESS"]
sender = settings.HOSTEA["DEFAULT_FROM_EMAIL"]
send_mail(
subject="[Hostea] Your Hostea instance is now online!",