Difference between revisions of "Seon VMware virtualized image - mail configuration"

From Seon
Jump to: navigation, search
(Relay authentification)
(Relay authentification)
Line 46: Line 46:
 
*Add a line with the following syntax:
 
*Add a line with the following syntax:
 
  yourdomain.com:user@yourdomain.com:yourpassword
 
  yourdomain.com:user@yourdomain.com:yourpassword
 +
*Reload the configuration of Exim:
 +
update-exim4.conf

Revision as of 19:34, 30 May 2014

The Seonvirtual Linux environment comes with a pre-installed Mail Transfer Agent (MTA) called "Exim" in version 4. You can configure Exim4 to your needs in order to send emails within your system environment.

Basics

Exim4 is best configured on command line (i.e. via SSH) via a dialog based system. This system easily helps you to accomplish your configuration task.

The command to be executed as root is:

dpkg-reconfigure exim4-config

The following informational prompt asks you to confirm the "OK" button:

Dpkg-reconfigure exim4-config.png

Direct mail sending - without mail relay

If you can send emails directly via SMTP (i.e. your Seon machine has direct internet access), you can choose the first option "internet site; mail is sent and received directly using SMTP":

Dpkg-reconfigure exim4-config-1.png

You will then need the following settings:

  • System mail name: The full qualified domain name (FQDN) of the Seon system (i.e. "seon.de", "c-works.de" or whatever your mail domain is).
  • IP-addresses to listen on for incoming SMTP connections: (keep default) 127.0.0.1 ; ::1
  • Other destinations for which mail is accepted: (keep default)
  • Domains to relay mail for: (keep default) [empty]
  • Machines to relay mail for: (keep default) [empty]
  • Keep number of DNS-queries minimal (Dial-on-Demand)? (keep default) No
  • Delivery method for local mail: (keep default or change to whatever your prefered type is) mbox format in /var/mail/
  • Split configuration into small files? (keep default) No

Mail sending over SMTP relay (aka. "smarthost")

If your network provides an existing mail server, the option "mail sent by smarthost; received via SMTP or fetchmail" will be the best one:

Dpkg-reconfigure exim4-config-2.png

  • System mail name: The full qualified domain name (FQDN) of the Seon system (i.e. "seon.de", "c-works.de" or whatever your mail domain is).
  • IP-addresses to listen on for incoming SMTP connections: (keep default) 127.0.0.1 ; ::1
  • Other destinations for which mail is accepted: (keep default)
  • Machines to relay mail for: (keep default) [empty]
  • IP address or host name of the outgoing smarthost: The IP/hostname of the relay host.
  • Hide local mail name in outgoing mail? (keep default) No
  • Keep number of DNS-queries minimal (Dial-on-Demand)? (keep default) No
  • Delivery method for local mail: (keep default or change to whatever your prefered type is) mbox format in /var/mail/
  • Split configuration into small files? Yes

Relay authentification

If you need to authenticate against an existing relay host with a given username and password, you have to do the following:

  • Edit the file "/etc/exim4/passwd.client" with your favorite editor (i.e. "vi")
vi /etc/exim4/passwd.client
  • Add a line with the following syntax:
yourdomain.com:user@yourdomain.com:yourpassword
  • Reload the configuration of Exim:
update-exim4.conf