问题:
如何为特定用户组在离开网络的电子邮件上标记页脚/免责声明?
许多组织都希望在邮件系统中的外发邮件上放置一个页脚。这样做通常是出于法律原因,例如向邮件添加免责声明或警告收件人邮件包含受保护的通信。在AsyncOS中,这称为“页脚印戳”。
页脚戳是一个不太精确的图画,通常仅用于外发邮件。 这是因为许多邮件具有复杂的结构,如HTML或Microsoft Word正文部分,并且在这些正文部分添加页脚可能是不可能的。页脚标记有两个步骤。 首先,创建页脚。 然后,使用三种方法之一将页脚添加到邮件中。
- 首先创建页脚。在GUI中,导航至Mail Policies -> Text Resources,然后点击Add Text Resource
- 创建一个没有条件的“传出内容过滤器”(Outgoing Content Filter)(因此,它将应用于邮件策略中的所有邮件),并使用您所创建的页脚执行“添加页脚”(Add Footer)操作
- 在策略中启用页脚标记筛选器。
提示:虽然可以在侦听程序上或使用邮件过滤器或内容过滤器执行页脚标记,但是对特定用户组执行此操作的最简单方法是使用内容过滤器。
还可以使用邮件过滤器添加邮件页脚:
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中,还可以在邮件上方添加免责声明
.