How to configure PostFix with VMA Emailer

To use VMA Emailer as relay host you must update the PostFix configuration.

 

PostFix

Some implementations of PostFix only allow passwords to contain letters and numbers, meaning you may need to ensure your VMA Emailer password is only alphanumeric.

Find your Postfix config file, typically /etc/postfix/main.cf, and add the following:

 

smtp_sasl_auth_enable = yes

smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd

smtp_sasl_security_options = noanonymous

smtp_sasl_tls_security_options = noanonymous

smtp_tls_security_level = encrypt

header_size_limit = 4096000

relayhost = [smtp.elasticemail.com]:587

Now you need to specify your credentials (optionally, use apikey as a username and an API Key as the password) in the separate file /etc/postfix/sasl_passwd (you’ll likely need to create it):

 

[smtp.elasticemail.com]:587 yourElasticEmailUsername:yourElasticEmailPassword

Next, make sure the file has restricted read and write access only for root, and use the postmap command to update PostFix’s hashtables to use this new file:

 

$ sudo chmod 600 /etc/postfix/sasl_passwd

$ sudo postmap /etc/postfix/sasl_passwd

Finally, restart Postfix:

 

$ sudo systemctl restart postfix

If you are getting no mechanism available error messages it generally indicates that you are missing some SASL authentication libraries.

 

Install the missing module dependency using apt-get (i.e., Debian, Ubuntu):

 

$ apt-get install libsasl2-modules

Or using a yum (i.e., RedHat, Fedora, CentOS):

 

$ yum install cyrus-sasl-plain

Troubleshooting

If port 587 is not working for you please try 2525 in your postfix config. You may also need to edit /etc/postfix/master.cf to remove # from

 

#tlsmgr unix - - n 1000? 1 tlsmgr

 

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Reselling overview

Learn more about how to resell the Elastic Email service to your own clients. One of the great...

How do the shared IPs work

Your new VMA Emailer account is configured to send mail via free shared IP pools. These IP pools...

How to change your account's credentials

Modification of account's profile information You have the ability to change your account's...

How to configure Exchange 2010 with VMA Emailer

VMA Emailer offers this documentation to put simply the fundamental of SMTP connection with...

How to configure Outlook with VMA Emailer

These are the step by step procedures to add an SMTP server to an existing Outlook 2016 setup....