diff options
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 |