diff options
Diffstat (limited to 'debian/dovecot-submissiond.postinst')
-rw-r--r-- | debian/dovecot-submissiond.postinst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/dovecot-submissiond.postinst b/debian/dovecot-submissiond.postinst new file mode 100644 index 0000000..6fbf1ef --- /dev/null +++ b/debian/dovecot-submissiond.postinst @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +if [ "$1" = "configure" ]; then + CONFFILES="conf.d/20-submission.conf" + + for conffile in $CONFFILES ; do + # Tell ucf that the file in /usr/share/dovecot is the latest + # maintainer version, and let it handle how to manage the real + # configuration file in /etc/dovecot. + ucf --three-way "/usr/share/dovecot/$conffile" "/etc/dovecot/$conffile" + # Use --force to allow hijacking the file from dovecot-submission + ucfr --force dovecot-submissiond "/etc/dovecot/$conffile" + done + + if [ -f /usr/share/dovecot/protocols.d/submission.protocol ]; then + rm -f /usr/share/dovecot/protocols.d/submission.protocol + fi + echo 'protocols = $protocols submission' > /usr/share/dovecot/protocols.d/submissiond.protocol +fi + +#DEBHELPER# |