Page 1 of 1

Disclaimer Text

Posted: Thu Jan 06, 2005 10:36 am
by trig
Is it possible to integrate an altermime type solution so that Disclaimer Text would be displayed on all outbound email or does Scalix have the ability to do this automatically?

Regards,

trig

Posted: Wed Jan 12, 2005 8:46 am
by ScalixSupport
Scalix does not have the native ability to do this. For details on what can be done see the sendmail FAQ at http://www.sendmail.org/faq/section3.html#3.35

This gives a good explanation why it's not as easy as people would imagine.

Cheers

Dave.

Posted: Thu Jan 13, 2005 6:11 am
by trig
Hi Dave,

I don't think I will attempt this, need to know C from what the FAQ says, the only thing I know about C is the follows B and preceeds D :lol: [/quote]

Very easy way to add disclaimer text

Posted: Sun Dec 18, 2005 1:11 pm
by stevemurphy
Hi Trig and Dave,

The sendmail faq makes this sound much more difficult than it actually is. I found an easy way to add the disclaimer text using mimedefang milter from http://www.mimedefang.org/.

To add the disclaimer, follow the instructions to install mimedefang and put the following function in /etc/mail/mimedefang-filter. This will add the disclaimer text to plaintext and html emails.

Code: Select all

sub filter_end
{
        my($entity) = @_;
        if ( $Sender =~ /\b(.*)\@yourdomain.net\b/ )
        {
                append_text_boilerplate($entity,
                "Disclaimer text.....", 0);
                append_html_boilerplate($entity,
                "Disclaimer text.....", 0);
        }
}

Posted: Sun Dec 18, 2005 1:35 pm
by ScalixSupport
Does this have a problem with PGP signed messages or messages with a different character set ?

Cheers

Dave

Re: Disclaimer Text

Posted: Fri Jul 30, 2010 1:49 pm
by jchonillo
I can not configure the mimedefang, this is not run correctly and I lose the emails when I send them to the Internet.
Where could I find the Installation and Configuration Manual?
I have Centos 5 and Scalix 11.4. I need only to include one disclaimer for all emails.

Thanks