45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
services.roundcube = {
|
|
enable = true;
|
|
hostName = "webmail.example.com"; # the nginx vhost
|
|
package = pkgs.roundcube.withPlugins (
|
|
plugins: with plugins; [
|
|
# external plugins to be included
|
|
# https://search.nixos.org/packages?query=roundcubePlugins
|
|
persistent_login
|
|
]
|
|
);
|
|
# activate plugins
|
|
plugins = [
|
|
"persistent_login"
|
|
];
|
|
dicts = with pkgs.aspellDicts; [
|
|
# https://search.nixos.org/packages?query=aspellDicts
|
|
en
|
|
];
|
|
maxAttachmentSize = config.mailserver.messageSizeLimit / 1024 / 1024;
|
|
extraConfig = ''
|
|
$config['imap_host'] = "ssl://${config.mailserver.fqdn}";
|
|
$config['smtp_host'] = "ssl://${config.mailserver.fqdn}";
|
|
$config['smtp_user'] = "%u";
|
|
$config['smtp_pass'] = "%p";
|
|
'';
|
|
};
|
|
|
|
services.nginx.virtualHosts.${config.services.rounducbe.hostName} = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
80
|
|
443
|
|
];
|
|
}
|