diff options
Diffstat (limited to 'systems/eldiron/mail')
-rw-r--r-- | systems/eldiron/mail/postfix.nix | 4 | ||||
-rw-r--r-- | systems/eldiron/mail/sympa.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/systems/eldiron/mail/postfix.nix b/systems/eldiron/mail/postfix.nix index f95ee1b..93d1e1e 100644 --- a/systems/eldiron/mail/postfix.nix +++ b/systems/eldiron/mail/postfix.nix | |||
@@ -12,7 +12,7 @@ in | |||
12 | config = lib.mkIf config.myServices.mail.enable { | 12 | config = lib.mkIf config.myServices.mail.enable { |
13 | myServices.dns.zones."immae.eu" = with config.myServices.dns.helpers; lib.mkMerge [ | 13 | myServices.dns.zones."immae.eu" = with config.myServices.dns.helpers; lib.mkMerge [ |
14 | mailMX | 14 | mailMX |
15 | (mailCommon "immae.eu") | 15 | (mailCommon "immae.eu" true) |
16 | mailSend | 16 | mailSend |
17 | { | 17 | { |
18 | # Virtual forwards and mailboxes for real users | 18 | # Virtual forwards and mailboxes for real users |
@@ -22,7 +22,7 @@ in | |||
22 | # system virtual mailboxes: | 22 | # system virtual mailboxes: |
23 | # devnull, printer, testconnect | 23 | # devnull, printer, testconnect |
24 | emailPolicies."".receive = true; | 24 | emailPolicies."".receive = true; |
25 | subdomains.mail = lib.mkMerge [ (mailCommon "immae.eu") mailSend ]; | 25 | subdomains.mail = lib.mkMerge [ (mailCommon "immae.eu" true) mailSend ]; |
26 | subdomains.smtp = ips servers.eldiron.ips.main; | 26 | subdomains.smtp = ips servers.eldiron.ips.main; |
27 | 27 | ||
28 | # DMARC reports | 28 | # DMARC reports |
diff --git a/systems/eldiron/mail/sympa.nix b/systems/eldiron/mail/sympa.nix index 8e801dd..07175e8 100644 --- a/systems/eldiron/mail/sympa.nix +++ b/systems/eldiron/mail/sympa.nix | |||
@@ -9,7 +9,7 @@ in | |||
9 | myServices.dns.zones."immae.eu".subdomains.lists = | 9 | myServices.dns.zones."immae.eu".subdomains.lists = |
10 | with config.myServices.dns.helpers; lib.mkMerge [ | 10 | with config.myServices.dns.helpers; lib.mkMerge [ |
11 | (ips servers.eldiron.ips.main) | 11 | (ips servers.eldiron.ips.main) |
12 | (mailCommon "immae.eu") | 12 | (mailCommon "immae.eu" false) |
13 | mailSend | 13 | mailSend |
14 | ]; | 14 | ]; |
15 | 15 | ||