Tauren Mills: > 2. Configure postfix to forward bounce type emails to port 8025. I > don't know how to configure Postfix to do this. Any suggestions or > assistance would be appreciated.
Untested example follows: /etc/postfix/main.cf: transport_maps = pcre:/etc/postfix/transport.pcre /etc/postfix/transport.pcre: /^bounce...@e\.mydomain\.com$/ smtp:hostname-or-address:8025 (be sure to quote "." characters with "\", and to anchor the pattern with "^" and "$"). http://www.postfix.org/transport.5.html http://www.postfix.org/pcre_table.5.html http://www.postfix.org/smtp.8.html http://www.postfix.org/ADDRESS_REWRITING_README.html Wietse