diff options
author | Marin Jankovski <maxlazio@gmail.com> | 2016-11-11 15:49:51 +0100 |
---|---|---|
committer | Marin Jankovski <maxlazio@gmail.com> | 2016-11-16 12:46:37 +0100 |
commit | 04f2dd65fb355eb3bf20e0d3deef9123132aacad (patch) | |
tree | 7f750e50524bcbe4fcd6e21e1e2c35dea69e1f9c /doc | |
parent | aa9a289ce55d5099e6a65f25e7c3b38f66148aca (diff) | |
download | gitlab-ce-04f2dd65fb355eb3bf20e0d3deef9123132aacad.tar.gz |
Add idle_timeout to reply by email doc.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/administration/reply_by_email.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/administration/reply_by_email.md b/doc/administration/reply_by_email.md index 5a9a1582877..b42892eef68 100644 --- a/doc/administration/reply_by_email.md +++ b/doc/administration/reply_by_email.md @@ -105,6 +105,8 @@ To set up a basic Postfix mail server with IMAP access on Ubuntu, follow # The mailbox where incoming mail will end up. Usually "inbox". gitlab_rails['incoming_email_mailbox_name'] = "inbox" + # The IDLE command timeout. + gitlab_rails['incoming_email_idle_timeout'] = 60 ``` ```ruby @@ -133,6 +135,8 @@ To set up a basic Postfix mail server with IMAP access on Ubuntu, follow # The mailbox where incoming mail will end up. Usually "inbox". gitlab_rails['incoming_email_mailbox_name'] = "inbox" + # The IDLE command timeout. + gitlab_rails['incoming_email_idle_timeout'] = 60 ``` 1. Reconfigure GitLab and restart mailroom for the changes to take effect: @@ -192,6 +196,8 @@ To set up a basic Postfix mail server with IMAP access on Ubuntu, follow # The mailbox where incoming mail will end up. Usually "inbox". mailbox: "inbox" + # The IDLE command timeout. + email_idle_timeout: 60 ``` ```yaml @@ -221,6 +227,8 @@ To set up a basic Postfix mail server with IMAP access on Ubuntu, follow # The mailbox where incoming mail will end up. Usually "inbox". mailbox: "inbox" + # The IDLE command timeout. + email_idle_timeout: 60 ``` 1. Enable `mail_room` in the init script at `/etc/default/gitlab`: @@ -277,6 +285,8 @@ To set up a basic Postfix mail server with IMAP access on Ubuntu, follow # The mailbox where incoming mail will end up. Usually "inbox". mailbox: "inbox" + # The IDLE command timeout. + email_idle_timeout: 60 ``` As mentioned, the part after `+` is ignored, and this will end up in the mailbox for `gitlab-incoming@gmail.com`. |