aboutsummaryrefslogtreecommitdiffstats
path: root/community/mutt/mutt.post-upgrade
diff options
context:
space:
mode:
Diffstat (limited to 'community/mutt/mutt.post-upgrade')
-rw-r--r--community/mutt/mutt.post-upgrade14
1 files changed, 14 insertions, 0 deletions
diff --git a/community/mutt/mutt.post-upgrade b/community/mutt/mutt.post-upgrade
new file mode 100644
index 00000000000..a29e6212813
--- /dev/null
+++ b/community/mutt/mutt.post-upgrade
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+ver_old=$2
+
+if [ "$(apk version -t "$ver_old" '2.1.1-r2')" = '<' ]; then
+ cat >&2 <<-EOF
+ *
+ * mutt package doesn't depend on full GnuGP suite anymore. If you use S/MIME,
+ * install package 'gpgsm' (you may also need gnupg-dirmngr and gpg-agent).
+ *
+ EOF
+fi
+
+exit 0