/usr/share/munin/plugins/qmailscan-simple is in munin-plugins-extra 2.0.6-4+deb7u2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #!/bin/sh
# -*- sh -*-
#
# Plugin to count the daily amount of Virii (qmailscan)
#
# Contributed by David Obando (david@cryptix.de) - 03.12.2005
#
# define the logfiles. when you rotate them at any other time than 00:00 you have to define two logfiles:
LOG0=/var/spool/qmailscan/quarantine.log
LOG1=/var/spool/qmailscan/quarantine.log.1
if [ "$1" = "autoconf" ]; then
echo yes
exit 0
fi
if [ "$1" = "config" ]; then
echo 'graph_title Virus amount'
echo 'graph_args --base 1000 -l 0 '
echo 'graph_vlabel Daily Virus Amount'
echo 'graph_category Mail'
echo 'virus.label Virus'
echo 'virus.draw AREA'
exit 0
fi
printf "virus.value "
grep "$(date "+%d %b %Y")" $LOG0 $LOG1 | wc -l
|