diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-09-30 00:38:50 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-09-30 00:38:50 +0200 |
commit | c9b1e5b047096f55070702f79ce7777faf8fa670 (patch) | |
tree | a512b8f6aceab60d7cc26be38361b93b8cb2bb54 /roles/webmail | |
parent | 780164e401734b23843d4f0d4a19b824fff3065a (diff) |
roundcube: Raise 'imap_timeout' from 1 to 3 minutes.
See http://wiki.fripost.org/tracker/Error_on_search_in_roundcube/ .
Diffstat (limited to 'roles/webmail')
-rw-r--r-- | roles/webmail/tasks/roundcube.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roles/webmail/tasks/roundcube.yml b/roles/webmail/tasks/roundcube.yml index 5ef1288..69bc033 100644 --- a/roles/webmail/tasks/roundcube.yml +++ b/roles/webmail/tasks/roundcube.yml @@ -49,9 +49,10 @@ - { var: smtp_log, value: "false" } # IMAP - { var: default_host, value: "'localhost'" } - - { var: default_port, value: "143" } + - { var: default_port, value: "143" } - { var: imap_auth_type, value: "'PLAIN'" } - { var: imap_cache, value: "null" } + - { var: imap_timeout, value: "180" } - { var: messages_cache, value: "false" } # SMTP - { var: smtp_server, value: "'localhost'" } |