18 lines
500 B
Nix
18 lines
500 B
Nix
{ ... }:
|
|
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";
|
|
$config['plugins'] = ["managesieve"];
|
|
$config['managesieve_host'] = 'tls://${mail_config.fqdn}';
|
|
$config['session_lifetime'] = 168;
|
|
$config['product_name'] = 'Chaos Mail';
|
|
'';
|
|
};
|
|
}
|