diff options
Diffstat (limited to 'ymir.nix')
-rw-r--r-- | ymir.nix | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -335,6 +335,28 @@ in rec { | |||
335 | smtpd_sasl_security_options = noanonymous, noplaintext | 335 | smtpd_sasl_security_options = noanonymous, noplaintext |
336 | smtpd_sasl_tls_security_options = noanonymous | 336 | smtpd_sasl_tls_security_options = noanonymous |
337 | smtpd_tls_auth_only = yes | 337 | smtpd_tls_auth_only = yes |
338 | |||
339 | smtpd_delay_reject = yes | ||
340 | smtpd_helo_required = yes | ||
341 | smtpd_helo_restrictions = | ||
342 | permit_mynetworks, | ||
343 | reject_non_fqdn_helo_hostname, | ||
344 | reject_invalid_helo_hostname, | ||
345 | permit | ||
346 | |||
347 | smtpd_sender_restrictions = | ||
348 | permit_mynetworks, | ||
349 | reject_non_fqdn_sender, | ||
350 | reject_unknown_sender_domain, | ||
351 | permit | ||
352 | |||
353 | smtpd_recipient_restrictions = | ||
354 | reject_unauth_pipelining, | ||
355 | reject_non_fqdn_recipient, | ||
356 | reject_unknown_recipient_domain, | ||
357 | permit_mynetworks, | ||
358 | reject_unauth_destination, | ||
359 | permit | ||
338 | ''; | 360 | ''; |
339 | extraMasterConf = '' | 361 | extraMasterConf = '' |
340 | uucp unix - n n - - pipe flags=Fqhu user=uucp argv=/var/setuid-wrappers/uux -z -a$sender - $nexthop!rmail ($recipient) | 362 | uucp unix - n n - - pipe flags=Fqhu user=uucp argv=/var/setuid-wrappers/uux -z -a$sender - $nexthop!rmail ($recipient) |