blob: a531234c85f43316f761fb1d6ed0ae9174d0419d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
cat << _EOF
==> topal installation notes:
----------------------------------------
Topal was mainly developed for the Alpine mailer, and it offers
facilities to encrypt, decrypt, sign and verify e-mail. But Alpine
can't work with MIME RFC2015/3156 multipart/signed and encrypted
messages on its own. If you would like to have multipart e-mail
support check both "alpine-2.00" patches provided in the topal
tarball and build your own alpine package applying both.
_EOF
}
post_upgrade() {
post_install
}
|