diff -urN smeserver-fetchmail-1.6.old/root/etc/e-smith/templates/var/service/qpsmtpd/config/forcespamcheck/60fetchmail smeserver-fetchmail-1.6/root/etc/e-smith/templates/var/service/qpsmtpd/config/forcespamcheck/60fetchmail --- smeserver-fetchmail-1.6.old/root/etc/e-smith/templates/var/service/qpsmtpd/config/forcespamcheck/60fetchmail 2021-10-12 02:10:13.353193939 -0400 +++ smeserver-fetchmail-1.6/root/etc/e-smith/templates/var/service/qpsmtpd/config/forcespamcheck/60fetchmail 2021-10-12 02:12:40.000000000 -0400 @@ -1,7 +1,9 @@ { - # vim: ft=perl ts=4 sw=4 et: - if ( ( $FetchMails{ status } || "disabled" ) eq "enabled" ) { - $OUT = "\n127.0.0.200\n" ; - } + $OUT = ''; + my $status = $fetchmail{status} || 'enabled'; + unless ($status eq 'disabled') + { + $OUT = "\n127.0.0.200\n" ; + return; + } } -