cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
8107
Views
0
Helpful
33
Replies

formatted disclaimer

mzi_ironport
Level 1
Level 1

Is it possible to format text in a text resource which is used for message footer ?
(integrate bold or underline types)

33 Replies 33

Pat_ironport
Level 1
Level 1

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?

prash_ironport
Level 1
Level 1

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

homesh2009
Level 1
Level 1

Sorry for jumping in very late  :(  , but you could just use the following for an HTML Disclaimer:

Latest Virus informationclick here?











hi it is working :D thanks

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"); }
}}
.