1 |
diff -Nur -x '*.orig' -x '*.rej' smeserver-qpsmtpd-1.2.1/root/usr/share/qpsmtpd/plugins/check_smtp_forward mezzanine_patched_smeserver-qpsmtpd-1.2.1/root/usr/share/qpsmtpd/plugins/check_smtp_forward |
2 |
--- smeserver-qpsmtpd-1.2.1/root/usr/share/qpsmtpd/plugins/check_smtp_forward 2008-01-09 12:04:23.000000000 +1100 |
3 |
+++ mezzanine_patched_smeserver-qpsmtpd-1.2.1/root/usr/share/qpsmtpd/plugins/check_smtp_forward 2008-01-09 12:03:28.000000000 +1100 |
4 |
@@ -42,7 +42,7 @@ |
5 |
|
6 |
$self->{_smtp_host}{$host} = $server; |
7 |
|
8 |
- $self->log(LOGINFO, "$host: $server"); |
9 |
+ $self->log(LOGDEBUG, "$host: $server"); |
10 |
} |
11 |
} |
12 |
|
13 |
@@ -56,7 +56,7 @@ |
14 |
($server, $port) = split(/:/, $server); |
15 |
$port ||= 25; |
16 |
|
17 |
- $self->log(LOGINFO, "Checking $recipient on $server:$port"); |
18 |
+ $self->log(LOGDEBUG, "Checking $recipient on $server:$port"); |
19 |
|
20 |
my $smtp = Net::SMTP->new( |
21 |
$server, |
22 |
@@ -91,6 +91,6 @@ |
23 |
$smtp->quit(); |
24 |
$rc = $smtp->code; |
25 |
|
26 |
- $self->log(LOGINFO, "$server would accept message to $recipient"); |
27 |
+ $self->log(LOGDEBUG, "$server would accept message to $recipient"); |
28 |
return DECLINED; # Internal mail server is happy |
29 |
} |