]> git.madduck.net Git - etc/mailfilter.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

write info to stdout not stderr
authormartin f. krafft <madduck@madduck.net>
Sun, 23 Sep 2007 20:16:34 +0000 (22:16 +0200)
committermartin f. krafft <madduck@madduck.net>
Sun, 23 Sep 2007 20:16:34 +0000 (22:16 +0200)
bin/process-delayed-queue

index 82818ebfe2eb8a1019489fa06ce71eb9c51373dd..9d0d5bc80cb12c4245e015988ef3afe1b92e119b 100755 (executable)
@@ -16,7 +16,7 @@ $SQLITE -column $DELAYED_QUEUE_DB "$QUERY" | while read msgid file ts; do
     echo "E: message $msgid not found in $file" >&2
   else
     $RESUBMIT "$file"
     echo "E: message $msgid not found in $file" >&2
   else
     $RESUBMIT "$file"
-    echo "I: resubmitted $msgid" >&2
+    echo "I: resubmitted $msgid"
   fi
   $SQLITE $DELAYED_QUEUE_DB "delete from messages where msgid = '$msgid'"
 done
   fi
   $SQLITE $DELAYED_QUEUE_DB "delete from messages where msgid = '$msgid'"
 done