Jean-Paul Natola wrote: > Jean-Paul Natola wrote: > > header TO_BOUNCES To =~ /bounces\@/i > > description TO_BOUNCES Whitelist mail to bounces mailbox > > score TO_BOUNCES -6 > > > > I really hate to be a pain, but how would a add a criteria for the > > subject line as well, so that ONLY messages sent to bounces@ WITH > > the word "rejected" will score the -6 > > header __TO_BOUNCES To =~ /bounces\@/ > header __SUBJ_REJECT Subject =~ /\brejected/ > meta LOCAL_TO_BOUNCE (__TO_BOUNCES && __SUBJ_REJECT) > score LOCAL_TO_BOUNCE -6 > describe LOCAL_TO_BOUNCE Whitelist mail to bounces@ with "rejected" > in the subject > > In order for this to ignore case do I just need to add the i ? > > > header __TO_BOUNCES To =~ /bounces\@/ i > is that accurate
Get rid of the space before the 'i' and you've got it. -- Bowie
