From 6f34fbb6cdc34ebfd7aa92d6d9f45511e22724d6 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Wed, 27 Jun 2012 20:16:34 -0400 Subject: [PATCH] dspam: better error message if dspam_bin is not found --- plugins/dspam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dspam b/plugins/dspam index d92da7f..d133dd8 100644 --- a/plugins/dspam +++ b/plugins/dspam @@ -216,7 +216,7 @@ sub register { $self->{_args}{dspam_bin} ||= '/usr/local/bin/dspam'; if ( ! -x $self->{_args}{dspam_bin} ) { - $self->log(LOGERROR, "dspam not found: "); + $self->log(LOGERROR, "dspam CLI binary not found: install dspam and/or set dspam_bin"); return DECLINED; };