Hello. I have a simple setup of my mail-server postfix+dovecot+mysql.
One of our user want to rename a mail address from *name@domain* to *name.surename@domain*. So i decide to configure alias from *name.surename@domain* to *name@domain* and its work fine. And the next one thing, i configure a generic rename mapping ( http://www.postfix.org/generic.5.html) to rename sender address inside outgoing email: $ cat /etc/postfix/generic name@domain name.surename@domain $ sudo postmap /etc/postfix/generic $ postmap -q "name@domain" /etc/postfix/generic name.surename@domain $ sudo service postfix restart The problem is if you reply to *name.surename@domain* (it has alias record in mysql to *name@domain*) postfix says: <name.surename@domain>: user unknown Why thats happen? Does it make the other way? -- _________________________