diff options
author | zeripath <art27@cantab.net> | 2019-04-17 05:56:40 +0100 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-04-17 00:56:40 -0400 |
commit | 827ab6b75a70a3cd90033a4d49bb44c635dd3310 (patch) | |
tree | 4eeb03f67d96288dddedbca0215759c622e5b5b1 /docs/content | |
parent | 84fd24246cd5565b9654bf752b9919df03e69271 (diff) | |
download | gitea-827ab6b75a70a3cd90033a4d49bb44c635dd3310.tar.gz gitea-827ab6b75a70a3cd90033a4d49bb44c635dd3310.zip |
Add SUBJECT_PREFIX mailer config option (#6605)
* Add SUBJECT_PREFIX mailer config option
* Add space between subject prefix and subject (Change from Gogs)
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'docs/content')
-rw-r--r-- | docs/content/doc/advanced/config-cheat-sheet.en-us.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md index 1e97f93e13..8ae89ef4de 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -241,14 +241,15 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`. - `PASSWD`: **\<empty\>**: Password of mailing user. Use \`your password\` for quoting if you use special characters in the password. - `SKIP_VERIFY`: **\<empty\>**: Do not verify the self-signed certificates. - **Note:** Gitea only supports SMTP with STARTTLS. +- `SUBJECT_PREFIX`: **\<empty\>**: Prefix to be placed before e-mail subject lines. - `MAILER_TYPE`: **smtp**: \[smtp, sendmail, dummy\] - **smtp** Use SMTP to send mail - **sendmail** Use the operating system's `sendmail` command instead of SMTP. This is common on linux systems. - **dummy** Send email messages to the log as a testing phase. - Note that enabling sendmail will ignore all other `mailer` settings except `ENABLED`, - `FROM` and `SENDMAIL_PATH`. - - Enabling dummy will ignore all settings except `ENABLED` and `FROM`. + `FROM`, `SUBJECT_PREFIX` and `SENDMAIL_PATH`. + - Enabling dummy will ignore all settings except `ENABLED`, `SUBJECT_PREFIX` and `FROM`. - `SENDMAIL_PATH`: **sendmail**: The location of sendmail on the operating system (can be command or full path). - ``IS_TLS_ENABLED`` : **false** : Decide if SMTP connections should use TLS. |