aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorroberto <roberto@FreeBSD.org>2018-11-06 22:52:43 +0800
committerroberto <roberto@FreeBSD.org>2018-11-06 22:52:43 +0800
commit3555d636a3a72c21c6bd7c1031d750ad026162fe (patch)
tree00606748bf4e0f6a53ff043b6269266289fd0dff /mail
parent27d178c86959b415d69c18d8d01a0b59fe1b260c (diff)
downloadfreebsd-ports-gnome-3555d636a3a72c21c6bd7c1031d750ad026162fe.tar.gz
freebsd-ports-gnome-3555d636a3a72c21c6bd7c1031d750ad026162fe.tar.zst
freebsd-ports-gnome-3555d636a3a72c21c6bd7c1031d750ad026162fe.zip
mail/fetchmail:
- Ensure the fetchmail script returns 1 if fetchmail is not running. - Bump PORTREVISION. PR: ports/219051
Diffstat (limited to 'mail')
-rw-r--r--mail/fetchmail/Makefile2
-rw-r--r--mail/fetchmail/files/fetchmail.in1
2 files changed, 2 insertions, 1 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile
index 87fe6d8e8d77..be881a20dcb1 100644
--- a/mail/fetchmail/Makefile
+++ b/mail/fetchmail/Makefile
@@ -3,7 +3,7 @@
PORTNAME= fetchmail
PORTVERSION= 6.3.26
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= mail ipv6
MASTER_SITES= SF/${PORTNAME}/branch_6.3/ \
http://mandree.home.pages.de/${PORTNAME}/
diff --git a/mail/fetchmail/files/fetchmail.in b/mail/fetchmail/files/fetchmail.in
index b3b3bd2c4862..e1c66d40fbdf 100644
--- a/mail/fetchmail/files/fetchmail.in
+++ b/mail/fetchmail/files/fetchmail.in
@@ -137,6 +137,7 @@ else
retcode="$?"
if [ "0${retcode}" -ne 0 ]; then
failed="${user} (${retcode}) ${failed:-}"
+ exit 1
else
success="${user} ${success:-}"
fi