From 1efbf2309b84cc9d1bba395fdb88b2404ca1a7b2 Mon Sep 17 00:00:00 2001 From: Luc Duchosal Date: Wed, 24 Jul 2013 07:42:53 +0200 Subject: [PATCH] fixed missing tmp cleanup --- plugins/mail/postfix_stats | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/mail/postfix_stats b/plugins/mail/postfix_stats index 64f2bace..87f99412 100755 --- a/plugins/mail/postfix_stats +++ b/plugins/mail/postfix_stats @@ -48,3 +48,5 @@ rejected.value `grep 'rejected' $TMP | awk '{print $1}'` held.value `grep 'held' $TMP | awk '{print $1}'` discarded.value `grep 'discarded' $TMP | awk '{print $1}'` EOF + +rm $TMP \ No newline at end of file