This file is indexed.

postinst is in mutt-kz 1.5.23.1-6build2.

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
#!/bin/sh

set -e

if [ "$1" = "configure" ] ; then
	update-alternatives --install /usr/bin/mutt mutt /usr/bin/mutt-kz 60 \
		--slave /usr/share/man/man1/mutt.1.gz mutt.1.gz /usr/share/man/man1/mutt-kz.1.gz \
		--slave /usr/share/man/man5/muttrc.5.gz muttrc.5.gz /usr/share/man/man5/muttrc-kz.5.gz \
		--slave /usr/share/doc/mutt/html mutt-doc-html /usr/share/doc/mutt-kz/html \
		--slave /usr/share/doc/mutt/manual.txt.gz mutt-doc-manual /usr/share/doc/mutt-kz/manual.txt.gz
fi



exit 0