2025-03-05 04:33:20 -05:00
|
|
|
{ config, lib, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2025-03-05 04:33:20 -05:00
|
|
|
config = lib.mkIf config.system.mailserver.enable {
|
|
|
|
services.roundcube = {
|
|
|
|
enable = true;
|
|
|
|
hostName = "mail.nixfox.ca";
|
|
|
|
extraConfig = ''
|
|
|
|
$config['smtp_server'] = "tls://mx.nixfox.ca";
|
|
|
|
$config['smtp_user'] = "%u";
|
|
|
|
$config['smtp_pass'] = "%p";
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.persistence."/persist".directories = [ "/var/lib/roundcube" ];
|
2024-10-07 11:42:34 -04:00
|
|
|
};
|
|
|
|
}
|