/[smeserver]/rpms/qpsmtpd/sme7/qpsmtpd-0.40-clamav-headers.patch
ViewVC logotype

Contents of /rpms/qpsmtpd/sme7/qpsmtpd-0.40-clamav-headers.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download)
Fri Oct 16 22:49:40 2009 UTC (14 years, 7 months ago) by slords
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
Update to 0.83

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 }

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed