config is in postsrsd 1.2-1.
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 19 20 21 | #!/bin/sh
CONFIGFILE=/etc/default/postsrsd
set -e
. /usr/share/debconf/confmodule
if [ -e $CONFIGFILE ]; then
. $CONFIGFILE || true
db_set postsrsd/domain "$SRS_DOMAIN"
priority="medium"
else
if [ -e /usr/sbin/postconf ]; then
db_set postsrsd/domain "$(postconf -h mydomain)"
priority="medium"
else
priority="high"
fi
fi
db_input $priority postsrsd/domain || true
db_go
|