From: martin f. krafft Date: Tue, 25 Sep 2007 15:28:57 +0000 (+0200) Subject: shorten log messages X-Git-Url: https://git.madduck.net/etc/mailfilter.git/commitdiff_plain/3f2576642ccb3d1835a9082c071a76b503abd1d6 shorten log messages --- diff --git a/procmail/spool b/procmail/spool index 1463366..128ba44 100644 --- a/procmail/spool +++ b/procmail/spool @@ -3,7 +3,7 @@ * ! MSG_TEST ?? . * ! IS_SPAM ?? . { - LOG="spool: saving message $MSGID to spool$NL" + LOG="spool: saving message $MSGID$NL" TRAP :0 $BASE/.spool/ @@ -11,10 +11,10 @@ :0 E * MSG_TEST ?? . -{ LOG="spool: not saving test message to spool$NL" } +{ LOG="spool: not saving test message$NL" } :0 E *$ $MSG_DEJAVU -{ LOG="spool: not saving resubmitted message to spool$NL" } +{ LOG="spool: not saving resubmitted message$NL" } # vim:ft=procmail diff --git a/procmail/to-gmail b/procmail/to-gmail index 59df5cc..05e0627 100644 --- a/procmail/to-gmail +++ b/procmail/to-gmail @@ -5,7 +5,7 @@ *$ ! $MSG_DEJAVU * ! MSG_TEST ?? . { - LOG="gmail: archiving message $MSGID with gmail$NL" + LOG="gmail: archiving message $MSGID$NL" SENDMAILFLAGS="$SENDMAILFLAGS -f $ID" TRAP @@ -15,9 +15,9 @@ :0 E * MSG_TEST ?? . - { LOG="gmail: not archiving message test message with gmail$NL" } + { LOG="gmail: not archiving message test message$NL" } :0 E *$ $MSG_DEJAVU - { LOG="gmail: not archiving message resubmitted message with gmail$NL" } + { LOG="gmail: not archiving message resubmitted message$NL" } }