From 115d7ae98c0d2fd0b1f9c2216f05716e1bbc1555 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 29 Oct 2023 02:03:53 +0100 Subject: [PATCH] bekkalokk roundcube new smtp config test --- hosts/bekkalokk/services/webmail/roundcube.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/hosts/bekkalokk/services/webmail/roundcube.nix b/hosts/bekkalokk/services/webmail/roundcube.nix index 0974358..d4708e4 100644 --- a/hosts/bekkalokk/services/webmail/roundcube.nix +++ b/hosts/bekkalokk/services/webmail/roundcube.nix @@ -21,9 +21,13 @@ in extraConfig = '' # starttls needed for authentication, so the fqdn required to match # the certificate - $config['smtp_server'] = "${mailserver}"; - $config['smtp_user'] = "%u"; + $config['smtp_server'] = "tls://${mailserver}"; + $config['smtp_port'] = 25; + $config['smtp_user'] = "%u@pvv.ntnu.no"; $config['smtp_pass'] = "%p"; + $config['support_url'] = ""; + # $config['des_key'] = "changeme"; #should be from sops i guess + ''; };