1 |
slords |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' qpsmtpd-0.40/plugins/virus/clamav mezzanine_patched_qpsmtpd-0.40/plugins/virus/clamav |
2 |
|
|
--- qpsmtpd-0.40/plugins/virus/clamav 2007-06-30 10:49:36.000000000 -0600 |
3 |
|
|
+++ mezzanine_patched_qpsmtpd-0.40/plugins/virus/clamav 2007-06-30 10:48:46.000000000 -0600 |
4 |
|
|
@@ -212,8 +212,8 @@ |
5 |
|
|
if ($result == 1) { |
6 |
|
|
$self->log(LOGINFO, "Virus(es) found: $output"); |
7 |
|
|
if ($self->{_action} eq 'add-header') { |
8 |
|
|
- $transaction->header->add('X-Virus-Found', 'Yes'); |
9 |
|
|
- $transaction->header->add('X-Virus-Details', $output); |
10 |
|
|
+ $transaction->header->add('X-Virus-Details', $output, 0); |
11 |
|
|
+ $transaction->header->add('X-Virus-Found', 'Yes', 0); |
12 |
|
|
} else { |
13 |
|
|
return (DENY, "Virus Found: $output"); |
14 |
|
|
} |
15 |
|
|
@@ -224,7 +224,7 @@ |
16 |
|
|
} |
17 |
|
|
else { |
18 |
|
|
$transaction->header->add( 'X-Virus-Checked', |
19 |
|
|
- "Checked by ClamAV on " . $self->qp->config("me") ); |
20 |
|
|
+ "Checked by ClamAV on " . $self->qp->config("me"), 0); |
21 |
|
|
} |
22 |
|
|
return (DECLINED); |
23 |
|
|
} |