Postfix
Postfix is a mail transfer said server MTA (mail transfer agent) using a Unix-like operating system. You can configure the server to send emails via Tipimail. For more information about Postfix, feel free to vist the official website
- Open the configuraiton file of Postfix “/etc/postfix/main.cf”
- Add the following line
1 2 3 4 5 6 7 | relayhost = [smtp.tipimail.com]:587 smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash : /etc/postfix/sasl_passwd smtp_sasl_security_options = noanonymous smtp_tls_CAfile = /etc/postfix/cacert .pem smtp_use_tls = yes |
- Then edit the file “/etc/postfix/sasl_passwd” to add your credentials
1 | [smtp.Tipimail.com]:port_number Tipimail_username:Tipimail_password |
- Create a file hash db file for postfix by execute the following command line:
1 | sudo postmap /etc/postfix/sasl_passwd |
- Restart Postfix
1 | $ /etc/init .d /postfix restart |