外部宛先とメールを送受信できるユーザーを制限します。

外部宛先とメールを送受信できるユーザーを制限します。

私は約2000の電子メールアカウントを持っています。一部のユーザーはインターネットから電子メールを送受信できますが、他のユーザーはそうでないようにpostfixを設定するにはどうすればよいですか?これまで私はこの手動制限転送に従っています。 http://www.postfix.org/RESTRICTION_CLASS_README.html#external

/etc/postfix/main.cf:    
smtpd_recipient_restrictions =  check_sender_access hash:/etc/postfix/restricted_senders,
                                check_recipient_access hash:/etc/postfix/blacklist,
                                reject_unauth_pipelining,
                                reject_non_fqdn_sender,
                                reject_non_fqdn_recipient,
                                reject_unknown_sender_domain,
                                reject_unknown_recipient_domain,
                                permit_mynetworks,
                                permit_sasl_authenticated,
                                reject_unauth_destination,
                                check_client_access hash:/etc/postfix/rbl_override,
                                reject_rbl_client cbl.abuseat.org,
                                reject_rbl_client sbl-xbl.spamhaus.org,
                                ....
                                check_policy_service inet:127.0.0.1:10023,
                                permit
smtpd_restriction_classes =     local_only
local_only                =     check_recipient_access hash:/etc/postfix/local_domains, reject

/etc/postfix/restricted_senders:                    
[email protected]             local_only
[email protected]             local_only

/etc/postfix/local_domains:
mydomain.com                OK
mysubdomain.mydomain.com    OK

postmapコマンドを実行します。

postmap /etc/postfix/restricted_senders
postmap /etc/postfix/local_domains

postfixサービスを再起動します。

この設定では、 [Eメール保護]mydomain.com以外のEメールアドレスにEメールを送信することはできません(間違っている場合は訂正してください)。

私はWebベースのクライアントを使用し、次から電子メールを送信します。[Eメール保護]Gmail、Yahooなどで、Gmail、Yahooユーザーは以下からアクセスできます。[Eメール保護]

ここで何の問題がありますか?

ベストアンサー1

おすすめ記事