From cbb3cb755abe6b5fc13e44ebeff7566bf42e9fd0 Mon Sep 17 00:00:00 2001 From: Fredrik Wahlberg Date: Mon, 5 Nov 2007 09:14:13 +0000 Subject: [PATCH] =?UTF-8?q?Justerade=20lite=20f=C3=A4rger?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- clamav | 6 ++++-- milter_greylist | 1 + spamassassin | 6 +++--- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/clamav b/clamav index 6b3bdfc..0b71787 100755 --- a/clamav +++ b/clamav @@ -28,12 +28,14 @@ if [ "$1" = "config" ]; then echo 'graph_category Mail' echo 'clean.label clean' echo 'clean.type DERIVE' + echo 'clean.colour 0066CC' echo 'clean.min 0' - echo 'clean.draw LINE2' + echo 'clean.draw LINE1' echo 'infected.label infected' + echo 'infected.colour cc0033' echo 'infected.type DERIVE' echo 'infected.min 0' - echo 'infected.draw LINE2' + echo 'infected.draw LINE1' exit 0 fi diff --git a/milter_greylist b/milter_greylist index 8c76207..85d1673 100755 --- a/milter_greylist +++ b/milter_greylist @@ -27,6 +27,7 @@ if [ "$1" = "config" ]; then echo 'graph_period second' echo 'graph_info This graph shows the current number of greylisted and whitelisted senders.' echo 'grey.label Greylisted' + echo 'grey.colour 999999' # echo 'grey.max 10000' # echo 'grey.min 1000' echo 'grey.info The number of greylisted hosts.' diff --git a/spamassassin b/spamassassin index 5b32bab..a907751 100755 --- a/spamassassin +++ b/spamassassin @@ -34,13 +34,13 @@ if [ "$1" = "config" ]; then echo 'graph_order spam ham' echo 'graph_category Mail' echo 'mail.label mail' - echo 'mail.type DERIVE' + echo 'mail.type AREA' echo 'mail.min 0' - echo 'mail.draw LINE2' + echo 'mail.draw LINE1' echo 'ham.label ham' echo 'ham.type DERIVE' echo 'ham.min 0' - echo 'ham.draw LINE2' + echo 'ham.draw LINE1' echo 'spam.label spam' echo 'spam.type DERIVE' echo 'spam.min 0'