Compare commits

...

1 Commits

Author SHA1 Message Date
schweby ce5bb46fa8
mail: force explicit TLS on SMTP too
also switch away from legacy ports
2022-07-10 15:24:53 +02:00
3 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,7 @@
smtp = { smtp = {
enable = true; enable = true;
address = "mail.hacc.space"; address = "mail.hacc.space";
port = 587; port = 465;
authentication = "plain"; authentication = "plain";
domain = "gitlab.infra4future.de"; domain = "gitlab.infra4future.de";
enableStartTLSAuto = true; enableStartTLSAuto = true;

View File

@ -132,6 +132,7 @@
# Only allow implict TLS # Only allow implict TLS
enableImap = false; enableImap = false;
enablePop3 = false; enablePop3 = false;
enableSubmission = false;
# Enable the ManageSieve protocol # Enable the ManageSieve protocol
enableManageSieve = true; enableManageSieve = true;

View File

@ -23,7 +23,7 @@
SMTP_HOST="mail.hacc.space"; SMTP_HOST="mail.hacc.space";
SMTP_FROM="vaultwarden@hacc.space"; SMTP_FROM="vaultwarden@hacc.space";
SMTP_FROM_NAME="haccwarden"; SMTP_FROM_NAME="haccwarden";
SMTP_PORT=587; SMTP_PORT=465;
SMTP_USERNAME="noreply@infra4future.de"; SMTP_USERNAME="noreply@infra4future.de";
}; };