How do I route all emails directed to user-*@example.com (i.e. user-1234@example.com) to a pipe command in Postfix? The idea is to create craigslist-style anonymization by assigning dynamic email aliases to each user. I can't seem to find relevant information in the documentation, however.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Okay. And now a different approach.

Put a new transport in master.cf:

coolscript unix -    n    n    -    50    pipe
    flags=R user=vmail argv=/path/to/script -o SENDER=${sender} -m USER=${user} EXTENSION=${extension}

you can extend/modify the parameters as you like.

Then (to eliminate pcre) you can use regexp to do the "catch-thing" in main.cf:

transport_maps = regexp:/etc/postfix/redirect.regexp

And in /etc/postfix/redirect.regexp you put:

/^user-.*@example\.com/   coolscript:

Reload Postfix with postfix reload.

link|improve this answer
feedback

First check if you have pcre compiled into Posfix with postconf -m. Then you can set in main.cf:

virtual_alias_maps = pcre:/etc/postfix/redirect.pcre

and in /etc/postfix/redirect.pcre you put:

/^user-.*@example\.com$/   somelocalalias

and in /etc/aliases you add

somelocalalias: |"/path/to/script"

Don't forget to postalias /etc/aliases and afterwards reload Postfix with postfix reload.

link|improve this answer
Is there a reason you're suggesting pcre over regexp? Also, shouldn't I be specifying the pipe in master.cf? – Nick Colgan Oct 18 '11 at 19:15
1  
@If you know the answer why ask? Sure there are more ways to achieve the same. If you prefer regexp then go for it. Even transports in master.cf can do it if you watch out for chroot pitfalls. – mailq Oct 18 '11 at 19:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.