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
parent ba854c471f
commit 6f34fbb6cd

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;
}; };