This repository has been archived by the owner on Dec 2, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added documentation for sendmail #355 (#56)
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,7 +123,9 @@ Any configuration option that is marked by :exclamation: means that you should k | |
- `FROM`: Mail from address, RFC 5322. This can be just an email address, or the "Name" \<[email protected]\> format. | ||
- `USER`: Username of mailer (usually just your e-mail address). | ||
- `PASSWD`: Password of mailer. | ||
- `SKIP_VERIFY`: Do not verify the self-signed certificates. | ||
- `SKIP_VERIFY`: Do not verify the self-signed certificates. | ||
- `USE_SENDMAIL`: Use the operating system's `sendmail` command instead of SMTP. This is common on linux systems. Valid values are `true` to use sendmail and `false` to use SMTP (default). Note that enabling sendmail will ignore all other `mailer` settings except `ENABLED`, `FROM` and `SENDMAIL_PATH`. | ||
- `SENDMAIL_PATH`: The location of sendmail on the operating system. This can be an absolute path (eg: `/usr/sbin/sendmail`) or just the name of the command (eg: `sendmail` - default) if it can be found in the `PATH` environment variable. | ||
|
||
Note: Actually, Gitea supports only SMTP with STARTTLS. | ||
|
||
|