]> git.deb.at Git - pkg/t-prot.git/blob - debian/config
Imported Debian patch 0.54.1-1.woody1
[pkg/t-prot.git] / debian / config
1 #!/bin/sh -e
2
3 # Source debconf library.
4 . /usr/share/debconf/confmodule
5
6 # Only do this if a Muttrc is present
7 if [ -e /etc/Muttrc ]; then
8
9         # Add the source line to /etc/Muttrc?
10         db_input medium t-prot/muttrc_option || true
11         db_go
12
13         # Check the answer.
14         db_get t-prot/muttrc_option
15         if [ "$RET" = "true" ]; then
16                 # Show note that it's enabled by default.
17                 db_input high t-prot/muttrc_note || true
18                 db_go
19         fi
20 fi
21
22 exit 0