change smtp port to 587 to bypass hcloud restrictions

Hetzner block port 25 and 465 by default on all cloud servers.
https://docs.hetzner.com/cloud/servers/faq/#why-can-i-not-send-any-mails-from-my-server
This commit is contained in:
Oli
2023-03-04 11:01:54 +00:00
parent ae2010e259
commit a0fef30464
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@
"mail_smtpauth": 1,
"mail_smtpname": "{{ nextcloud_smtp_user }}",
"mail_smtppassword": "{{ nextcloud_smtp_pass }}",
"mail_smtpsecure": "ssl",
"mail_smtpsecure": "tls",
"loglevel": 1,
"logfile": {{ nextcloud_log_file | to_json }},
"logtimezone": "Europe\/Berlin",