diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-05-23 01:58:48 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-05-23 01:58:48 +0200 |
commit | 5939ce51d7527784e5a53c1f1f4b16aaf189ead2 (patch) | |
tree | 9a30661e1179b19101648eeb4f90478360baf6aa /roles/IMAP-proxy/tasks | |
parent | 4b59f7a4cfe0f84e2084f01671982b7713a534aa (diff) |
Dovecot imapc: use the version from jessie-backports.
Since many bug have been fixed since 2.2.13, and we really want
passthrough search on the caching proxy.
Diffstat (limited to 'roles/IMAP-proxy/tasks')
-rw-r--r-- | roles/IMAP-proxy/tasks/main.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/roles/IMAP-proxy/tasks/main.yml b/roles/IMAP-proxy/tasks/main.yml index 93a5181..50cfc2d 100644 --- a/roles/IMAP-proxy/tasks/main.yml +++ b/roles/IMAP-proxy/tasks/main.yml @@ -1,6 +1,9 @@ - name: Install Dovecot - #apt: pkg={{ item }} default_release={{ ansible_lsb.codename }}-backports - apt: pkg={{ item }} + # WARNING: "The destination servers don't need to be running Dovecot, + # but you should make sure that the Dovecot proxy doesn't advertise + # more capabilities than the destination server can handle." + # http://wiki2.dovecot.org/PasswordDatabase/ExtraFields/Proxy + apt: pkg={{ item }} default_release={{ ansible_lsb.codename }}-backports with_items: - dovecot-core - dovecot-imapd |