Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
If you are using Google Public DNS in /etc/resolv.conf which is the default, you will need to change it as Spamhaus does not work with Google Public DNS servers.
Greate article. Really easy to follow these steps. But, how about multiple domains in the same server?
@Fernando Vieira Postfix’s Virtual Domains feature should help: http://www.akadia.com/services/postfix_separate_mailboxes.html
@s4ad-dev What exact problem are you experiencing?
Good tutorial. But I has a problem.
sudo cat /var/log/maillog and get:
May 23 14:27:01 Deambula postfix/smtpd[22748]: fatal: no SASL authentication mechanisms
I solve this intalling:
sudo yum install cyrus-sasl-plain
I have installed and configure everthing accordingly. but when going to send email and type # mail username@mydomain.com
It doesn’t prompt for Subject.
where can i check this and resolve this.
Regards: imran
so this solves sending. how do I read the mail accounts for multiple users / how to set them up in the first place should probably be in this article. back to the docs :)
servername: mydomain.com
that broke my whole thing so i removed it and it worked
had me pulling my hair out for like 900 hours
if you got below error: PLAIN [SASL(-13): user not found: Password verification failed]
Please try to use saslauthd
sudo yum install cyrus-sasl-plain
sudo vi /etc/sasl2/smtpd.conf
pwcheck_method: saslauthd mech_list: plain login #pwcheck_method: auxprop #auxprop_plugin: sasldb #mech_list: PLAIN LOGIN CRAM-MD5 DIGEST-MD5
sudo vi /etc/imapd.conf
#sasl_pwcheck_method: auxprop #sasl_mech_list: CRAM-MD5 DIGEST-MD5 PLAIN sasl_pwcheck_method: saslauthd sasl_mech_list: PLAIN LOGIN CRAM-MD5 DIGEST-MD5
sudo /etc/rc.d/init.d/postfix start sudo chkconfig postfix on sudo chkconfig --level 345 cyrus-imapd on sudo /sbin/service cyrus-imapd start sudo /etc/init.d/saslauthd start sudo chkconfig saslauthd on
check sasl module
/usr/sbin/pluginviewer
Testing: testsaslauthd -u mailusername -p mailpassword /usr/bin/imtest -u mailusername -a mailusername -w mailpassword domain.com