Exim
Exim 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 Exim, feel free to vist the official website
- You have to edit the file “/etc/exim4/update-exim4.conf.conf” and replace the settings by your Tipimaiml SMTP credentials :
1 2 3 4 5 6 7 8 9 10 11 12 13 | dc_eximconfig_configtype= 'smarthost' vdc_other_hostnames= '' dc_local_interfaces= '127.0.0.1' dc_readhost= 'your.server.name' dc_relay_domains= '' dc_minimaldns= 'false' dc_relay_nets= '' dc_smarthost= 'smtp.Tipimail.com::587' CFILEMODE= '644' dc_use_split_config= 'false' dc_hide_mailname= 'true' dc_mailname_in_oh= 'true' |
- If you want to enable the encryption of the communication with TLS, create and edit the file “/etc/exim4/exim4.conf/localmacros” and add the following line :
1 | MAIN_TLS_ENABLE = 1 |
- Then enter your password to authorize Tipimail Exim SMTP to send emails. Edit the file “/etc/exim4/passwd.client”
1 | *:Tipimail_smtp_username:Tipimail_smtp_password |
- Save the file and restart the service
1 | service exim4 restart |