Differences
This shows you the differences between two versions of the page.
— | ssmtp [2015/06/01 23:33] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== ssmtp ====== | ||
+ | * [[Mail Servers]] | ||
+ | |||
+ | SSMTP is used to send outgoing emails without a mail server. | ||
+ | |||
+ | Sample configuration using all options | ||
+ | |||
+ | < | ||
+ | # User to get all emails for userids less than 1000 | ||
+ | Root=root | ||
+ | # Third-party SMTP server, port | ||
+ | Mailhub=smtp.server.com: | ||
+ | # The source domain, what domain the email comes " | ||
+ | RewriteDomain=clients-website.com | ||
+ | # FQDN Hostname, if unset, checks the system | ||
+ | Hostname=clients-website.com | ||
+ | # Email address that it is from | ||
+ | [email protected] | ||
+ | # Use TLS to talk to the SMTP server. | ||
+ | UseTLS=YES | ||
+ | # Specifies whether ssmtp does a EHLO/ | ||
+ | UseSTARTTLS=YES | ||
+ | # The user name to use for SMTP AUTH. The default is blank, in which case SMTP AUTH is not used. | ||
+ | [email protected] | ||
+ | # The password to use for SMTP AUTH. | ||
+ | AuthPass=password | ||
+ | # The authorization method to use. If unset, plain text is used. May also be set to “cram-md5”. | ||
+ | AuthMethod= | ||
+ | </ |