Hello community,

here is the log from the commit of package fetchmail for openSUSE:Factory 
checked in at 2016-05-17 17:15:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fetchmail (Old)
 and      /work/SRC/openSUSE:Factory/.fetchmail.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fetchmail"

Changes:
--------
--- /work/SRC/openSUSE:Factory/fetchmail/fetchmail.changes      2016-04-11 
10:26:51.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.fetchmail.new/fetchmail.changes 2016-05-17 
17:15:31.000000000 +0200
@@ -1,0 +2,7 @@
+Fri May 13 12:06:54 UTC 2016 - [email protected]
+
+- Made the helper script introduced in last change return exit status
+  5 on configuration errors instead of 1, which should make it a bit
+  less confusing (bsc#979534)
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------

++++++ fetchmail.exec ++++++
--- /var/tmp/diff_new_pack.wTUtqP/_old  2016-05-17 17:15:32.000000000 +0200
+++ /var/tmp/diff_new_pack.wTUtqP/_new  2016-05-17 17:15:32.000000000 +0200
@@ -3,13 +3,13 @@
 
 die() {
        echo "$@" 1>&2
-       exit 1
+       exit 5 # closest thing among fetchmail's exit codes
 }
 
 echo "$FETCHMAIL_POLLING_INTERVAL" | grep -Eq '^[0-9]+$' \
        || die 'invalid $FETCHMAIL_POLLING_INTERVAL setting'
 [ -r "$FETCHMAIL_RC_PATH" ] \
-       || die '$FETCHMAIL_RC_PATH does not exist'
+       || die '$FETCHMAIL_RC_PATH does not exist or cannot be read'
 
 OPTS="-d $FETCHMAIL_POLLING_INTERVAL"
 [ "$FETCHMAIL_FETCHALL" = "yes" ] && OPTS="$OPTS -a"


Reply via email to