I have the following problem, I have a Centos 5.4 VPS hosting a few nginx sites (some static, some cakephp), I would like to be able to send email from each sites contact page through postfix to my google apps hosted email (different accounts for each site) so that apps can then send out an auto email to the person filling in the contact form etc
I have a bare-bones postfix installation with the following added into the main.cf config file. from using this guide
virtual_alias_domains = hash:/etc/postfix/virtual_alias_domains
virtual_alias_maps = hash:/etc/postfix/virtual_alias_maps
(both of these files have been converted into db files using postmap)
I have configured DNS correctly for each site and setup SPF records. (I'm aware R-DNS will still reference my actual hostname not the domain name and cause a possible spam issue but one thing at a time)
I can telnet localhost and the helo localhost so that I can send a command line email from an address in the virtual_alias_domains to an email in the virtual_alias_maps file which seems sends without giving an error but it is sending to my local linux account not the email address specified.
my question is am i approching this the wrong way in terms of the virtual alias mapping or is this even possible to do in the manner im trying. Any help is greatly appreciated thanks.
my postconf -n outlook looks like this
alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
debug_peer_level = 2
html_directory = no
inet_interfaces = localhost
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
mydestination = $myhostname, localhost.$mydomain, localhost
myhostname = myactual hostname
mynetworks = 127.0.0.0/8
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases.postfix
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.3.3/README_FILES
sample_directory = /usr/share/doc/postfix-2.3.3/samples
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
unknown_local_recipient_reject_code = 550
virtual_alias_domains = hash:/etc/postfix/virtual_alias_domains
virtual_alias_maps = hash:/etc/postfix/virtual_alias_maps
would appear im trying to do it in a much too complicated way.
this guide seems to have worked, sudhanshuraheja.com
all i did was to declare my actual hostname and make the change to mydestination the guide advises and im set to go, i can specify the from address and alls well............
virtual_alias_maps/domains Is for incoming e-mail only. If you intent to use your Postfix installation for outgoing e-mail only you don't need Postfix' virtual-hosting at all. Just make sure you haven't configured Postfix to accept mail for local delivery addressed to domains which has to be sent to the rest of the world.
Edit: No i'm talking about
mydestination
, from the comments in main.cf:So you don't want any of the domains you want to send e-mail to to be listed in your
mydestination
. If they are, the e-mail will be delivered locally.inet_interfaces
Is for receiving only. When your configuration is working properly you could try to not listen on any public interfaces to make your installation more secure. I'm not exactly sure what the side effects are of disabling this for all public interfaces.