* Tom Kinghorn <thomas.kingh...@gmail.com>:
>  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 PCRE:

> I would like to block the sender using the regex
> westcoast[0-9]...@gmail.com (to block sender address of
> westcoast...@gmail.com etc..).

Yep.

/^westcoast[0-9]...@gmail\.com$/  REJECT

> However, adding it to the smtpd_sender_restrictions is not working
> 
> config looks like:
> 
> smtpd_sender_restrictions =
> <snip>
>         check_sender_access 
> regexp:/etc/postfix/sender_access_blacklist_regexp,
> </snip>
> 
> 
> sender_access_blacklist_regexp contains:
> 
> #discard westcoast spammer
> westcoast[0-9]...@gmail.com    DISCARD

/^westcoast[0-9]...@gmail\.com$/  DISCARD
or
/^westcoast[0-9]...@gmail\.com$/  REJECT

You're lacking the //

-- 
Ralf Hildebrandt
  Geschäftsbereich IT | Abteilung Netzwerk
  Charité - Universitätsmedizin Berlin
  Campus Benjamin Franklin
  Hindenburgdamm 30 | D-12203 Berlin
  Tel. +49 30 450 570 155 | Fax: +49 30 450 570 962
  ralf.hildebra...@charite.de | http://www.charite.de
            

Reply via email to