2个SMTP虚拟服务器环境下添加免责声明

2008-02-23 06:04:12来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

环境:1台Exchange有2个SMTP虚拟服务器,一个监听25端口,外连26端口;一个监听26端口,外连25端口
需求:第一个服务器对香港;深圳,没有免责申明,第二个服务器对外,要有免责申明。
操作:1.把下面这段存为***.vbs

Sub ISMTPOnArrival_OnArrival(ByVal Msg, EventStatus)
TextDisclaimer = vbCrLf & “DISCLAIMER:” & vbCrLf & “Sample Disclaimer added in a VBScript.”
HTMLDisclaimer = “DISCLAIMER:
Sample Disclaimer added in a VBScript.”

中国网管联盟

If Msg.HTMLBody “” Then
‘Search for the “” tag and insert our discliamer before that tag.
pos = InStr(1, Msg.HTMLBody, “”, vbTextCompare)
szPartI = Left(Msg.HTMLBody, pos - 1)
szPartII = Right(Msg.HTMLBody, Len(Msg.HTMLBody) - (pos - 1))
Msg.HTMLBody = szPartI HTMLDisclaimer szPartII
End If

中国网管论坛

If Msg.TextBody “” Then
Msg.TextBody = Msg.TextBody & vbCrLf & TextDisclaimer & vbCrLf
End If

‘Commit the content changes to the transport ADO Stream object.
Msg.DataSource.Save ‘ Commit the changes into the transport Stream 中国网管论坛

pEventStatus = cdoRunNextSink
End Sub www_bitscn_com

2.安装Exchange SDK,在命令行导航到C:\Program files\Exchange SDK\SDK\Support\CDO\Scripts
3.输入命令:cscript smtpreg.vbs /add 1(说明:1为第一个) onarrival SMTPScriptingHost CDO.SS_SMTPOnArrivalSink “mail from=*@your-domain-here.com”
cscript smtpreg.vbs /setprop 1(同上) onarrival SMTPScriptingHost Sink ScriptName “C:\***.vbs”
如要取消:cscript smtpreg.vbs /remove 1(同上) OnArrival SMTPScriptingHost

bbs.bitsCN.com

但是有个问题就是只能应用于MAPI客户端

www.bitsCN.com



标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: 为Exchange配置internet邮件网关

下一篇: Exchange Mailroot 中的目录中文档含义

热门词条
热门标签