Optimize new fw rules and tweak postfix
Signed-off-by: Egor Savkin <es@m-labs.hk>
This commit is contained in:
parent
7131a54bb6
commit
8ff15e4aba
|
@ -1252,18 +1252,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.postfix.mapFiles.sender_transport = pkgs.writeText "sender_transport" ''
|
|
||||||
@m-labs-intl.com intltunnel:
|
|
||||||
* :
|
|
||||||
'';
|
|
||||||
systemd.services.postfix-rebuild-sender-relay = {
|
|
||||||
description = "Postfix Rebuild Sender Dependent Transport Maps";
|
|
||||||
serviceConfig = {
|
|
||||||
ExecStart = "${pkgs.postfix}/sbin/postmap /var/lib/postfix/conf/sender_transport";
|
|
||||||
};
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
mailserver = {
|
mailserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
localDnsResolver = false; # conflicts with dnsmasq
|
localDnsResolver = false; # conflicts with dnsmasq
|
||||||
|
@ -1274,6 +1262,9 @@ in
|
||||||
certificateScheme = "acme-nginx";
|
certificateScheme = "acme-nginx";
|
||||||
} // (import /etc/nixos/secret/email_settings.nix);
|
} // (import /etc/nixos/secret/email_settings.nix);
|
||||||
services.postfix = {
|
services.postfix = {
|
||||||
|
mapFiles.sender_transport = pkgs.writeText "sender_transport" ''
|
||||||
|
@m-labs-intl.com intltunnel:
|
||||||
|
'';
|
||||||
config = {
|
config = {
|
||||||
sender_dependent_default_transport_maps = "hash:/var/lib/postfix/conf/sender_transport";
|
sender_dependent_default_transport_maps = "hash:/var/lib/postfix/conf/sender_transport";
|
||||||
};
|
};
|
||||||
|
@ -1281,8 +1272,8 @@ in
|
||||||
type = "unix";
|
type = "unix";
|
||||||
command = "smtp";
|
command = "smtp";
|
||||||
args = [
|
args = [
|
||||||
"-o" "smtp_bind_address=10.47.3.1"
|
|
||||||
"-o" "inet_interfaces=10.47.3.1"
|
"-o" "inet_interfaces=10.47.3.1"
|
||||||
|
"-o" "smtp_helo_name=mail.m-labs-intl.com"
|
||||||
"-o" "inet_protocols=ipv4"
|
"-o" "inet_protocols=ipv4"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue