Wenn Sie Exim 4 verwenden und Ihre E-Mail-Zustellbarkeit verbessern möchten, ist die Wahl unseres turboSMTP Smarthost-Smtp-Relay-Provider eine gute Idee. So richten Sie einen Smarthost für Ihr Exim ein.
EExim Smarthost-Konfiguration
dc_eximconfig_configtype='smarthost' dc_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='pro.turbo-smtp.com::587' CFILEMODE='644' dc_use_split_config='false' dc_hide_mailname='true' dc_mailname_in_oh='true'
Die vorherige Konfigurationsdatei finden Sie unter /etc/exim4/update-exim4.conf.conf. Wir verwenden die Datei vom Ubuntu Server 10.4 nur als Beispiel.
Aktivieren Sie in /etc/exim4/exim4.conf.localmacros das TLS::
MAIN_TLS_ENABLE = 1
Geben Sie in /etc/exim4/passwd.client Ihren Benutzernamen und Ihr Kennwort ein, damit Exim 4 auf turboSMTP zugreifen kann:
*:turboSMTPusername:turboSMTPpassword
Speichern und Exim neu starten:
$ /etc/init.d/exim4 restart
Exim Relay-Smarthost mit CPanel
Wenn Sie mit CPanel arbeiten, aber möchten, dass turboSMTP als Smarthost Ihre E-Mails sendet, folgen Sie bitte diesem Pfad: Main> Service Configuration> Exim Configuration Editor> Advanced Editor. Fügen Sie den folgenden Code in das AUTH-Feld ein:
begin authenticators turbosmtp_login: driver = plaintext public_name = LOGIN client_send = : YourturboSMTPUsername : YourturboSMTPPassword
Fügen Sie nun eine Route in das Feld Router Configuration und einen Transport in das Feld Transport Configuration ein:
send_via_turbosmtp: driver = manualroute domains = ! +local_domains transport = pro.turbo-smtp route_list = "* pro.turbo-smtp.com::587 byname" host_find_failed = defer no_more
turbosmtp_smtp: driver = smtp hosts = pro.turbo-smtp.com hosts_require_auth = <; $host_address hosts_require_tls = <; $host_address
Speichern und Exim neu starten
$ /etc/init.d/exim4 restart