bekkalokk roundcube new smtp config test
Eval nix flake / evals (push) Successful in 2m41s Details

This commit is contained in:
= 2023-10-29 02:03:53 +01:00
parent 9b1033db5e
commit 115d7ae98c
Signed by: adriangl
GPG Key ID: D33368A59745C2F0
1 changed files with 6 additions and 2 deletions

View File

@ -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
'';
};