Skip to content

Commit

Permalink
doc: Add about remote_network.add_remote_address
Browse files Browse the repository at this point in the history
GitHub: see #17
  • Loading branch information
okkez committed Aug 16, 2013
1 parent 188eb87 commit 14cee48
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
20 changes: 20 additions & 0 deletions doc/configuration.rd
Expand Up @@ -1422,6 +1422,26 @@ by the following configurations.
# 2001:2f8:c2:201::/64 network.
remote_network.add_local_address("2001:2f8:c2:201::/64")

: remote_network.add_remote_address(address)

Adds the specified IPv4/IPv6 address or IPv4/IPv6 network
to remote network. Child milter is applied to SMTP
clients connected from remote network.

Example:

# Apply child milters connections from 160.29.167.10.
remote_network.add_remote_address("160.29.167.10")
# Apply child milters connections from
# 160.29.167.0/24 network.
remote_network.add_remote_address("160.29.167.0/24")
# Apply child milters connections from
# 2001:2f8:c2:201::fff0.
remote_network.add_remote_address("2001:2f8:c2:201::fff0")
# Apply child milters connections from
# 2001:2f8:c2:201::/64 network.
remote_network.add_remote_address("2001:2f8:c2:201::/64")

=== [authentication] Authentication

This applicable condition applies a child milter to
Expand Down
17 changes: 17 additions & 0 deletions doc/configuration.rd.ja
Expand Up @@ -1399,6 +1399,23 @@ SMTPクライアントにのみ子milterを適用します。
# 2001:2f8:c2:201::/64からのアクセスは子milterを適用しない
remote_network.add_local_address("2001:2f8:c2:201::/64")

: remote_network.add_remote_address(address)

指定したIPv4/IPv6アドレスまたはIPv4/IPv6ネットワークをリモ
ートネットワークに追加します。リモートネットワークに追加したア
ドレス・ネットワークには子milterを適用します。

使用例:

# 160.29.167.10からのアクセスは子milterを適用する
remote_network.add_remote_address("160.29.167.10")
# 160.29.167.0/24のネットワークからのアクセスは子milterを適用する
remote_network.add_remote_address("160.29.167.0/24")
# 2001:2f8:c2:201::fff0からのアクセスは子milterを適用する
remote_network.add_remote_address("2001:2f8:c2:201::fff0")
# 2001:2f8:c2:201::/64からのアクセスは子milterを適用する
remote_network.add_remote_address("2001:2f8:c2:201::/64")

=== [authentication] Authentication

SMTP Authで認証済みのSMTPクライアントにのみ子milterを適用しま
Expand Down

0 comments on commit 14cee48

Please sign in to comment.