summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOllivier Robert <roberto@FreeBSD.org>2018-11-06 14:52:43 +0000
committerOllivier Robert <roberto@FreeBSD.org>2018-11-06 14:52:43 +0000
commit56b6a5eafc0512dd60c8df26ee59b3e27d0e5cf4 (patch)
tree00606748bf4e0f6a53ff043b6269266289fd0dff
parentFlacon 5.0.0 is out! (diff)
mail/fetchmail:
- Ensure the fetchmail script returns 1 if fetchmail is not running. - Bump PORTREVISION. PR: ports/219051
Notes
Notes: svn path=/head/; revision=484295
-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