add tls (I don't know how this works)

This commit is contained in:
andromeda
2026-01-12 17:46:49 +01:00
parent c1d8b4dff3
commit e05c9fe5a5

View File

@@ -26,8 +26,8 @@
# configure mailserver port # configure mailserver port
EMAIL_HOST = config.mailserver.fqdn; EMAIL_HOST = config.mailserver.fqdn;
EMAIL_USE_TLS = false; EMAIL_USE_TLS = true;
EMAIL_PORT = 587; EMAIL_PORT = 587; # non-secure port
# setting to allow realm creation; probably unsafe, might delete later :3 # setting to allow realm creation; probably unsafe, might delete later :3
OPEN_REALM_CREATION = true; OPEN_REALM_CREATION = true;
@@ -42,6 +42,6 @@
}; };
}; };
# needed for non-tls connection through port 587 # needed for non-secure connection through port 587
mailserver.enableSubmissionSsl = true; mailserver.enableSubmissionSsl = true;
} }