Added more SMTP relaying restrictions
This commit is contained in:
parent
9de597ad6f
commit
dd0cfcf67d
@ -47,3 +47,4 @@ Maps in MySQL and LDAP databases can be viewed and edited in the same way that t
|
|||||||
---- Changes since 1.380 ----
|
---- Changes since 1.380 ----
|
||||||
Fixed a bug that prevented comments and manual map editing, and added back support for PCRE and BTREE maps.
|
Fixed a bug that prevented comments and manual map editing, and added back support for PCRE and BTREE maps.
|
||||||
Added a button for manually editing the aliases file.
|
Added a button for manually editing the aliases file.
|
||||||
|
Added more SMTP relaying restrictions.
|
||||||
|
@ -772,6 +772,8 @@ sasl_reject_unauth_destination=Reject email to other domains
|
|||||||
sasl_permit_inet_interfaces=Allow connections from this system
|
sasl_permit_inet_interfaces=Allow connections from this system
|
||||||
sasl_reject_unknown_reverse_client_hostname=Reject clients with no reverse hostname
|
sasl_reject_unknown_reverse_client_hostname=Reject clients with no reverse hostname
|
||||||
sasl_reject_unknown_client=$sasl_reject_unknown_reverse_client_hostname
|
sasl_reject_unknown_client=$sasl_reject_unknown_reverse_client_hostname
|
||||||
|
sasl_check_relay_domains=Allow only relay domains
|
||||||
|
sasl_permit_mx_backup=Allow domains this system is a backup MX for
|
||||||
opts_smtpd_tls_cert_file=TLS certificate file
|
opts_smtpd_tls_cert_file=TLS certificate file
|
||||||
opts_smtpd_tls_key_file=TLS private key file
|
opts_smtpd_tls_key_file=TLS private key file
|
||||||
opts_smtpd_tls_CAfile=TLS certificate authority file
|
opts_smtpd_tls_CAfile=TLS certificate authority file
|
||||||
|
@ -2064,7 +2064,9 @@ return ( "permit_mynetworks",
|
|||||||
$postfix_version < 2.3 ? "reject_unknown_client"
|
$postfix_version < 2.3 ? "reject_unknown_client"
|
||||||
: "reject_unknown_reverse_client_hostname",
|
: "reject_unknown_reverse_client_hostname",
|
||||||
"permit_sasl_authenticated",
|
"permit_sasl_authenticated",
|
||||||
"reject_unauth_destination" );
|
"reject_unauth_destination",
|
||||||
|
"check_relay_domains",
|
||||||
|
"permit_mx_backup" );
|
||||||
}
|
}
|
||||||
|
|
||||||
sub file_map_type
|
sub file_map_type
|
||||||
|
Loading…
x
Reference in New Issue
Block a user