config is in email-reminder 0.7.8-2.
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 | #!/bin/sh
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
db_input medium email-reminder/send_reminders || true
db_go
db_input medium email-reminder/smtp_server || true
db_go
db_input medium email-reminder/smtp_username || true
db_go
db_input medium email-reminder/smtp_password || true
db_go
db_input medium email-reminder/smtp_ssl || true
db_go
db_input medium email-reminder/mail_from || true
db_go
|