dspam: better error message if dspam_bin is not found

This commit is contained in:
Matt Simerson 2012-06-27 20:16:34 -04:00 committed by Matt Simerson
parent b0f5618d72
commit 3127f4d4c5

View File

@ -216,7 +216,7 @@ sub register {
$self->{_args}{dspam_bin} ||= '/usr/local/bin/dspam'; $self->{_args}{dspam_bin} ||= '/usr/local/bin/dspam';
if ( ! -x $self->{_args}{dspam_bin} ) { 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; return DECLINED;
}; };