Home Questions Pricing Support Contact Sign up Log in

AuthSMTP - Exim 4.x + Mail Transfer Agent (Alternate Port)

Important Points

IMPORTANT: This is only intended as a basic guide to setting up AuthSMTP and assumes prior knowledge of Linux / Unix system administration, we CANNOT provide support on general usage of the operating system or on implementing more complex configurations - for additional support with the MTA please use the software vendors support channels.

Instructions

>cd /etc/exim
>mkdir /EXIM_BACKUP

>cp /etc/exim/* /EXIM_BACKUP
dnslookup:
driver = dnslookup
domains = ! +local_domains
transport = remote_smtp
ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
no_more
#dnslookup:
#driver = dnslookup
#domains = ! +local_domains
#transport = remote_smtp
#ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
#no_more
send_to_smart_host:
driver = manualroute
domains = !+local_domains
transport = remote_smtp
route_list = * mail.authsmtp.com
remote_smtp:
driver = smtp
hosts_require_auth = mail.authsmtp.com
port = 2525
hosts_require_tls = mail.authsmtp.com
hosts_avoid_tls = mail.authsmtp.com
fixed_cram:
driver = cram_md5
public_name = CRAM-MD5
client_name = username
client_secret = password
fixed_plain:
driver = plaintext
public_name = PLAIN
client_send = ^username^password
>/etc/rc.d/init.d/exim restart