Link to home
Start Free TrialLog in
Avatar of mikedotm
mikedotm

asked on

Attaching a disclaimer to outgoing email

We have been using the "freeware" version of GFI to attachment a disclaimer to outgoing emails. The version number is 11.0. For a year and a half, its been working fine. Now, our queues are backing up. Microsoft recommended their vbs script which I am trying to implement. The link to the article they sent me is below. I can't get it to work. Its not clear to me where to insert the disclaimer text in the EventSinkScript.vbs file. Also, I saw a note at the end of the article that says it won't work with a mapi client!!!! Is that true??

Hope someone can help out.

http://support.microsoft.com/kb/317680/en-us

Avatar of LeeDerbyshire
LeeDerbyshire
Flag of United Kingdom of Great Britain and Northern Ireland image

The text is in the third line:

TextDisclaimer = vbCrLf & "DISCLAIMER:" & vbCrLf & "Sample Disclaimer added in a VBScript."

You are correct - it does not work with MAPI submitted mail.  The article is more a coding exercise than a practical solution IMHO.
Avatar of hstiles
hstiles

So if you did want to use this method, you would need to implement a relay server and apply the disclaimer at the relay server as all mail processed would have been submitted by SMTP.
I can't remember the exact details, but it's something like that, yes.  It's not a straightforward solution, but it is free.
This may sound strange... but i guess if we have 2 SMTP virtual servers in the same exchange server and submit email from one to another it should work.... (this will save the extra dough that you may have to invest for a relay server).

Ofcourse you will have to route all outbound from virtual smtp server 1 to virtual smtp server 2.

We can have the script configured on to the second SMTP virtual server...

I guess its a worth while testing this in LAB before going ahead and trying this on production server.

Raghu
Avatar of mikedotm

ASKER

I think I mis-understood the not supported by mapi clients note. All our email bound for the Internet gets forwarded to two Exchange 2003 front-end servers. The script would run on the front-end servers, not the back-end mailbox servers so it should work. Can anyone validate if this will work? It seems impossible that Microsoft expects all its customers to use non-mapi email clients to use this feature.
Hey if you have front end servers, it would work like a charm....

I was under the impression that you have just one single server.

Raghu
Well, I did test it out in a VMWare environment and it did work. I installed it on a front-end server that is a bridgehead for an SMTP Connector. I struggled with the format for a while having to put the entire disclaimer on a
single line using tags of <br> to start a new line. Not sure if this is the right way to do it but it worked. It only seems to be using the HTML section regardless of whether I use a mapi client or OWA. The disclaimers are identical so I guess it doesn't make a difference but I don't understand why it won't use the text disclaimer.
ASKER CERTIFIED SOLUTION
Avatar of LeeDerbyshire
LeeDerbyshire
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial