diff options
| author | andromeda <andromeda@lenovo> | 2026-01-12 17:46:49 +0100 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-01-12 17:46:49 +0100 |
| commit | e05c9fe5a543645f429c9064220a0adfef99550d (patch) | |
| tree | 8908bf64c5d5f6e221f1c86106a6c93212ef973d /modules/nixos | |
| parent | c1d8b4dff372c7f514ba1e66c92e1227846d34ff (diff) | |
add tls (I don't know how this works)
Diffstat (limited to 'modules/nixos')
| -rw-r--r-- | modules/nixos/zulip.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/nixos/zulip.nix b/modules/nixos/zulip.nix index bae8098..a2b814c 100644 --- a/modules/nixos/zulip.nix +++ b/modules/nixos/zulip.nix @@ -26,8 +26,8 @@ # configure mailserver port EMAIL_HOST = config.mailserver.fqdn; - EMAIL_USE_TLS = false; - EMAIL_PORT = 587; + EMAIL_USE_TLS = true; + EMAIL_PORT = 587; # non-secure port # setting to allow realm creation; probably unsafe, might delete later :3 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; } |
