[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[postfix-jp: 3657] Re: 外からのメール受信拒否の設定



松元です。

>> お世話になります、仲村といいます。
>> 
>> すごく基本的な事だと思うのですが教えてください。
>> /etc/aliasesに設定されているシステムアカウント宛てのメール受信を
>> ローカルでは許可し、インターネットからは拒否するための
>> 設定はできますでしょうか。

以下のような感じで設定してます。なお、ドメインの代表のようなメールサー
バでは「postmaster」は必ずインターネットから受信して読むようにしてくだ
さい。

/etc/postfix/main.cf:
------
smtpd_restriction_classes =
	...
        check_localnet_only,
	...

check_localnet_only =
        check_client_access regexp:/etc/postfix/myconf/hosts_check_localnet,
        check_client_access regexp:/etc/postfix/myconf/hosts_check_without_localnet,
        reject

smtpd_recipient_restrictions =
	...
        check_recipient_access regexp:/etc/postfix/myconf/recipient_check,
	...

------

ローカルでのみ有効なアドレス

/etc/postfix/myconf/recipient_check:
-----
staff@example.ac.jp   check_localnet_only
students@example.ac.jp     check_localnet_only
-----

ローカルネットのIPアドレス
/etc/postfix/myconf/hosts_check_localnet:
-----
/^192\.168\.[0-9]+\.[0-9]+$/    OK
-----

/etc/postfix/myconf/hosts_check_without_localnet:
-----
/.*/                            REJECT 適当なメッセージ
-----

--
松元隆二 

_______________________________________________
Postfix-jp-list mailing list
Postfix-jp-list@xxxxxxxxxxxxxxxxxxxx
http://lists.sourceforge.jp/mailman/listinfo/postfix-jp-list

Follow-Ups
[postfix-jp: 3658] Re: 外からのメール受信拒否の設定, Mitsuru Ogino
[postfix-jp: 3660] Re: 外からのメール受信拒否の設定, Ryuji Matsumoto
References
[postfix-jp: 3656] 外からのメール受信拒否の設定, nakafumi

[検索ページ] [Postfix-JP ML Home]