Browse Source

fix #122 ; for older versions of dovecot

pull/127/head
Luke Smith 3 years ago
parent
commit
d3ce7d9fa6
No known key found for this signature in database GPG Key ID: 4C50B54A911F6252
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      emailwiz.sh

+ 5
- 0
emailwiz.sh View File

@@ -206,6 +206,11 @@ plugin {
}
" > /etc/dovecot/dovecot.conf

# If using an old version of Dovecot, remove the ssl_dl line.
case "$(dovecot --version)" in
1|2.1*|2.2*) sed -i "/^ssl_dh/d" /etc/dovecot/dovecot.conf ;;
esac

mkdir /var/lib/dovecot/sieve/

echo "require [\"fileinto\", \"mailbox\"];


Loading…
Cancel
Save