config is in postgrey 1.36-5.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #! /bin/sh
# debconf notice
set -e
. /usr/share/debconf/confmodule
if [ "$1" != "configure" ]; then
exit 0;
fi
if dpkg --compare-versions "$2" lt-nl "1.32-1" && \
[ -e /etc/postfix/main.cf ] && \
grep -q 'inet:127.0.0.1:60000' /etc/postfix/main.cf; then
db_input critical postgrey/1.32-3_changeport || true
db_go || true
fi
|