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 |
|
|
@@ -207,8 +207,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 |
|
|
@@ -219,7 +219,7 @@ |
16 |
|
|
} |
17 |
|
|
|
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 |
|
|
return (DECLINED); |
22 |
|
|
} |
23 |
|
|
|
24 |
|
|
diff -Nur -x '*.orig' -x '*.rej' qpsmtpd-0.40/plugins/virus/clamdscan mezzanine_patched_qpsmtpd-0.40/plugins/virus/clamdscan |
25 |
|
|
--- qpsmtpd-0.40/plugins/virus/clamdscan 2007-06-30 10:49:36.000000000 -0600 |
26 |
|
|
+++ mezzanine_patched_qpsmtpd-0.40/plugins/virus/clamdscan 2007-06-30 10:49:11.000000000 -0600 |
27 |
|
|
@@ -169,14 +169,14 @@ |
28 |
|
|
. "Found: $viruses" ); |
29 |
|
|
} |
30 |
|
|
else { |
31 |
|
|
- $transaction->header->add( 'X-Virus-Found', 'Yes' ); |
32 |
|
|
- $transaction->header->add( 'X-Virus-Details', $viruses ); |
33 |
|
|
+ $transaction->header->add( 'X-Virus-Details', $viruses, 0 ); |
34 |
|
|
+ $transaction->header->add( 'X-Virus-Found', 'Yes', 0 ); |
35 |
|
|
return (DECLINED); |
36 |
|
|
} |
37 |
|
|
} |
38 |
|
|
|
39 |
|
|
$transaction->header->add( 'X-Virus-Checked', |
40 |
|
|
- "Checked by ClamAV on " . $self->qp->config("me") ); |
41 |
|
|
+ "Checked by ClamAV on " . $self->qp->config("me"), 0 ); |
42 |
|
|
|
43 |
|
|
return (DECLINED); |
44 |
|
|
} |