svn commit: r484295 - in head/mail/fetchmail: . files

Ollivier Robert roberto at FreeBSD.org
Tue Nov 6 14:52:44 UTC 2018


Author: roberto
Date: Tue Nov  6 14:52:43 2018
New Revision: 484295
URL: https://svnweb.freebsd.org/changeset/ports/484295

Log:
  mail/fetchmail:
  - Ensure the fetchmail script returns 1 if fetchmail is not running.
  - Bump PORTREVISION.
  
  PR:		ports/219051

Modified:
  head/mail/fetchmail/Makefile
  head/mail/fetchmail/files/fetchmail.in

Modified: head/mail/fetchmail/Makefile
==============================================================================
--- head/mail/fetchmail/Makefile	Tue Nov  6 14:51:26 2018	(r484294)
+++ head/mail/fetchmail/Makefile	Tue Nov  6 14:52:43 2018	(r484295)
@@ -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}/

Modified: head/mail/fetchmail/files/fetchmail.in
==============================================================================
--- head/mail/fetchmail/files/fetchmail.in	Tue Nov  6 14:51:26 2018	(r484294)
+++ head/mail/fetchmail/files/fetchmail.in	Tue Nov  6 14:52:43 2018	(r484295)
@@ -137,6 +137,7 @@ else
 		retcode="$?"
 		if [ "0${retcode}" -ne 0 ]; then
 			failed="${user} (${retcode}) ${failed:-}"
+			exit 1
 		else
 			success="${user} ${success:-}"
 		fi


More information about the svn-ports-all mailing list