# # Config file for sSMTP sendmail # pour EOLE 2.3 # Equipe Eole 2010 # #Root # The user that gets all mail for userids less than 1000. # If blank, address rewriting is disabled. Root=%%system_mail_to #Mailhub # The host to send mail to, in the form host port | IP_addr port [: port]. # The default port is 25. %if %%is_defined('container_ip_mail') Mailhub=%%container_ip_mail %elif %%tls_smtp == 'port 465' Mailhub=%%passerelle_smtp:465 %else Mailhub=%%passerelle_smtp %end if #UseTLS # Specifies whether ssmtp uses TLS to talk to the SMTP server. # The default is “no”. %if %%tls_smtp == 'port 465' UseTLS=yes %end if #UseSTARTTLS # Specifies whether ssmtp does a EHLO/STARTTLS before starting SSL negotiation. # See RFC 2487. %if %%tls_smtp == 'port 25' UseSTARTTLS=yes %end if # Hostname # The full qualified name of the host. # If not specified, the host is queried for its hostname. Hostname=%%nom_machine.%%nom_domaine_local # Where will the mail seem to come from? %if %%rewrite_domain_mail == 'oui' rewriteDomain=%%nom_domaine_local %end if # Are users allowed to set their own From: address? # YES - Allow the user to specify their own From: address # NO - Use the system generated From: address #FromLineOverride=YES