NixOS-Config/nixos/queen/webmail.nix

21 lines
493 B
Nix
Raw Normal View History

2023-12-17 17:20:19 +01:00
{
config,
pkgs,
lib,
...
2023-12-17 22:29:36 +01:00
}: {
2023-12-17 17:20:19 +01:00
services.roundcube = {
enable = true;
# this is the url of the vhost, not necessarily the same as the fqdn of
# the mailserver
2023-12-21 21:15:44 +01:00
hostName = "webmail.lillianviolet.dev";
2023-12-17 17:20:19 +01:00
extraConfig = ''
# starttls needed for authentication, so the fqdn required to match
# the certificate
$config['smtp_server'] = "tls://${config.mailserver.fqdn}";
$config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p";
'';
};
}