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

14 lines
304 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";
'';
};
}