diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-06-10 23:16:24 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-06-10 23:16:24 +0200 |
commit | 7ccde67a90e5d096d1414f0a7cc9d844fb12498e (patch) | |
tree | 8afe4ca36d417c907ec495b3c1a3e66d93ba67dd | |
parent | 05f8c21a6f756a7ae7d9ec95e422f1f1a1c7e030 (diff) | |
download | Nix-7ccde67a90e5d096d1414f0a7cc9d844fb12498e.tar.gz Nix-7ccde67a90e5d096d1414f0a7cc9d844fb12498e.tar.zst Nix-7ccde67a90e5d096d1414f0a7cc9d844fb12498e.zip |
Fix roundcube configuration
-rw-r--r-- | modules/private/websites/tools/tools/roundcubemail.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/private/websites/tools/tools/roundcubemail.nix b/modules/private/websites/tools/tools/roundcubemail.nix index c643ff6..6d87cdc 100644 --- a/modules/private/websites/tools/tools/roundcubemail.nix +++ b/modules/private/websites/tools/tools/roundcubemail.nix | |||
@@ -18,7 +18,10 @@ rec { | |||
18 | <?php | 18 | <?php |
19 | $config['db_dsnw'] = '${env.psql_url}'; | 19 | $config['db_dsnw'] = '${env.psql_url}'; |
20 | // This is used as default @domain, don't use "imap.immae.eu" here! | 20 | // This is used as default @domain, don't use "imap.immae.eu" here! |
21 | $config['default_host'] = 'ssl://mail.immae.eu'; | 21 | $config['default_host'] = 'ssl://imap.immae.eu'; |
22 | $config['username_domain'] = array( | ||
23 | "imap.immae.eu" => "mail.immae.eu" | ||
24 | ); | ||
22 | $config['imap_conn_options'] = array("ssl" => array("verify_peer" => false)); | 25 | $config['imap_conn_options'] = array("ssl" => array("verify_peer" => false)); |
23 | $config['smtp_server'] = 'tls://smtp.immae.eu'; | 26 | $config['smtp_server'] = 'tls://smtp.immae.eu'; |
24 | $config['smtp_port'] = '587'; | 27 | $config['smtp_port'] = '587'; |