Re: problem blocking sender_address

2010-10-04 Thread Ralf Hildebrandt
* Tom Kinghorn : > Good afternoon list. > > I apologise for this post. Hey, let's read your post first and decide later if you need to apologize :) > I am new to postfix and battling to block a sender who keeps changing > digits in the sending address. This sounds like a job for regex: or PCR

Re: problem blocking sender_address

2010-10-04 Thread Tom Kinghorn
On 2010/10/04 02:11 PM, Ralf Hildebrandt wrote: However, adding it to the smtpd_sender_restrictions is not working /^westcoast[0-9]...@gmail\.com$/ DISCARD or /^westcoast[0-9]...@gmail\.com$/ REJECT You're lacking the // works 100%. Thats 1 slap for me for missing the //'s Thank you very

Re: problem blocking sender_address

2010-10-04 Thread Ralf Hildebrandt
* Tom Kinghorn : > Thats 1 slap for me for missing the //'s Well, at least you got the rest of the syntax right. :) -- Ralf Hildebrandt Geschäftsbereich IT | Abteilung Netzwerk Charité - Universitätsmedizin Berlin Campus Benjamin Franklin Hindenburgdamm 30 | D-12203 Berlin Tel. +49 30

problem blocking sender_address

2010-10-04 Thread Tom Kinghorn
Good afternoon list. I apologise for this post. I am new to postfix and battling to block a sender who keeps changing digits in the sending address. I would like to block the sender using the regex westcoast[0-9]...@gmail.com (to block sender address of westcoast...@gmail.com etc..). How