This is a discussion on Re: bouncing bad extensions (Modified by gene) within the mailing.postfix.users forums, part of the Mail Servers and Related category; Postmaster wrote: > Is there a way to bounce some addresses based on their extension? of course you mean reject, ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Postmaster wrote:
> Is there a way to bounce some addresses based on their extension? of course you mean reject, not bounce. > > For example, if I have recipient_delimiter set to "+" and I want to > allow all gene+* emails except for gene+bad, is it possible to configure > that? ... check_sender_access hash:$path/sender_access ... # cat sender_access foo@example/com PERMIT bar@example.com DUNNO some+thing@example.org DUNNO other+thing@example.org REJECT gene@example.net DUNNO gene+bad@example.net REJECT .... |