04-04-2007 07:22 AM
Is it possible to format text in a text resource which is used for message footer ?
(integrate bold or underline types)
07-30-2008 09:20 AM
Sorry, but we don't use a special format, just "Standard / Standard".
Maybe it helps more, if you create an official support request for this specific problem?
07-30-2008 09:28 AM
Thanks for the quick response.
Actually, IronPort support is unable to help on this. HTML disclaimer is not supported in this release...is what they have as a standard response (and it is the same since last 5months) :o . I am really surprised to see it is so difficult for them to add this as a feature, specially when there are so many genuine requests...and dozens of other vendors already offering it.
Cheers
08-28-2008 08:27 AM
Sorry for jumping in very late :( , but you could just use the following for an HTML Disclaimer:Latest Virus informationclick here?
08-29-2008 06:02 AM
why not do this as it prevents having to use multiple filters. I am about to put this on my box now that I have finished creating it. hopefully I am not missing anything:
clustermode
1
textconfig
new
4
TEXT_Footer
1
Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by e-mail and destroy all copies of the original.
.
text config
new
4
HTML_Footer
1
Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by e-mail and destroy all copies of the original.
.
filters
new
LegalDisclaim:
if (mail-from == '(?i)@domain\\.com') {
if(body-contains("Confidentiality Notice:")) AND
(body-contains("This e-mail message, including any attachments,")) AND
(body-contains("please contact the sender by e-mail and destroy all copies of the original.")) {
insert-header("X-Footer", "PreExist");
}
else {
if (body-contains("text/html")) OR
(body-contains("multipart/mixed")) {
add-footer("HTML_Footer");
insert-header("X-Footer", "HTML"); }
else {
add-footer("TEXT_Footer");
insert-header("X-Footer", "TEXT"); }
}}
.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide