nix/hosts/marvin/services/roundcube.nix

12 lines
259 B
Nix
Raw Normal View History

2022-07-16 02:05:23 +00:00
{
services.roundcube = {
enable = true;
hostName = "webmail.thehedgehog.me";
extraConfig = ''
$config['smtp_server'] = "tls://${config.mailserver.fqdn}";
$config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p";
'';
};
}