質問:
特定のユーザグループに対してネットワークから送信される電子メールメッセージにフッター/免責事項をスタンプするにはどうすればよいですか。
多くの組織では、Eメールシステムからの送信メッセージにフッターを配置したいと考えています。これは通常、メッセージに免責事項を追加したり、メッセージに保護された通信が含まれていることを受信者に警告したりするなど、法的理由で行われます。AsyncOSでは、これは「フッタースタンピング」と呼ばれます。
フッタースタンプは非常に不正確な技術であり、通常は送信メールにのみ役立ちます。 これは、多くのメッセージがHTMLやMicrosoft Wordのボディパーツなどの複雑な構造を持ち、それらのボディパーツにフッターを追加できない場合もあるためです。フッタースタンプには2つの手順があります。 まず、フッターが作成されます。 次に、フッターは3つの方法のいずれかでメッセージに追加されます。
- 最初にフッターを作成します。GUIで、Mail Policies -> Text Resourcesの順に移動し、Add Text Resourceをクリックします
- 条件を指定せずに(したがって、メールポリシー内のすべてのメッセージに適用されます)、作成したフッターと共に[フッターの追加]アクションを含む送信コンテンツフィルタを作成します
- ポリシーでフッタースタンピングフィルタを有効にします。
ヒント:フッタースタンプはリスナー、またはメッセージフィルタやコンテンツフィルタを使用して実行できますが、特定のユーザグループに対してフッタースタンプを実行する最も簡単な方法は、コンテンツフィルタを使用することです。
メッセージフィルタを使用して、メッセージにフッターを追加することもできます。
AddOutgoingDisclaimer:
if (recv-listener == "OutboundMail")
and (mail-from == ("@exchange\\.example\\.com$") {
add-footer("Disclaimer");
}
特定のリスナーで受信したすべてのメッセージにフッターを追加することもできます。 例:
smtp.scu.com>listenerconfig
Currently configured listeners:
1. InboundMail (on PublicNet, 192.35.195.42) SMTP TCP Port 25 Public
2. OutboundMail (on Privatenet, 172.20.0.142) SMTP TCP Port 25 Private
Choose the operation you want to perform:
- NEW - Create a new listener.
- EDIT - Modify a listener.
- DELETE - Remove a listener.
- SETUP - Change global settings.
[]> edit
Enter the name or number of the listener you wish to edit.
[]> 2
Name: OutboundMail
Type: Private
Interface: Privatenet (172.20.0.142/24) TCP Port 25
Protocol: SMTP
Default Domain:
Max Concurrency: 600 (TCP Queue: 50)
Domain Map: Disabled
TLS: No
SMTP Authentication: Disabled
Bounce Profile: Default
Footer: None
LDAP: Off
Choose the operation you want to perform:
- NAME - Change the name of the listener.
- INTERFACE - Change the interface.
- LIMITS - Change the injection limits.
- SETUP - Configure general options.
- HOSTACCESS - Modify the Host Access Table.
- BOUNCECONFIG - Choose the bounce profile to use for messages injected on this
listener.
- MASQUERADE - Configure the Domain Masquerading Table.
- DOMAINMAP - Configure domain mappings.
- LDAPACCEPT - Configure an LDAP query to determine whether a recipient address
should be accepted or bounced/dropped.
[]> setup
Enter the default domain for email addresses without a fully qualified domain
name.
Enter the word "DELETE" to clear the setting and disable the addition of a
default domain.
[]>
Would you like the system to add a received header to each message received on
this listener? [Y]>
Would you like to enable SenderBase Reputation Filters and IP Profiling
support? [N]>
Would you like to attach a footer to all mail on this listener? [N]> y
1. Disclaimer
[1]>
Name: OutboundMail
Type: Private
Interface: Privatenet (172.20.0.142/24) TCP Port 25
Protocol: SMTP
Default Domain:
Max Concurrency: 600 (TCP Queue: 50)
Domain Map: Disabled
TLS: No
SMTP Authentication: Disabled
Bounce Profile: Default
Footer: Disclaimer
LDAP: Off
Choose the operation you want to perform:
- NAME - Change the name of the listener.
- INTERFACE - Change the interface.
- LIMITS - Change the injection limits.
- SETUP - Configure general options.
- HOSTACCESS - Modify the Host Access Table.
- BOUNCECONFIG - Choose the bounce profile to use for messages injected on this
listener.
- MASQUERADE - Configure the Domain Masquerading Table.
- DOMAINMAP - Configure domain mappings.
- LDAPACCEPT - Configure an LDAP query to determine whether a recipient address
should be accepted or bounced/dropped.
[]>
Currently configured listeners:
1. InboundMail (on PublicNet, 192.168.195.42) SMTP TCP Port 25 Public
2. OutboundMail (on Privatenet, 172.20.0.142) SMTP TCP Port 25 Private
Choose the operation you want to perform:
- NEW - Create a new listener.
- EDIT - Modify a listener.
- DELETE - Remove a listener.
- SETUP - Change global settings.
[]>
smtp.scu.com>commit
Please enter some comments describing your changes:
[]> add outgoing Disclaimer on OutboundMail listener
Changes committed: Tue Nov 23 19:48:47 2004 MST
ヒント:新しいバージョンのAsyncOSでは、メッセージの上に免責事項を追加することもできます
.