Vanilla 1.1.8 is a product of Lussumo. More Information: Documentation, Community Support.
Posted By: kwilsonThere's a trend around here of people using Google's SMTP servers for sending mail when it really isn't necessary. I don't get it.
Make sure your reverse DNS (in the slicehost admin) is set to the same domain as you're sending e-mail from (as per Postfix configuration). That's a big spam tip-off, and most likely the reason you'll get spam blocked.
Also, MX records only indicate where incoming mail goes - it has no bearing on where or how you send mail out. For my case, I have all my MX records point to Gmail, and all mail from my web apps goes out through Postfix / Sendmail.
It really is just as easy as "sudo apt-get postfix", and editing the config file: /etc/postfix/main.cf
myorigin = lunardawn.ca
notify_classes = resource, software
myhostname = dev.lunardawn.ca
mydestination =
mynetworks_style = host
inet_interfaces = loopback-only
inet_interfaces line you want so spammers can't connect to your server and use it as a mail proxy, and the mydestination line isn't strictly necessary if you have MX pointing to gmail - it just tells postfix not to accept any mail for local delivery.
Here's mine for reference:
sudo apt-get postfix
or
sudo aptitude install postfix
sudo /etc/init.d/postfix restart
1 to 12 of 12