mail.idimitrov.dev/mailserver/roundcube/default.nix

19 lines
450 B
Nix
Raw Normal View History

2023-11-15 15:37:04 +01:00
{ config, pkgs, ... }:
{
services = {
roundcube = {
enable = true;
2023-11-15 16:40:13 +01:00
package = pkgs.roundcube.withPlugins (plugins: [ plugins.persistent_login ]);
plugins = [
"persistent_login"
];
2023-11-15 15:37:04 +01:00
hostName = "${config.mailserver.fqdn}";
extraConfig = ''
$config['smtp_host'] = "tls://${config.mailserver.fqdn}";
$config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p";
'';
};
};
}