#!/bin/sh -e [ "$1" = "configure" ] || exit 0 [ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx # Load CARNet Tools . /usr/share/carnet-tools/functions.sh cp_check_and_sed '^protocols' \ 's/protocols.*$/protocols = imap imaps pop3 pop3s/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed '#disable_plaintext_auth' \ 's/#disable_plaintext_auth/disable_plaintext_auth/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed 'disable_plaintext_auth.*yes' \ 's/disable_plaintext_auth.*$/disable_plaintext_auth = no/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed '#imap_client_workarounds' \ 's/#imap_client_workarounds/imap_client_workarounds/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed '#pop3_client_workarounds' \ 's/#pop3_client_workarounds/pop3_client_workarounds/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed 'imap_client_workarounds' \ 's/imap_client_workarounds.*$/imap_client_workarounds = outlook-idle tb-extra-mailbox-sep netscape-eoh delay -newmail/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed 'pop3_client_workarounds' \ 's/pop3_client_workarounds.*$/pop3_client_workarounds = outlook-no-nuls oe-ns-eoh/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed 'pop3_uidl_format' \ 's/pop3_uidl_format.*$/pop3_uidl_format = %v.%u/g' \ /etc/dovecot/dovecot.conf || true cp_check_and_sed '#quota = maildir' \ 's/#quota = maildir/quota = fs/g' \ /etc/dovecot/dovecot.conf || true # restart if [ -x /usr/sbin/invoke-rc.d ]; then [ -x /etc/init.d/dovecot ] && invoke-rc.d dovecot restart else [ -x /etc/init.d/dovecot ] && /etc/init.d/dovecot restart fi