Martin,

I don't believe filter_sender is what you want.

I did this at the end of my filter_end and I think you'll find the spam
maildrop example in the FAQ to be a good start as well:

my ($list);
    foreach $recip (@Recipients) {
      $list .= ", $recip";
    }
    if ($list =~ /[EMAIL PROTECTED]/i) {
      if ($list =~ /[EMAIL PROTECTED]/i) {
        action_add_header("X-Backup","False - Backup and Files Exists in
Recipient List");
      } else {
        add_recipient('[EMAIL PROTECTED]');
        action_add_header("X-Backup","True - Backup Exists in Recipient
List - Added Files");
      }
    }

Regards,
KAM

> I need to copy all mail sent from specific addresses in my domain to
another
> address for archive purposes, i.e. [EMAIL PROTECTED] or
> [EMAIL PROTECTED] to [EMAIL PROTECTED]

_______________________________________________
Visit http://www.mimedefang.org and http://www.canit.ca
MIMEDefang mailing list
[EMAIL PROTECTED]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to