Change default to postfix default.

wip/yesman
uwap 8 years ago committed by GitHub
parent ab0547b16f
commit 1e72706d66
  1. 7
      nixos/modules/services/mail/postfix.nix

@ -210,10 +210,15 @@ in
submissionOptions = mkOption {
type = types.attrs;
default = {};
default = { "smtpd_tls_security_level" = "encrypt";
"smtpd_sasl_auth_enable" = "yes";
"smtpd_client_restrictions" = "permit_sasl_authenticated,reject";
"milter_macro_daemon_name" = "ORIGINATING";
};
description = "Options for the submission config in master.cf";
example = { "smtpd_tls_security_level" = "encrypt";
"smtpd_sasl_auth_enable" = "yes";
"smtpd_sasl_type" = "dovecot";
"smtpd_client_restrictions" = "permit_sasl_authenticated,reject";
"milter_macro_daemon_name" = "ORIGINATING";
};

Loading…
Cancel
Save