ユーザーがオフサイトの宛先との間でメールを送受信できる範囲を制限する

ユーザーがオフサイトの宛先との間でメールを送受信できる範囲を制限する

私は約2000のメールアカウントを持っています。一部のユーザーがインターネットでメールを送受信できるように、他のユーザーが送受信できないようにするには、どのようにpostfixを設定すればよいでしょうか。これまでのところ、送信を制限するためにこのマニュアルに従っています。 http://www.postfix.org/RESTRICTION_CLASS_README.html#外部

/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 サービスを再起動しました。

この設定を使用すると、 [メールアドレス]mydomain.com 以外のメール アドレスにメールを送信できないはずです (間違っていたら訂正してください)。

私はウェブベースのクライアントを使用して、[メールアドレス]Gmail、Yahooなどへ、Gmail、Yahooのユーザーは以下から受信できます[メールアドレス]

ここで何が問題なのですか?

関連情報