|
From: Mark M. <Mar...@ij...> - 2004-04-14 22:59:13
|
Sascha, | Notifications to senders, to admin too, but this I want. | > When message contains what? (virus / banned-only / both) | When message contains virus. Ok. So, don't say "I've got the same problem", as Anne was complaining about recipient notifications, or so it appears. | $final_virus_destiny = D_BOUNCE; | $final_banned_destiny = D_BOUNCE; | $final_spam_destiny = D_PASS; | $final_bad_header_destiny = D_PASS; | $warnvirussender = 0; | $warnspamsender = 0; | $warnbannedsender = 1; | $warnbadhsender = 1; | $warnvirusrecip = 0; | $warnbannedrecip = 1; | $warn_offsite = 0; You _are_ requesting sender notifications for viruses with a setting $final_virus_destiny=D_BOUNCE; Sender notifications are suppressed only for viruses whose name match patterns in $viruses_that_fake_sender_re - which should include a catchall true for unknown viruses, e.g. $viruses_that_fake_sender_re = new_RE( ..., [qr/.*/=>1] ); Having $viruses_that_fake_sender_re always true accomplishes the same as setting $final_virus_destiny=D_DISCARD; Mark |