mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2025-04-05 03:18:29 +05:00
55 lines
1.8 KiB
Nix
55 lines
1.8 KiB
Nix
![]() |
{ config, lib, pkgs, ... }:
|
||
|
with lib;
|
||
|
let
|
||
|
ms = config.mailserver;
|
||
|
cfg = ms.autoconfig;
|
||
|
|
||
|
# none of the available parameters are configurable in
|
||
|
# simple-mailserver so these templates aren't configurable either
|
||
|
incomingServer = enable: port: socketType: optionalString enable ''
|
||
|
<incomingServer type="imap">
|
||
|
<hostname>${ms.fqdn}</hostname>
|
||
|
<port>${builtins.toString port}</port>
|
||
|
<socketType>${socketType}</socketType>
|
||
|
<authentication>password-cleartext</authentication>
|
||
|
<username>%EMAILADDRESS%</username>
|
||
|
</incomingServer>
|
||
|
'';
|
||
|
|
||
|
# we currently only support STARTTLS for outgoing servers
|
||
|
outgoingServer = port: ''
|
||
|
<outgoingServer type="smtp">
|
||
|
<hostname>${ms.fqdn}</hostname>
|
||
|
<port>${builtins.toString port}</port>
|
||
|
<socketType>STARTTLS</socketType>
|
||
|
<authentication>password-cleartext</authentication>
|
||
|
<username>%EMAILADDRESS%</username>
|
||
|
</outgoingServer>
|
||
|
'';
|
||
|
in {
|
||
|
mailserver.autoconfig.webRoot = pkgs.substituteAll ({
|
||
|
name = "config-v1.1.xml";
|
||
|
dir = "mail";
|
||
|
src = if cfg.template == null
|
||
|
then cfg.templateFile
|
||
|
else pkgs.writeTextFile {
|
||
|
name = "mailserver-autoconfig-template.xml";
|
||
|
text = cfg.template;
|
||
|
};
|
||
|
} // {
|
||
|
hostname = ms.fqdn;
|
||
|
inherit (cfg)
|
||
|
emailProviderId displayName displayShortName extraProviderConfig;
|
||
|
imapSslServer = incomingServer ms.enableImapSsl 993 "SSL";
|
||
|
imapServer = incomingServer ms.enableImapSsl 143 "STARTTLS";
|
||
|
pop3SslServer = incomingServer ms.enablePop3Ssl 995 "SSL";
|
||
|
pop3Server = incomingServer ms.enablePop3 110 "STARTTLS";
|
||
|
smtpServer = outgoingServer 25;
|
||
|
submissionServer = outgoingServer 587;
|
||
|
domains = concatMapStringsSep
|
||
|
"\n "
|
||
|
(x: "<domain>${x}</domain>")
|
||
|
cfg.domains;
|
||
|
});
|
||
|
}
|