blob: 2bdd73d9672dcb6708257db79f2a19fe3aa19469 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
ver_new="$1"
ver_old="$2"
if [ "$(apk version -t "$ver_old" "2.3.2.1-r1")" = "<" ]; then
cat >&2 <<-EOF
*
* POP3, LMTP and Submission protocols were moved into subpackages:
* dovecot-pop3d, dovecot-lmtpd and dovecot-submissiond. If you use
* some of these protocols, you have to install particular subpackage.
*
EOF
fi
exit 0
|