mail.idimitrov.dev/mailserver/roundcube.nix

16 lines
337 B
Nix
Raw Normal View History

2023-11-15 15:37:04 +01:00
{ config, pkgs, ... }:
{
services = {
roundcube = {
enable = true;
hostName = "${config.mailserver.fqdn}";
extraConfig = ''
$config['smtp_host'] = "tls://${config.mailserver.fqdn}";
$config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p";
'';
};
nginx.enable = true;
};
}