config is in solid-pop3d 0.15-26.
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 22 | #!/bin/sh
# vim:ft=sh
#
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
CONFIGFILE=/etc/default/solid-pop3d
RUN_MODE=inetd
[ -f "$CONFIGFILE" ] && . "$CONFIGFILE"
# preserve user changes in the config file
if [ "x$RUN_MODE" = "xdaemon" ] ; then
db_set solid-pop3d/run_mode daemon
else
db_set solid-pop3d/run_mode inetd
fi
db_input medium solid-pop3d/run_mode || true
db_go || true
|