diff options
Diffstat (limited to 'ymir.nix')
-rw-r--r-- | ymir.nix | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -500,7 +500,7 @@ in rec { | |||
500 | recipient_canonical_classes= envelope_recipient,header_recipient | 500 | recipient_canonical_classes= envelope_recipient,header_recipient |
501 | ''; | 501 | ''; |
502 | extraMasterConf = '' | 502 | extraMasterConf = '' |
503 | uucp unix - n n - - pipe flags=Fqhu user=uucp argv=/var/setuid-wrappers/uux -z -a $sender - $nexthop!rmail ($recipient) | 503 | uucp unix - n n - - pipe flags=Fqhu user=uucp argv=${config.security.wrapperDir}/uux -z -a $sender - $nexthop!rmail ($recipient) |
504 | mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-receive -F -L /var/spool/lists/''${user} | 504 | mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-receive -F -L /var/spool/lists/''${user} |
505 | mlmmj-subs unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj-exposed}/bin/mlmmj-exposed /var/spool/lists/''${user} ''${extension} | 505 | mlmmj-subs unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj-exposed}/bin/mlmmj-exposed /var/spool/lists/''${user} ''${extension} |
506 | policy-spf unix - n n - - spawn user=nobody argv=${pkgs.pythonPackages.pypolicyd-spf}/bin/policyd-spf ${./ymir/spf.conf} | 506 | policy-spf unix - n n - - spawn user=nobody argv=${pkgs.pythonPackages.pypolicyd-spf}/bin/policyd-spf ${./ymir/spf.conf} |
@@ -551,7 +551,7 @@ in rec { | |||
551 | selector = "ymir"; | 551 | selector = "ymir"; |
552 | configFile = builtins.toFile "opendkim.conf" '' | 552 | configFile = builtins.toFile "opendkim.conf" '' |
553 | Syslog true | 553 | Syslog true |
554 | MTACommand /var/setuid-wrappers/sendmail | 554 | MTACommand ${config.security.wrapperDir}/sendmail |
555 | LogResults true | 555 | LogResults true |
556 | ''; | 556 | ''; |
557 | }; | 557 | }; |
@@ -692,8 +692,8 @@ in rec { | |||
692 | nodeName = "ymir"; | 692 | nodeName = "ymir"; |
693 | remoteNodes = ["isaac" "hel"]; # legacy name for odin | 693 | remoteNodes = ["isaac" "hel"]; # legacy name for odin |
694 | sshUser = { | 694 | sshUser = { |
695 | openssh.authorizedKeys.keys = [ ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/var/setuid-wrappers/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgtDHA7oDIaRwggGGznNaKZF68rFTziqefSCn1t9ZKe uucp@odin'' | 695 | openssh.authorizedKeys.keys = [ ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="${config.security.wrapperDir}/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgtDHA7oDIaRwggGGznNaKZF68rFTziqefSCn1t9ZKe uucp@odin'' |
696 | ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/var/setuid-wrappers/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOWBybBQKbPucqBgULQ1phv7IKFWl1Xc4drkCx3D5mIz uucp@hel'' | 696 | ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="${config.security.wrapperDir}/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOWBybBQKbPucqBgULQ1phv7IKFWl1Xc4drkCx3D5mIz uucp@hel'' |
697 | ]; | 697 | ]; |
698 | }; | 698 | }; |
699 | sshConfig = '' | 699 | sshConfig = '' |