nixfiles/hosts/hetzner-vm/services/mailserver/webmail.nix

18 lines
500 B
Nix
Raw Normal View History

2022-06-22 16:59:41 +01:00
{ ... }:
let mail_config = (import ./config.nix { });
in {
services.roundcube = {
enable = true;
hostName = "mail.owo.monster";
extraConfig = ''
$config['smtp_server'] = "tls://${mail_config.fqdn}";
$config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p";
2022-06-22 18:05:02 +01:00
$config['plugins'] = ["managesieve"];
$config['managesieve_host'] = 'tls://${mail_config.fqdn}';
2022-06-26 19:59:29 +01:00
$config['session_lifetime'] = 168;
$config['product_name'] = 'Chaos Mail';
2022-06-22 16:59:41 +01:00
'';
};
}