Re: Combining whitelist_from and to

2005-05-04 Thread David B Funk
On Tue, 3 May 2005, Loren Wilton wrote: > Use a meta: > > header __MY_FROMFrom =~ /from\.tld/ > header __MY_TO To =~ /someone\.somewhere/ > meta MY_FUNNY_WHITELIST __MY_FROM && __MY_TO > score MY_FUNNY_WHITELIST 10 > > Loren Um, for a whitelist shouldn't that be a -10 for the score? N

Re: Combining whitelist_from and to

2005-05-03 Thread Loren Wilton
Use a meta: header __MY_FROMFrom =~ /from\.tld/ header __MY_TO To =~ /someone\.somewhere/ meta MY_FUNNY_WHITELIST __MY_FROM && __MY_TO score MY_FUNNY_WHITELIST 10 Loren

Re: Combining whitelist_from and to

2005-05-03 Thread Theo Van Dinter
On Tue, May 03, 2005 at 12:05:31PM +, Mattias Nordstrom wrote: > if (from == *.tld && to == [EMAIL PROTECTED]) then whitelist > > is what I'm looking for. Basically combining the whitelist_from and > whitelist_to > to create the actual whitelist rule. Is this possible with the current SA? No