View | Details | Raw Unified | Return to bug 205010
Collapse All | Expand All

(-)mailscanner/Makefile (-5 / +7 lines)
Lines 2-16 Link Here
2
# $FreeBSD: head/mail/mailscanner/Makefile 361961 2014-07-15 16:14:15Z adamw $
2
# $FreeBSD: head/mail/mailscanner/Makefile 361961 2014-07-15 16:14:15Z adamw $
3
3
4
PORTNAME=	MailScanner
4
PORTNAME=	MailScanner
5
PORTVERSION=	4.84.6
5
PORTVERSION=	4.85.2
6
#PORTREVISION=	0
6
#PORTREVISION=	0
7
CATEGORIES=	mail
7
CATEGORIES=	mail
8
MASTER_SITES=	http://www.mailscanner.info/files/4/tar/
8
MASTER_SITES=	https://s3.amazonaws.com/mailscanner/release/v4/tar/
9
DISTNAME=	${PORTNAME}-install-${PORTVERSION}-${PATCHLEVEL}
9
DISTNAME=	${PORTNAME}-${PORTVERSION}-${PATCHLEVEL}
10
10
11
MAINTAINER=	kkobb@skylinecorp.com
11
MAINTAINER=	kkobb@skylinecorp.com
12
COMMENT=	Powerful virus/spam scanning framework for mail gateways
12
COMMENT=	Powerful virus/spam scanning framework for mail gateways
13
13
14
LICENSE=	GPLv2
15
14
BUILD_DEPENDS=	\
16
BUILD_DEPENDS=	\
15
	p5-IO-stringy>=0:${PORTSDIR}/devel/p5-IO-stringy \
17
	p5-IO-stringy>=0:${PORTSDIR}/devel/p5-IO-stringy \
16
	p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \
18
	p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \
Lines 38-44 Link Here
38
40
39
CONFLICTS=	MailScanner-devel-[0-9]*
41
CONFLICTS=	MailScanner-devel-[0-9]*
40
42
41
PATCHLEVEL=	1
43
PATCHLEVEL=	3
42
44
43
USES=		perl5 shebangfix
45
USES=		perl5 shebangfix
44
SHEBANG_FILES=	bin/[^c]* bin/clean* \
46
SHEBANG_FILES=	bin/[^c]* bin/clean* \
Lines 105-111 Link Here
105
SUB_LIST+=	WITHOUT_SPAMASSASSIN_SYMLINK=no
107
SUB_LIST+=	WITHOUT_SPAMASSASSIN_SYMLINK=no
106
.endif
108
.endif
107
109
108
DOC_FILES=	INSTALL.FreeBSD README
110
DOC_FILES=	README
109
ETC_FILES=	MailScanner.conf filename.rules.conf \
111
ETC_FILES=	MailScanner.conf filename.rules.conf \
110
		archives.filename.rules.conf archives.filetype.rules.conf \
112
		archives.filename.rules.conf archives.filetype.rules.conf \
111
		filetype.rules.conf spam.assassin.prefs.conf \
113
		filetype.rules.conf spam.assassin.prefs.conf \
(-)mailscanner/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (MailScanner-install-4.84.6-1.tar.gz) = 566b6e2abf86de1acdff4f7fc5e6112aebab986954532a25f69b9f576ec70077
1
SHA256 (MailScanner-4.85.2-3.tar.gz) = 8e2ca7be98199b226942a31dd48d4f516c9d86c1d402c5ade2858cbe104d2057
2
SIZE (MailScanner-install-4.84.6-1.tar.gz) = 9524836
2
SIZE (MailScanner-4.85.2-3.tar.gz) = 924177
(-)mailscanner/files/CHANGES.port (+4 lines)
Lines 1-3 Link Here
1
Version 4.85.2_3
2
==============
3
- Upgrade to 4.85.2-3
4
1
Version 4.84.6
5
Version 4.84.6
2
==============
6
==============
3
- Upgrade to 4.84.6
7
- Upgrade to 4.84.6
(-)mailscanner/files/patch-bin-cron-update_phishing_sites.cron (-38 lines)
Lines 1-38 Link Here
1
--- ../MailScanner-install-4.50.15.orig/bin/cron/update_phishing_sites.cron	Wed Feb 15 20:02:33 2006
2
+++ bin/cron/update_phishing_sites.cron	Wed Feb 15 20:14:45 2006
3
@@ -1,20 +1,24 @@
4
 #!/bin/bash
5
 
6
-# Insert a random delay up to this value, to spread virus updates round
7
-# the clock. 1800 seconds = 30 minutes.
8
-# Set this to 0 to disable it.
9
-UPDATEMAXDELAY=3600
10
-if [ -f /etc/sysconfig/MailScanner ] ; then
11
-        . /etc/sysconfig/MailScanner
12
-fi
13
-export UPDATEMAXDELAY
14
+# Add the following line to /etc/rc.conf to configure a maximum delay in
15
+# order to spread virus updates round the clock. 1800 seconds = 30 minutes.
16
+# Set this to 0 to disable it
17
+
18
+. /etc/rc.subr
19
+
20
+name="mailscanner"
21
+rcvar=mailscanner_enable
22
+
23
+load_rc_config $name
24
+
25
+: ${mailscanner_updatemaxdelay="600"}
26
 
27
 [ -x /opt/MailScanner/bin/update_phishing_sites ] || exit 0
28
-if [ "x$UPDATEMAXDELAY" = "x0" ]; then
29
+if [ "x${mailscanner_updatemaxdelay}" = "x0" ]; then
30
   :
31
 else
32
-  logger -p mail.info -t update.phishing.sites Delaying cron job up to $UPDATEMAXDELAY seconds
33
-  perl -e "sleep int(rand($UPDATEMAXDELAY));"
34
+  logger -p mail.info -t update.phishing.sites Delaying cron job up to ${mailscanner_updatemaxdelay} seconds
35
+  perl -e "sleep int(rand(${mailscanner_updatemaxdelay}));"
36
 fi
37
 exec /opt/MailScanner/bin/update_phishing_sites > /dev/null 2>&1
38
 exit 0
(-)mailscanner/files/patch-bin-cron-update_virus_scanners.cron (-38 lines)
Lines 1-38 Link Here
1
--- ../MailScanner-install-4.50.15.orig/bin/cron/update_virus_scanners.cron	Wed Feb 15 20:02:33 2006
2
+++ bin/cron/update_virus_scanners.cron	Wed Feb 15 20:11:17 2006
3
@@ -1,20 +1,24 @@
4
 #!/bin/bash
5
 
6
-# Insert a random delay up to this value, to spread virus updates round
7
-# the clock. 1800 seconds = 30 minutes.
8
-# Set this to 0 to disable it.
9
-UPDATEMAXDELAY=600
10
-if [ -f /etc/sysconfig/MailScanner ] ; then
11
-        . /etc/sysconfig/MailScanner
12
-fi
13
-export UPDATEMAXDELAY
14
+# Add the following line to /etc/rc.conf to configure a maximum delay in
15
+# order to spread virus updates round the clock. 1800 seconds = 30 minutes.
16
+# Set this to 0 to disable it
17
+
18
+. /etc/rc.subr
19
+
20
+name="mailscanner"
21
+rcvar=mailscanner_enable
22
+
23
+load_rc_config $name
24
+
25
+: ${mailscanner_updatemaxdelay="600"}
26
 
27
 [ -x /opt/MailScanner/bin/update_virus_scanners ] || exit 0
28
-if [ "x$UPDATEMAXDELAY" = "x0" ]; then
29
+if [ "x${mailscanner_updatemaxdelay}" = "x0" ]; then
30
   :
31
 else
32
-  logger -p mail.info -t update.virus.scanners Delaying cron job up to $UPDATEMAXDELAY seconds
33
-  perl -e "sleep int(rand($UPDATEMAXDELAY));"
34
+  logger -p mail.info -t update.virus.scanners Delaying cron job up to ${mailscanner_updatemaxdelay} seconds
35
+  perl -e "sleep int(rand(${mailscanner_updatemaxdelay}));"
36
 fi
37
 exec /opt/MailScanner/bin/update_virus_scanners
38
 exit 0
(-)mailscanner/files/patch-lib-clamav-wrapper (-12 lines)
Lines 1-12 Link Here
1
--- ./lib/clamav-wrapper.orig	2011-08-20 08:32:02.000000000 -0400
2
+++ ./lib/clamav-wrapper	2012-03-09 08:41:47.000000000 -0500
3
@@ -51,6 +51,9 @@
4
 
5
 # You may want to check this script for bash-isms
6
 
7
+PATH=$PATH:/usr/local/bin
8
+export PATH
9
+
10
 #TempDir="/tmp/clamav.$$"
11
 TempDir=$(mktemp) || { echo "$0: Cannot make name for temporary dir" >&2; exit 1; }
12
 ClamUser="clamav"
(-)mailscanner/files/patch-lib__MailScanner__CustomFunctions__LastSpam.pm (-20 lines)
Lines 1-20 Link Here
1
--- ./lib/MailScanner/CustomFunctions/LastSpam.pm.orig	2011-08-20 08:24:49.000000000 -0400
2
+++ ./lib/MailScanner/CustomFunctions/LastSpam.pm	2014-02-21 04:11:09.000000000 -0500
3
@@ -32,7 +32,6 @@
4
 my $Debug = 0; # Set to 1 to enable debug output to STDERR
5
 #my $tmpfilename = "/tmp/MailScanner.LastSpam.$$.conf"; # Temp MS.conf file
6
 # Temp MS.conf file
7
-my($tmpfh, $tmpfilename) = tempfile("MailScanner.LastSpam.XXXXXX", TMPDIR => 1, UNLINK => 0);
8
 my %modtime = (); # Time domain list magic word file was last changed
9
 my %filename = (); # Map Config option to magic word file
10
 my %magicwords = {}; # Map Config option --> domains --> magic words
11
@@ -550,8 +549,7 @@
12
 sub SetupRuleset {
13
   my($opkeyword) = @_;
14
 
15
-  my $fh = new FileHandle;
16
-  $fh->open("> $tmpfilename") or die "$!";
17
+  my($fh, $tmpfilename) = tempfile("MailScanner.LastSpam.XXXXXX", TMPDIR => 1, UNLINK => 0);
18
   my $rf = $rulesetfilename{$opkeyword};
19
   #print STDERR "RF = $rf\n";
20
   #print STDERR $opkeyword . " = $rf\n";
(-)mailscanner/files/patch-lib__MailScanner__CustomFunctions__Ruleset-from-Function.pm (-20 lines)
Lines 1-20 Link Here
1
--- ./lib/MailScanner/CustomFunctions/Ruleset-from-Function.pm.orig	2011-08-20 08:25:42.000000000 -0400
2
+++ ./lib/MailScanner/CustomFunctions/Ruleset-from-Function.pm	2014-02-21 04:16:55.000000000 -0500
3
@@ -31,7 +31,6 @@
4
 
5
 my $Debug = 0; # Set to 1 to enable debug output to STDERR
6
 #my $tmpfilename = "/tmp/MailScanner.$$.conf"; # Temp MS.conf file
7
-my($tmpfh, $tmpfilename) = tempfile("MailScanner.XXXXXX", TMPDIR => 1, UNLINK => 0);
8
 
9
 
10
 
11
@@ -60,8 +59,7 @@
12
   my $option = 'virusscanning'; # External (MailScanner.conf-version)
13
 
14
   # Make the temporary 1-line MailScanner.conf file, use it and delete it
15
-  my $fh = new FileHandle;
16
-  $fh->open("> $tmpfilename") or die "$!";
17
+  my($fh, $tmpfilename) = tempfile("MailScanner.XXXXXX", TMPDIR => 1, UNLINK => 0);
18
   print $fh $option . " = $ruleset\n";
19
   $fh->close;
20
 
(-)mailscanner/files/patch-lib__MailScanner__TNEF.pm (-110 lines)
Lines 1-110 Link Here
1
--- ./lib/MailScanner/TNEF.pm.orig	2013-06-17 09:29:16.000000000 -0400
2
+++ ./lib/MailScanner/TNEF.pm	2014-02-21 04:03:15.000000000 -0500
3
@@ -229,18 +229,25 @@
4
 
5
   # Create the subdir to unpack it into
6
   #my $unpackdir = "tnef.$$";
7
-  my ($tmpfh, $unpackdir) = tempfile("tnefXXXXXX", TMPDIR => $dir, UNLINK => 0);
8
-  # This line shouldn't be here any more! $dir =~ s,^.*/,,;
9
-  $unpackdir = $message->MakeNameSafe($unpackdir, $dir);
10
-  unless (mkdir "$dir/$unpackdir", 0777) {
11
+  my $unpackdir = tempdir("tnefXXXXXX", DIR => $dir);
12
+  unless (-d $unpackdir) {
13
     MailScanner::Log::WarnLog("Trying to unpack %s in message %s, could not create subdirectory %s, failed to unpack TNEF message", $tnefname, $message->{id},
14
-                              "$dir/$unpackdir");
15
+                              "$unpackdir");
16
     return 0;
17
   }
18
-  chmod 0700, "$dir/$unpackdir";
19
+  # Convert Incoming Work Permissions to an octal value and add search.
20
+  my $perms = oct(sprintf("%s", MailScanner::Config::Value('workperms')))
21
+    | 0111;
22
+  chmod $perms, $unpackdir;
23
+  # Try to set Incoming Work User and Group.
24
+  my $uname = MailScanner::Config::Value('workuser');
25
+  my $gname = MailScanner::Config::Value('workgroup');
26
+  my $uid = $uname?getpwnam($uname):-1;
27
+  my $gid = $gname?getgrnam($gname):-1;
28
+  chown $uid, $gid, $unpackdir;
29
 
30
   my $cmd = MailScanner::Config::Value('tnefexpander') .
31
-            " -f $dir/$tnefname -C $dir/$unpackdir --overwrite";
32
+            " -f $dir/$tnefname -C $unpackdir --overwrite";
33
 
34
   my($kid);
35
   my($TimedOut, $PipeReturn, $pid);
36
@@ -311,15 +318,15 @@
37
 
38
     unless (MailScanner::Config::Value('replacetnef',$message) =~ /[12]/) {
39
       # Just need to move all the unpacked files into the main attachments dir
40
-      my $dirh = new DirHandle "$dir/$unpackdir";
41
+      my $dirh = new DirHandle "$$unpackdir";
42
       return 0 unless defined $dirh;
43
       while (defined(my $unpacked = $dirh->read)) {
44
-        next unless -f "$dir/$unpackdir/$unpacked";
45
+        next unless -f "$$unpackdir/$unpacked";
46
         # Add a 't' to the safename to mark it as a tnef member.
47
         my $safe = $message->MakeNameSafe('t'.$unpacked, $dir);
48
         # This will cause big problems as $safe has a type, and shouldn't!
49
         $message->{file2parent}{$safe} = $tnefname;
50
-        my $name1 = "$dir/$unpackdir/$unpacked";
51
+        my $name1 = "$unpackdir/$unpacked";
52
         $name1 =~ /(.*)/;
53
         $name1 = $1;
54
         my $name2 = "$dir/$safe";
55
@@ -333,19 +340,21 @@
56
         $safe =~ s#^(.*/)([^/])([^/]+)$#$1$3#; # I assert $2 will equal 't'.
57
         $message->{file2parent}{$safe} = $tnefname;
58
       }
59
-      rmdir "$dir/$unpackdir"; # Directory should be empty now
60
+      # The following may result in a warning from a virus scanner that
61
+      # tries to lstat the directory, but it was empty so it can be ignored.
62
+      rmdir "$$unpackdir"; # Directory should be empty now
63
       return 1;
64
     }
65
     #print STDERR "In TNEF External Decoder\n";
66
 
67
-    my $dirh = new DirHandle "$dir/$unpackdir";
68
+    my $dirh = new DirHandle "$unpackdir";
69
     return 0 unless defined $dirh;
70
     my($type, $encoding);
71
     $message->{entity}->make_multipart;
72
     my($safename, @replacements, $unpacked);
73
     while (defined($unpacked = $dirh->read)) {
74
-      #print STDERR "Directory entry is \"$unpacked\" in \"$dir/$unpackdir\"\n";
75
-      next unless -f "$dir/$unpackdir/$unpacked";
76
+      #print STDERR "Directory entry is \"$unpacked\" in \"$unpackdir\"\n";
77
+      next unless -f "$unpackdir/$unpacked";
78
       # Add a 't' to the safename to mark it as a tnef member.
79
       $safename = $message->MakeNameSafe('t'.$unpacked, $dir);
80
       if (/^msg[\d-]+\.txt$/) {
81
@@ -353,15 +362,15 @@
82
       } else {
83
         ($type, $encoding) = ("application/octet-stream", "base64");
84
       }
85
-      #print STDERR "Renaming '$dir/$unpackdir/$unpacked' to '$dir/$safename'\n";
86
-      my $oldname = "$dir/$unpackdir/$unpacked";
87
+      #print STDERR "Renaming '$unpackdir/$unpacked' to '$dir/$safename'\n";
88
+      my $oldname = "$unpackdir/$unpacked";
89
       my $newname = "$dir/$safename";
90
       $oldname =~ /^(.*)$/;
91
       $oldname = $1;
92
       $newname =~ /^(.*)$/;
93
       $newname = $1;
94
       rename $oldname, $newname;
95
-      #rename "$dir/$unpackdir/$unpacked", "$dir/$safename";
96
+      #rename "$unpackdir/$unpacked", "$dir/$safename";
97
       # JKF 20090421 CHMOD, then CHOWN and CHGRP it if necessary.
98
       chmod $perms, $newname;
99
       #chmod $perms, "$dir/$safename";
100
@@ -381,7 +390,9 @@
101
     $message->{bodymodified} = 1;
102
     $message->{foundtnefattachments} = 1;
103
     undef $dirh;
104
-    rmdir "$dir/$unpackdir"; # Directory should be empty now
105
+    # The following may result in a warning from a virus scanner that
106
+    # tries to lstat the directory, but it was empty so it can be ignored.
107
+    rmdir "$unpackdir"; # Directory should be empty now
108
     #$message->{entity}->dump_skeleton();
109
 
110
     MailScanner::Log::InfoLog("Message %s added TNEF contents %s",
(-)mailscanner/files/patch-lib_clamav-wrapper (+12 lines)
Line 0 Link Here
1
--- lib/clamav-wrapper.orig	2015-12-04 06:27:18 UTC
2
+++ lib/clamav-wrapper
3
@@ -51,6 +51,9 @@
4
 
5
 # You may want to check this script for bash-isms
6
 
7
++PATH=$PATH:/usr/local/bin
8
++export PATH
9
+
10
 #TempDir="/tmp/clamav.$$"
11
 TempDir=$(mktemp -t tmp) || { echo "$0: Cannot make name for temporary dir" >&2; exit 1; }
12
 ClamUser="clamav"
(-)mailscanner/pkg-descr (-1 / +1 lines)
Lines 20-23 Link Here
20
quality open source software, leading to a system that can be trusted for 
20
quality open source software, leading to a system that can be trusted for 
21
performance and reliability. 
21
performance and reliability. 
22
22
23
WWW:	http://www.mailscanner.info
23
WWW: http://www.mailscanner.info
(-)mailscanner/pkg-plist (-83 / +95 lines)
Lines 1-20 Link Here
1
%%ETCDIR%%/MailScanner.conf.sample
1
%%ETCDIR%%/archives.filename.rules.conf.sample
2
%%ETCDIR%%/archives.filename.rules.conf.sample
2
%%ETCDIR%%/archives.filetype.rules.conf.sample
3
%%ETCDIR%%/archives.filetype.rules.conf.sample
4
%%ETCDIR%%/conf.d/README
3
%%ETCDIR%%/country.domains.conf.sample
5
%%ETCDIR%%/country.domains.conf.sample
4
%%ETCDIR%%/MailScanner.conf.sample
5
%%ETCDIR%%/filename.rules.conf.sample
6
%%ETCDIR%%/filename.rules.conf.sample
6
%%ETCDIR%%/filetype.rules.conf.sample
7
%%ETCDIR%%/filetype.rules.conf.sample
7
%%ETCDIR%%/conf.d/README
8
%%ETCDIR%%/mcp/10_example.cf.sample
8
%%ETCDIR%%/mcp/10_example.cf.sample
9
%%ETCDIR%%/mcp/mcp.spam.assassin.prefs.conf.sample
9
%%ETCDIR%%/mcp/mcp.spam.assassin.prefs.conf.sample
10
%%ETCDIR%%/mcp/v320.pre.sample
10
%%ETCDIR%%/mcp/v320.pre.sample
11
%%ETCDIR%%/phishing.bad.sites.conf.sample
12
%%ETCDIR%%/phishing.safe.sites.conf.sample
11
%%ETCDIR%%/rules/EXAMPLES
13
%%ETCDIR%%/rules/EXAMPLES
12
%%ETCDIR%%/rules/README
14
%%ETCDIR%%/rules/README
13
%%ETCDIR%%/rules/bounce.rules.sample
15
%%ETCDIR%%/rules/bounce.rules.sample
14
%%ETCDIR%%/rules/max.message.size.rules.sample
16
%%ETCDIR%%/rules/max.message.size.rules.sample
15
%%ETCDIR%%/rules/spam.whitelist.rules.sample
17
%%ETCDIR%%/rules/spam.whitelist.rules.sample
16
%%ETCDIR%%/phishing.bad.sites.conf.sample
17
%%ETCDIR%%/phishing.safe.sites.conf.sample
18
%%ETCDIR%%/spam.assassin.prefs.conf.sample
18
%%ETCDIR%%/spam.assassin.prefs.conf.sample
19
%%ETCDIR%%/spam.lists.conf.sample
19
%%ETCDIR%%/spam.lists.conf.sample
20
%%ETCDIR%%/virus.scanners.conf.sample
20
%%ETCDIR%%/virus.scanners.conf.sample
Lines 26-38 Link Here
26
lib/MailScanner/MailScanner/ConfigSQL.pm
26
lib/MailScanner/MailScanner/ConfigSQL.pm
27
lib/MailScanner/MailScanner/CustomConfig.pm
27
lib/MailScanner/MailScanner/CustomConfig.pm
28
lib/MailScanner/MailScanner/CustomFunctions/CustomAction.pm
28
lib/MailScanner/MailScanner/CustomFunctions/CustomAction.pm
29
lib/MailScanner/MailScanner/CustomFunctions/GenericSpamScanner.pm
30
lib/MailScanner/MailScanner/CustomFunctions/MyExample.pm
31
lib/MailScanner/MailScanner/CustomFunctions/DavidHooton.pm
29
lib/MailScanner/MailScanner/CustomFunctions/DavidHooton.pm
32
lib/MailScanner/MailScanner/CustomFunctions/ZMRouterDirHash.pm
30
lib/MailScanner/MailScanner/CustomFunctions/GenericSpamScanner.pm
33
lib/MailScanner/MailScanner/CustomFunctions/SpamWhitelist.pm
34
lib/MailScanner/MailScanner/CustomFunctions/LastSpam.pm
31
lib/MailScanner/MailScanner/CustomFunctions/LastSpam.pm
32
lib/MailScanner/MailScanner/CustomFunctions/MyExample.pm
35
lib/MailScanner/MailScanner/CustomFunctions/Ruleset-from-Function.pm
33
lib/MailScanner/MailScanner/CustomFunctions/Ruleset-from-Function.pm
34
lib/MailScanner/MailScanner/CustomFunctions/SpamWhitelist.pm
35
lib/MailScanner/MailScanner/CustomFunctions/ZMRouterDirHash.pm
36
lib/MailScanner/MailScanner/Exim.pm
36
lib/MailScanner/MailScanner/Exim.pm
37
lib/MailScanner/MailScanner/EximDiskStore.pm
37
lib/MailScanner/MailScanner/EximDiskStore.pm
38
lib/MailScanner/MailScanner/FileInto.pm
38
lib/MailScanner/MailScanner/FileInto.pm
Lines 64-107 Link Here
64
lib/MailScanner/MailScanner/WorkArea.pm
64
lib/MailScanner/MailScanner/WorkArea.pm
65
lib/MailScanner/MailScanner/ZMDiskStore.pm
65
lib/MailScanner/MailScanner/ZMDiskStore.pm
66
lib/MailScanner/MailScanner/ZMailer.pm
66
lib/MailScanner/MailScanner/ZMailer.pm
67
libexec/MailScanner/analyse_SpamAssassin_cache
68
libexec/MailScanner/clean.SA.cache
69
libexec/MailScanner/clean.quarantine
70
libexec/MailScanner/mailscanner_create_locks
71
libexec/MailScanner/processing_messages_alert
72
libexec/MailScanner/Quick.Peek
67
libexec/MailScanner/Quick.Peek
73
libexec/MailScanner/update_bad_phishing_emails
68
libexec/MailScanner/analyse_SpamAssassin_cache
74
libexec/MailScanner/update_phishing_sites
75
libexec/MailScanner/update_bad_phishing_sites
76
libexec/MailScanner/update_bad_phishing_sites.cron
77
libexec/MailScanner/update_phishing_sites.cron
78
libexec/MailScanner/update_virus_scanners
79
libexec/MailScanner/update_virus_scanners.cron
80
libexec/MailScanner/update_spamassassin
81
libexec/MailScanner/update_spamassassin.cron
82
libexec/MailScanner/antivir-autoupdate.sample
69
libexec/MailScanner/antivir-autoupdate.sample
83
libexec/MailScanner/antivir-wrapper.sample
70
libexec/MailScanner/antivir-wrapper.sample
71
libexec/MailScanner/avast-autoupdate.sample
84
libexec/MailScanner/avast-wrapper.sample
72
libexec/MailScanner/avast-wrapper.sample
85
libexec/MailScanner/avastd-wrapper.sample
73
libexec/MailScanner/avastd-wrapper.sample
86
libexec/MailScanner/avast-autoupdate.sample
87
libexec/MailScanner/avg-autoupdate.sample
74
libexec/MailScanner/avg-autoupdate.sample
88
libexec/MailScanner/avg-wrapper.sample
75
libexec/MailScanner/avg-wrapper.sample
89
libexec/MailScanner/bitdefender-autoupdate.sample
76
libexec/MailScanner/bitdefender-autoupdate.sample
90
libexec/MailScanner/bitdefender-wrapper.sample
77
libexec/MailScanner/bitdefender-wrapper.sample
91
libexec/MailScanner/clamav-autoupdate.sample
78
libexec/MailScanner/clamav-autoupdate.sample
92
libexec/MailScanner/clamav-wrapper.sample
79
libexec/MailScanner/clamav-wrapper.sample
80
libexec/MailScanner/clean.SA.cache
81
libexec/MailScanner/clean.quarantine
93
libexec/MailScanner/command-wrapper.sample
82
libexec/MailScanner/command-wrapper.sample
94
libexec/MailScanner/css-autoupdate.sample
83
libexec/MailScanner/css-autoupdate.sample
95
libexec/MailScanner/css-wrapper.sample
84
libexec/MailScanner/css-wrapper.sample
96
libexec/MailScanner/drweb-wrapper.sample
85
libexec/MailScanner/drweb-wrapper.sample
97
libexec/MailScanner/esets-wrapper.sample
98
libexec/MailScanner/esets-autoupdate.sample
86
libexec/MailScanner/esets-autoupdate.sample
87
libexec/MailScanner/esets-wrapper.sample
99
libexec/MailScanner/etrust-autoupdate.sample
88
libexec/MailScanner/etrust-autoupdate.sample
100
libexec/MailScanner/etrust-wrapper.sample
89
libexec/MailScanner/etrust-wrapper.sample
90
libexec/MailScanner/f-prot-6-autoupdate.sample
91
libexec/MailScanner/f-prot-6-wrapper.sample
101
libexec/MailScanner/f-prot-autoupdate.sample
92
libexec/MailScanner/f-prot-autoupdate.sample
102
libexec/MailScanner/f-prot-wrapper.sample
93
libexec/MailScanner/f-prot-wrapper.sample
103
libexec/MailScanner/f-prot-6-wrapper.sample
104
libexec/MailScanner/f-prot-6-autoupdate.sample
105
libexec/MailScanner/f-secure-autoupdate.sample
94
libexec/MailScanner/f-secure-autoupdate.sample
106
libexec/MailScanner/f-secure-wrapper.sample
95
libexec/MailScanner/f-secure-wrapper.sample
107
libexec/MailScanner/generic-autoupdate.sample
96
libexec/MailScanner/generic-autoupdate.sample
Lines 112-117 Link Here
112
libexec/MailScanner/kaspersky-autoupdate.sample
101
libexec/MailScanner/kaspersky-autoupdate.sample
113
libexec/MailScanner/kaspersky-wrapper.sample
102
libexec/MailScanner/kaspersky-wrapper.sample
114
libexec/MailScanner/kavdaemonclient-wrapper.sample
103
libexec/MailScanner/kavdaemonclient-wrapper.sample
104
libexec/MailScanner/mailscanner_create_locks
115
libexec/MailScanner/mcafee-autoupdate.sample
105
libexec/MailScanner/mcafee-autoupdate.sample
116
libexec/MailScanner/mcafee-wrapper.sample
106
libexec/MailScanner/mcafee-wrapper.sample
117
libexec/MailScanner/mcafee6-autoupdate.sample
107
libexec/MailScanner/mcafee6-autoupdate.sample
Lines 120-127 Link Here
120
libexec/MailScanner/nod32-wrapper.sample
110
libexec/MailScanner/nod32-wrapper.sample
121
libexec/MailScanner/norman-autoupdate.sample
111
libexec/MailScanner/norman-autoupdate.sample
122
libexec/MailScanner/norman-wrapper.sample
112
libexec/MailScanner/norman-wrapper.sample
123
libexec/MailScanner/panda-wrapper.sample
124
libexec/MailScanner/panda-autoupdate.sample
113
libexec/MailScanner/panda-autoupdate.sample
114
libexec/MailScanner/panda-wrapper.sample
115
libexec/MailScanner/processing_messages_alert
125
libexec/MailScanner/rav-autoupdate.sample
116
libexec/MailScanner/rav-autoupdate.sample
126
libexec/MailScanner/rav-wrapper.sample
117
libexec/MailScanner/rav-wrapper.sample
127
libexec/MailScanner/sophos-autoupdate.sample
118
libexec/MailScanner/sophos-autoupdate.sample
Lines 130-146 Link Here
130
libexec/MailScanner/symscanengine-wrapper.sample
121
libexec/MailScanner/symscanengine-wrapper.sample
131
libexec/MailScanner/trend-autoupdate.sample
122
libexec/MailScanner/trend-autoupdate.sample
132
libexec/MailScanner/trend-wrapper.sample
123
libexec/MailScanner/trend-wrapper.sample
124
libexec/MailScanner/update_bad_phishing_emails
125
libexec/MailScanner/update_bad_phishing_sites
126
libexec/MailScanner/update_bad_phishing_sites.cron
127
libexec/MailScanner/update_phishing_sites
128
libexec/MailScanner/update_phishing_sites.cron
129
libexec/MailScanner/update_spamassassin
130
libexec/MailScanner/update_spamassassin.cron
131
libexec/MailScanner/update_virus_scanners
132
libexec/MailScanner/update_virus_scanners.cron
133
libexec/MailScanner/vba32-autoupdate.sample
133
libexec/MailScanner/vba32-autoupdate.sample
134
libexec/MailScanner/vba32-wrapper.sample
134
libexec/MailScanner/vba32-wrapper.sample
135
libexec/MailScanner/vexira-autoupdate.sample
135
libexec/MailScanner/vexira-autoupdate.sample
136
libexec/MailScanner/vexira-wrapper.sample
136
libexec/MailScanner/vexira-wrapper.sample
137
man/man8/MailScanner.8.gz
137
man/man8/MailScanner.8.gz
138
man/man8/mailscanner.8.gz
138
man/man8/mailscanner.8.gz
139
sbin/mailscanner
140
sbin/MailScanner
139
sbin/MailScanner
141
%%DATADIR%%/reports/ca/rejection.report.txt.sample
140
sbin/mailscanner
142
%%DATADIR%%/reports/ca/deleted.content.message.txt.sample
141
%%DATADIR%%/reports/ca/deleted.content.message.txt.sample
143
%%DATADIR%%/reports/ca/deleted.filename.message.txt.sample
142
%%DATADIR%%/reports/ca/deleted.filename.message.txt.sample
143
%%DATADIR%%/reports/ca/deleted.size.message.txt.sample
144
%%DATADIR%%/reports/ca/deleted.virus.message.txt.sample
144
%%DATADIR%%/reports/ca/deleted.virus.message.txt.sample
145
%%DATADIR%%/reports/ca/disinfected.report.txt.sample
145
%%DATADIR%%/reports/ca/disinfected.report.txt.sample
146
%%DATADIR%%/reports/ca/inline.sig.html.sample
146
%%DATADIR%%/reports/ca/inline.sig.html.sample
Lines 149-172 Link Here
149
%%DATADIR%%/reports/ca/inline.warning.html.sample
149
%%DATADIR%%/reports/ca/inline.warning.html.sample
150
%%DATADIR%%/reports/ca/inline.warning.txt.sample
150
%%DATADIR%%/reports/ca/inline.warning.txt.sample
151
%%DATADIR%%/reports/ca/languages.conf.sample
151
%%DATADIR%%/reports/ca/languages.conf.sample
152
%%DATADIR%%/reports/ca/languages.conf.strings.sample
152
%%DATADIR%%/reports/ca/recipient.mcp.report.txt.sample
153
%%DATADIR%%/reports/ca/recipient.mcp.report.txt.sample
153
%%DATADIR%%/reports/ca/recipient.spam.report.txt.sample
154
%%DATADIR%%/reports/ca/recipient.spam.report.txt.sample
155
%%DATADIR%%/reports/ca/rejection.report.txt.sample
154
%%DATADIR%%/reports/ca/sender.content.report.txt.sample
156
%%DATADIR%%/reports/ca/sender.content.report.txt.sample
155
%%DATADIR%%/reports/ca/sender.error.report.txt.sample
157
%%DATADIR%%/reports/ca/sender.error.report.txt.sample
156
%%DATADIR%%/reports/ca/sender.filename.report.txt.sample
158
%%DATADIR%%/reports/ca/sender.filename.report.txt.sample
157
%%DATADIR%%/reports/ca/sender.mcp.report.txt.sample
159
%%DATADIR%%/reports/ca/sender.mcp.report.txt.sample
160
%%DATADIR%%/reports/ca/sender.size.report.txt.sample
158
%%DATADIR%%/reports/ca/sender.spam.rbl.report.txt.sample
161
%%DATADIR%%/reports/ca/sender.spam.rbl.report.txt.sample
159
%%DATADIR%%/reports/ca/sender.spam.report.txt.sample
162
%%DATADIR%%/reports/ca/sender.spam.report.txt.sample
160
%%DATADIR%%/reports/ca/sender.spam.sa.report.txt.sample
163
%%DATADIR%%/reports/ca/sender.spam.sa.report.txt.sample
161
%%DATADIR%%/reports/ca/sender.virus.report.txt.sample
164
%%DATADIR%%/reports/ca/sender.virus.report.txt.sample
162
%%DATADIR%%/reports/ca/stored.content.message.txt.sample
165
%%DATADIR%%/reports/ca/stored.content.message.txt.sample
163
%%DATADIR%%/reports/ca/stored.filename.message.txt.sample
166
%%DATADIR%%/reports/ca/stored.filename.message.txt.sample
164
%%DATADIR%%/reports/ca/stored.virus.message.txt.sample
165
%%DATADIR%%/reports/ca/deleted.size.message.txt.sample
166
%%DATADIR%%/reports/ca/sender.size.report.txt.sample
167
%%DATADIR%%/reports/ca/stored.size.message.txt.sample
167
%%DATADIR%%/reports/ca/stored.size.message.txt.sample
168
%%DATADIR%%/reports/ca/stored.virus.message.txt.sample
168
%%DATADIR%%/reports/cy+en/deleted.content.message.txt.sample
169
%%DATADIR%%/reports/cy+en/deleted.content.message.txt.sample
169
%%DATADIR%%/reports/cy+en/deleted.filename.message.txt.sample
170
%%DATADIR%%/reports/cy+en/deleted.filename.message.txt.sample
171
%%DATADIR%%/reports/cy+en/deleted.size.message.txt.sample
170
%%DATADIR%%/reports/cy+en/deleted.virus.message.txt.sample
172
%%DATADIR%%/reports/cy+en/deleted.virus.message.txt.sample
171
%%DATADIR%%/reports/cy+en/disinfected.report.txt.sample
173
%%DATADIR%%/reports/cy+en/disinfected.report.txt.sample
172
%%DATADIR%%/reports/cy+en/inline.sig.html.sample
174
%%DATADIR%%/reports/cy+en/inline.sig.html.sample
Lines 175-199 Link Here
175
%%DATADIR%%/reports/cy+en/inline.warning.html.sample
177
%%DATADIR%%/reports/cy+en/inline.warning.html.sample
176
%%DATADIR%%/reports/cy+en/inline.warning.txt.sample
178
%%DATADIR%%/reports/cy+en/inline.warning.txt.sample
177
%%DATADIR%%/reports/cy+en/languages.conf.sample
179
%%DATADIR%%/reports/cy+en/languages.conf.sample
180
%%DATADIR%%/reports/cy+en/languages.conf.strings.sample
178
%%DATADIR%%/reports/cy+en/recipient.mcp.report.txt.sample
181
%%DATADIR%%/reports/cy+en/recipient.mcp.report.txt.sample
179
%%DATADIR%%/reports/cy+en/recipient.spam.report.txt.sample
182
%%DATADIR%%/reports/cy+en/recipient.spam.report.txt.sample
180
%%DATADIR%%/reports/cy+en/sender.content.report.txt.sample
181
%%DATADIR%%/reports/cy+en/rejection.report.txt.sample
183
%%DATADIR%%/reports/cy+en/rejection.report.txt.sample
184
%%DATADIR%%/reports/cy+en/sender.content.report.txt.sample
182
%%DATADIR%%/reports/cy+en/sender.error.report.txt.sample
185
%%DATADIR%%/reports/cy+en/sender.error.report.txt.sample
183
%%DATADIR%%/reports/cy+en/sender.filename.report.txt.sample
186
%%DATADIR%%/reports/cy+en/sender.filename.report.txt.sample
184
%%DATADIR%%/reports/cy+en/sender.mcp.report.txt.sample
187
%%DATADIR%%/reports/cy+en/sender.mcp.report.txt.sample
188
%%DATADIR%%/reports/cy+en/sender.size.report.txt.sample
185
%%DATADIR%%/reports/cy+en/sender.spam.rbl.report.txt.sample
189
%%DATADIR%%/reports/cy+en/sender.spam.rbl.report.txt.sample
186
%%DATADIR%%/reports/cy+en/sender.spam.report.txt.sample
190
%%DATADIR%%/reports/cy+en/sender.spam.report.txt.sample
187
%%DATADIR%%/reports/cy+en/sender.spam.sa.report.txt.sample
191
%%DATADIR%%/reports/cy+en/sender.spam.sa.report.txt.sample
188
%%DATADIR%%/reports/cy+en/sender.virus.report.txt.sample
192
%%DATADIR%%/reports/cy+en/sender.virus.report.txt.sample
189
%%DATADIR%%/reports/cy+en/stored.content.message.txt.sample
193
%%DATADIR%%/reports/cy+en/stored.content.message.txt.sample
190
%%DATADIR%%/reports/cy+en/stored.filename.message.txt.sample
194
%%DATADIR%%/reports/cy+en/stored.filename.message.txt.sample
191
%%DATADIR%%/reports/cy+en/stored.virus.message.txt.sample
192
%%DATADIR%%/reports/cy+en/deleted.size.message.txt.sample
193
%%DATADIR%%/reports/cy+en/sender.size.report.txt.sample
194
%%DATADIR%%/reports/cy+en/stored.size.message.txt.sample
195
%%DATADIR%%/reports/cy+en/stored.size.message.txt.sample
196
%%DATADIR%%/reports/cy+en/stored.virus.message.txt.sample
195
%%DATADIR%%/reports/cz/deleted.content.message.txt.sample
197
%%DATADIR%%/reports/cz/deleted.content.message.txt.sample
196
%%DATADIR%%/reports/cz/deleted.filename.message.txt.sample
198
%%DATADIR%%/reports/cz/deleted.filename.message.txt.sample
199
%%DATADIR%%/reports/cz/deleted.size.message.txt.sample
197
%%DATADIR%%/reports/cz/deleted.virus.message.txt.sample
200
%%DATADIR%%/reports/cz/deleted.virus.message.txt.sample
198
%%DATADIR%%/reports/cz/disinfected.report.txt.sample
201
%%DATADIR%%/reports/cz/disinfected.report.txt.sample
199
%%DATADIR%%/reports/cz/inline.sig.html.sample
202
%%DATADIR%%/reports/cz/inline.sig.html.sample
Lines 202-227 Link Here
202
%%DATADIR%%/reports/cz/inline.warning.html.sample
205
%%DATADIR%%/reports/cz/inline.warning.html.sample
203
%%DATADIR%%/reports/cz/inline.warning.txt.sample
206
%%DATADIR%%/reports/cz/inline.warning.txt.sample
204
%%DATADIR%%/reports/cz/languages.conf.sample
207
%%DATADIR%%/reports/cz/languages.conf.sample
208
%%DATADIR%%/reports/cz/languages.conf.strings.sample
205
%%DATADIR%%/reports/cz/recipient.mcp.report.txt.sample
209
%%DATADIR%%/reports/cz/recipient.mcp.report.txt.sample
206
%%DATADIR%%/reports/cz/recipient.spam.report.txt.sample
210
%%DATADIR%%/reports/cz/recipient.spam.report.txt.sample
207
%%DATADIR%%/reports/cz/sender.content.report.txt.sample
208
%%DATADIR%%/reports/cz/rejection.report.txt.sample
211
%%DATADIR%%/reports/cz/rejection.report.txt.sample
212
%%DATADIR%%/reports/cz/sender.content.report.txt.sample
209
%%DATADIR%%/reports/cz/sender.error.report.txt.sample
213
%%DATADIR%%/reports/cz/sender.error.report.txt.sample
210
%%DATADIR%%/reports/cz/sender.filename.report.txt.sample
214
%%DATADIR%%/reports/cz/sender.filename.report.txt.sample
211
%%DATADIR%%/reports/cz/sender.mcp.report.txt.sample
215
%%DATADIR%%/reports/cz/sender.mcp.report.txt.sample
216
%%DATADIR%%/reports/cz/sender.size.report.txt.sample
212
%%DATADIR%%/reports/cz/sender.spam.rbl.report.txt.sample
217
%%DATADIR%%/reports/cz/sender.spam.rbl.report.txt.sample
213
%%DATADIR%%/reports/cz/sender.spam.report.txt.sample
218
%%DATADIR%%/reports/cz/sender.spam.report.txt.sample
214
%%DATADIR%%/reports/cz/sender.spam.sa.report.txt.sample
219
%%DATADIR%%/reports/cz/sender.spam.sa.report.txt.sample
215
%%DATADIR%%/reports/cz/sender.virus.report.txt.sample
220
%%DATADIR%%/reports/cz/sender.virus.report.txt.sample
216
%%DATADIR%%/reports/cz/stored.content.message.txt.sample
221
%%DATADIR%%/reports/cz/stored.content.message.txt.sample
217
%%DATADIR%%/reports/cz/stored.filename.message.txt.sample
222
%%DATADIR%%/reports/cz/stored.filename.message.txt.sample
218
%%DATADIR%%/reports/cz/stored.virus.message.txt.sample
219
%%DATADIR%%/reports/cz/deleted.size.message.txt.sample
220
%%DATADIR%%/reports/cz/sender.size.report.txt.sample
221
%%DATADIR%%/reports/cz/stored.size.message.txt.sample
223
%%DATADIR%%/reports/cz/stored.size.message.txt.sample
222
%%DATADIR%%/reports/de/README.1ST.sample
224
%%DATADIR%%/reports/cz/stored.virus.message.txt.sample
223
%%DATADIR%%/reports/de/deleted.content.message.txt.sample
225
%%DATADIR%%/reports/de/deleted.content.message.txt.sample
224
%%DATADIR%%/reports/de/deleted.filename.message.txt.sample
226
%%DATADIR%%/reports/de/deleted.filename.message.txt.sample
227
%%DATADIR%%/reports/de/deleted.size.message.txt.sample
225
%%DATADIR%%/reports/de/deleted.virus.message.txt.sample
228
%%DATADIR%%/reports/de/deleted.virus.message.txt.sample
226
%%DATADIR%%/reports/de/disinfected.report.txt.sample
229
%%DATADIR%%/reports/de/disinfected.report.txt.sample
227
%%DATADIR%%/reports/de/inline.sig.html.sample
230
%%DATADIR%%/reports/de/inline.sig.html.sample
Lines 230-254 Link Here
230
%%DATADIR%%/reports/de/inline.warning.html.sample
233
%%DATADIR%%/reports/de/inline.warning.html.sample
231
%%DATADIR%%/reports/de/inline.warning.txt.sample
234
%%DATADIR%%/reports/de/inline.warning.txt.sample
232
%%DATADIR%%/reports/de/languages.conf.sample
235
%%DATADIR%%/reports/de/languages.conf.sample
236
%%DATADIR%%/reports/de/languages.conf.strings.sample
233
%%DATADIR%%/reports/de/recipient.mcp.report.txt.sample
237
%%DATADIR%%/reports/de/recipient.mcp.report.txt.sample
234
%%DATADIR%%/reports/de/recipient.spam.report.txt.sample
238
%%DATADIR%%/reports/de/recipient.spam.report.txt.sample
235
%%DATADIR%%/reports/de/sender.content.report.txt.sample
236
%%DATADIR%%/reports/de/rejection.report.txt.sample
239
%%DATADIR%%/reports/de/rejection.report.txt.sample
240
%%DATADIR%%/reports/de/sender.content.report.txt.sample
237
%%DATADIR%%/reports/de/sender.error.report.txt.sample
241
%%DATADIR%%/reports/de/sender.error.report.txt.sample
238
%%DATADIR%%/reports/de/sender.filename.report.txt.sample
242
%%DATADIR%%/reports/de/sender.filename.report.txt.sample
239
%%DATADIR%%/reports/de/sender.mcp.report.txt.sample
243
%%DATADIR%%/reports/de/sender.mcp.report.txt.sample
244
%%DATADIR%%/reports/de/sender.size.report.txt.sample
240
%%DATADIR%%/reports/de/sender.spam.rbl.report.txt.sample
245
%%DATADIR%%/reports/de/sender.spam.rbl.report.txt.sample
241
%%DATADIR%%/reports/de/sender.spam.report.txt.sample
246
%%DATADIR%%/reports/de/sender.spam.report.txt.sample
242
%%DATADIR%%/reports/de/sender.spam.sa.report.txt.sample
247
%%DATADIR%%/reports/de/sender.spam.sa.report.txt.sample
243
%%DATADIR%%/reports/de/sender.virus.report.txt.sample
248
%%DATADIR%%/reports/de/sender.virus.report.txt.sample
244
%%DATADIR%%/reports/de/stored.content.message.txt.sample
249
%%DATADIR%%/reports/de/stored.content.message.txt.sample
245
%%DATADIR%%/reports/de/stored.filename.message.txt.sample
250
%%DATADIR%%/reports/de/stored.filename.message.txt.sample
246
%%DATADIR%%/reports/de/stored.virus.message.txt.sample
247
%%DATADIR%%/reports/de/deleted.size.message.txt.sample
248
%%DATADIR%%/reports/de/sender.size.report.txt.sample
249
%%DATADIR%%/reports/de/stored.size.message.txt.sample
251
%%DATADIR%%/reports/de/stored.size.message.txt.sample
252
%%DATADIR%%/reports/de/stored.virus.message.txt.sample
250
%%DATADIR%%/reports/dk/deleted.content.message.txt.sample
253
%%DATADIR%%/reports/dk/deleted.content.message.txt.sample
251
%%DATADIR%%/reports/dk/deleted.filename.message.txt.sample
254
%%DATADIR%%/reports/dk/deleted.filename.message.txt.sample
255
%%DATADIR%%/reports/dk/deleted.size.message.txt.sample
252
%%DATADIR%%/reports/dk/deleted.virus.message.txt.sample
256
%%DATADIR%%/reports/dk/deleted.virus.message.txt.sample
253
%%DATADIR%%/reports/dk/disinfected.report.txt.sample
257
%%DATADIR%%/reports/dk/disinfected.report.txt.sample
254
%%DATADIR%%/reports/dk/inline.sig.html.sample
258
%%DATADIR%%/reports/dk/inline.sig.html.sample
Lines 257-281 Link Here
257
%%DATADIR%%/reports/dk/inline.warning.html.sample
261
%%DATADIR%%/reports/dk/inline.warning.html.sample
258
%%DATADIR%%/reports/dk/inline.warning.txt.sample
262
%%DATADIR%%/reports/dk/inline.warning.txt.sample
259
%%DATADIR%%/reports/dk/languages.conf.sample
263
%%DATADIR%%/reports/dk/languages.conf.sample
264
%%DATADIR%%/reports/dk/languages.conf.strings.sample
260
%%DATADIR%%/reports/dk/recipient.mcp.report.txt.sample
265
%%DATADIR%%/reports/dk/recipient.mcp.report.txt.sample
261
%%DATADIR%%/reports/dk/recipient.spam.report.txt.sample
266
%%DATADIR%%/reports/dk/recipient.spam.report.txt.sample
262
%%DATADIR%%/reports/dk/sender.content.report.txt.sample
263
%%DATADIR%%/reports/dk/rejection.report.txt.sample
267
%%DATADIR%%/reports/dk/rejection.report.txt.sample
268
%%DATADIR%%/reports/dk/sender.content.report.txt.sample
264
%%DATADIR%%/reports/dk/sender.error.report.txt.sample
269
%%DATADIR%%/reports/dk/sender.error.report.txt.sample
265
%%DATADIR%%/reports/dk/sender.filename.report.txt.sample
270
%%DATADIR%%/reports/dk/sender.filename.report.txt.sample
266
%%DATADIR%%/reports/dk/sender.mcp.report.txt.sample
271
%%DATADIR%%/reports/dk/sender.mcp.report.txt.sample
272
%%DATADIR%%/reports/dk/sender.size.report.txt.sample
267
%%DATADIR%%/reports/dk/sender.spam.rbl.report.txt.sample
273
%%DATADIR%%/reports/dk/sender.spam.rbl.report.txt.sample
268
%%DATADIR%%/reports/dk/sender.spam.report.txt.sample
274
%%DATADIR%%/reports/dk/sender.spam.report.txt.sample
269
%%DATADIR%%/reports/dk/sender.spam.sa.report.txt.sample
275
%%DATADIR%%/reports/dk/sender.spam.sa.report.txt.sample
270
%%DATADIR%%/reports/dk/sender.virus.report.txt.sample
276
%%DATADIR%%/reports/dk/sender.virus.report.txt.sample
271
%%DATADIR%%/reports/dk/stored.content.message.txt.sample
277
%%DATADIR%%/reports/dk/stored.content.message.txt.sample
272
%%DATADIR%%/reports/dk/stored.filename.message.txt.sample
278
%%DATADIR%%/reports/dk/stored.filename.message.txt.sample
273
%%DATADIR%%/reports/dk/stored.virus.message.txt.sample
274
%%DATADIR%%/reports/dk/deleted.size.message.txt.sample
275
%%DATADIR%%/reports/dk/sender.size.report.txt.sample
276
%%DATADIR%%/reports/dk/stored.size.message.txt.sample
279
%%DATADIR%%/reports/dk/stored.size.message.txt.sample
280
%%DATADIR%%/reports/dk/stored.virus.message.txt.sample
277
%%DATADIR%%/reports/en/deleted.content.message.txt.sample
281
%%DATADIR%%/reports/en/deleted.content.message.txt.sample
278
%%DATADIR%%/reports/en/deleted.filename.message.txt.sample
282
%%DATADIR%%/reports/en/deleted.filename.message.txt.sample
283
%%DATADIR%%/reports/en/deleted.size.message.txt.sample
279
%%DATADIR%%/reports/en/deleted.virus.message.txt.sample
284
%%DATADIR%%/reports/en/deleted.virus.message.txt.sample
280
%%DATADIR%%/reports/en/disinfected.report.txt.sample
285
%%DATADIR%%/reports/en/disinfected.report.txt.sample
281
%%DATADIR%%/reports/en/inline.sig.html.sample
286
%%DATADIR%%/reports/en/inline.sig.html.sample
Lines 284-308 Link Here
284
%%DATADIR%%/reports/en/inline.warning.html.sample
289
%%DATADIR%%/reports/en/inline.warning.html.sample
285
%%DATADIR%%/reports/en/inline.warning.txt.sample
290
%%DATADIR%%/reports/en/inline.warning.txt.sample
286
%%DATADIR%%/reports/en/languages.conf.sample
291
%%DATADIR%%/reports/en/languages.conf.sample
292
%%DATADIR%%/reports/en/languages.conf.strings.sample
287
%%DATADIR%%/reports/en/recipient.mcp.report.txt.sample
293
%%DATADIR%%/reports/en/recipient.mcp.report.txt.sample
288
%%DATADIR%%/reports/en/recipient.spam.report.txt.sample
294
%%DATADIR%%/reports/en/recipient.spam.report.txt.sample
289
%%DATADIR%%/reports/en/sender.content.report.txt.sample
290
%%DATADIR%%/reports/en/rejection.report.txt.sample
295
%%DATADIR%%/reports/en/rejection.report.txt.sample
296
%%DATADIR%%/reports/en/sender.content.report.txt.sample
291
%%DATADIR%%/reports/en/sender.error.report.txt.sample
297
%%DATADIR%%/reports/en/sender.error.report.txt.sample
292
%%DATADIR%%/reports/en/sender.filename.report.txt.sample
298
%%DATADIR%%/reports/en/sender.filename.report.txt.sample
293
%%DATADIR%%/reports/en/sender.mcp.report.txt.sample
299
%%DATADIR%%/reports/en/sender.mcp.report.txt.sample
300
%%DATADIR%%/reports/en/sender.size.report.txt.sample
294
%%DATADIR%%/reports/en/sender.spam.rbl.report.txt.sample
301
%%DATADIR%%/reports/en/sender.spam.rbl.report.txt.sample
295
%%DATADIR%%/reports/en/sender.spam.report.txt.sample
302
%%DATADIR%%/reports/en/sender.spam.report.txt.sample
296
%%DATADIR%%/reports/en/sender.spam.sa.report.txt.sample
303
%%DATADIR%%/reports/en/sender.spam.sa.report.txt.sample
297
%%DATADIR%%/reports/en/sender.virus.report.txt.sample
304
%%DATADIR%%/reports/en/sender.virus.report.txt.sample
298
%%DATADIR%%/reports/en/stored.content.message.txt.sample
305
%%DATADIR%%/reports/en/stored.content.message.txt.sample
299
%%DATADIR%%/reports/en/stored.filename.message.txt.sample
306
%%DATADIR%%/reports/en/stored.filename.message.txt.sample
300
%%DATADIR%%/reports/en/stored.virus.message.txt.sample
301
%%DATADIR%%/reports/en/deleted.size.message.txt.sample
302
%%DATADIR%%/reports/en/sender.size.report.txt.sample
303
%%DATADIR%%/reports/en/stored.size.message.txt.sample
307
%%DATADIR%%/reports/en/stored.size.message.txt.sample
308
%%DATADIR%%/reports/en/stored.virus.message.txt.sample
304
%%DATADIR%%/reports/es/deleted.content.message.txt.sample
309
%%DATADIR%%/reports/es/deleted.content.message.txt.sample
305
%%DATADIR%%/reports/es/deleted.filename.message.txt.sample
310
%%DATADIR%%/reports/es/deleted.filename.message.txt.sample
311
%%DATADIR%%/reports/es/deleted.size.message.txt.sample
306
%%DATADIR%%/reports/es/deleted.virus.message.txt.sample
312
%%DATADIR%%/reports/es/deleted.virus.message.txt.sample
307
%%DATADIR%%/reports/es/disinfected.report.txt.sample
313
%%DATADIR%%/reports/es/disinfected.report.txt.sample
308
%%DATADIR%%/reports/es/inline.sig.html.sample
314
%%DATADIR%%/reports/es/inline.sig.html.sample
Lines 311-316 Link Here
311
%%DATADIR%%/reports/es/inline.warning.html.sample
317
%%DATADIR%%/reports/es/inline.warning.html.sample
312
%%DATADIR%%/reports/es/inline.warning.txt.sample
318
%%DATADIR%%/reports/es/inline.warning.txt.sample
313
%%DATADIR%%/reports/es/languages.conf.sample
319
%%DATADIR%%/reports/es/languages.conf.sample
320
%%DATADIR%%/reports/es/languages.conf.strings.sample
314
%%DATADIR%%/reports/es/recipient.mcp.report.txt.sample
321
%%DATADIR%%/reports/es/recipient.mcp.report.txt.sample
315
%%DATADIR%%/reports/es/recipient.spam.report.txt.sample
322
%%DATADIR%%/reports/es/recipient.spam.report.txt.sample
316
%%DATADIR%%/reports/es/rejection.report.txt.sample
323
%%DATADIR%%/reports/es/rejection.report.txt.sample
Lines 318-335 Link Here
318
%%DATADIR%%/reports/es/sender.error.report.txt.sample
325
%%DATADIR%%/reports/es/sender.error.report.txt.sample
319
%%DATADIR%%/reports/es/sender.filename.report.txt.sample
326
%%DATADIR%%/reports/es/sender.filename.report.txt.sample
320
%%DATADIR%%/reports/es/sender.mcp.report.txt.sample
327
%%DATADIR%%/reports/es/sender.mcp.report.txt.sample
328
%%DATADIR%%/reports/es/sender.size.report.txt.sample
321
%%DATADIR%%/reports/es/sender.spam.rbl.report.txt.sample
329
%%DATADIR%%/reports/es/sender.spam.rbl.report.txt.sample
322
%%DATADIR%%/reports/es/sender.spam.report.txt.sample
330
%%DATADIR%%/reports/es/sender.spam.report.txt.sample
323
%%DATADIR%%/reports/es/sender.spam.sa.report.txt.sample
331
%%DATADIR%%/reports/es/sender.spam.sa.report.txt.sample
324
%%DATADIR%%/reports/es/sender.virus.report.txt.sample
332
%%DATADIR%%/reports/es/sender.virus.report.txt.sample
325
%%DATADIR%%/reports/es/stored.content.message.txt.sample
333
%%DATADIR%%/reports/es/stored.content.message.txt.sample
326
%%DATADIR%%/reports/es/stored.filename.message.txt.sample
334
%%DATADIR%%/reports/es/stored.filename.message.txt.sample
327
%%DATADIR%%/reports/es/stored.virus.message.txt.sample
328
%%DATADIR%%/reports/es/deleted.size.message.txt.sample
329
%%DATADIR%%/reports/es/sender.size.report.txt.sample
330
%%DATADIR%%/reports/es/stored.size.message.txt.sample
335
%%DATADIR%%/reports/es/stored.size.message.txt.sample
336
%%DATADIR%%/reports/es/stored.virus.message.txt.sample
331
%%DATADIR%%/reports/fr/deleted.content.message.txt.sample
337
%%DATADIR%%/reports/fr/deleted.content.message.txt.sample
332
%%DATADIR%%/reports/fr/deleted.filename.message.txt.sample
338
%%DATADIR%%/reports/fr/deleted.filename.message.txt.sample
339
%%DATADIR%%/reports/fr/deleted.size.message.txt.sample
333
%%DATADIR%%/reports/fr/deleted.virus.message.txt.sample
340
%%DATADIR%%/reports/fr/deleted.virus.message.txt.sample
334
%%DATADIR%%/reports/fr/disinfected.report.txt.sample
341
%%DATADIR%%/reports/fr/disinfected.report.txt.sample
335
%%DATADIR%%/reports/fr/inline.sig.html.sample
342
%%DATADIR%%/reports/fr/inline.sig.html.sample
Lines 338-343 Link Here
338
%%DATADIR%%/reports/fr/inline.warning.html.sample
345
%%DATADIR%%/reports/fr/inline.warning.html.sample
339
%%DATADIR%%/reports/fr/inline.warning.txt.sample
346
%%DATADIR%%/reports/fr/inline.warning.txt.sample
340
%%DATADIR%%/reports/fr/languages.conf.sample
347
%%DATADIR%%/reports/fr/languages.conf.sample
348
%%DATADIR%%/reports/fr/languages.conf.strings.sample
341
%%DATADIR%%/reports/fr/recipient.mcp.report.txt.sample
349
%%DATADIR%%/reports/fr/recipient.mcp.report.txt.sample
342
%%DATADIR%%/reports/fr/recipient.spam.report.txt.sample
350
%%DATADIR%%/reports/fr/recipient.spam.report.txt.sample
343
%%DATADIR%%/reports/fr/rejection.report.txt.sample
351
%%DATADIR%%/reports/fr/rejection.report.txt.sample
Lines 345-362 Link Here
345
%%DATADIR%%/reports/fr/sender.error.report.txt.sample
353
%%DATADIR%%/reports/fr/sender.error.report.txt.sample
346
%%DATADIR%%/reports/fr/sender.filename.report.txt.sample
354
%%DATADIR%%/reports/fr/sender.filename.report.txt.sample
347
%%DATADIR%%/reports/fr/sender.mcp.report.txt.sample
355
%%DATADIR%%/reports/fr/sender.mcp.report.txt.sample
356
%%DATADIR%%/reports/fr/sender.size.report.txt.sample
348
%%DATADIR%%/reports/fr/sender.spam.rbl.report.txt.sample
357
%%DATADIR%%/reports/fr/sender.spam.rbl.report.txt.sample
349
%%DATADIR%%/reports/fr/sender.spam.report.txt.sample
358
%%DATADIR%%/reports/fr/sender.spam.report.txt.sample
350
%%DATADIR%%/reports/fr/sender.spam.sa.report.txt.sample
359
%%DATADIR%%/reports/fr/sender.spam.sa.report.txt.sample
351
%%DATADIR%%/reports/fr/sender.virus.report.txt.sample
360
%%DATADIR%%/reports/fr/sender.virus.report.txt.sample
352
%%DATADIR%%/reports/fr/stored.content.message.txt.sample
361
%%DATADIR%%/reports/fr/stored.content.message.txt.sample
353
%%DATADIR%%/reports/fr/stored.filename.message.txt.sample
362
%%DATADIR%%/reports/fr/stored.filename.message.txt.sample
354
%%DATADIR%%/reports/fr/stored.virus.message.txt.sample
355
%%DATADIR%%/reports/fr/deleted.size.message.txt.sample
356
%%DATADIR%%/reports/fr/sender.size.report.txt.sample
357
%%DATADIR%%/reports/fr/stored.size.message.txt.sample
363
%%DATADIR%%/reports/fr/stored.size.message.txt.sample
364
%%DATADIR%%/reports/fr/stored.virus.message.txt.sample
358
%%DATADIR%%/reports/hu/deleted.content.message.txt.sample
365
%%DATADIR%%/reports/hu/deleted.content.message.txt.sample
359
%%DATADIR%%/reports/hu/deleted.filename.message.txt.sample
366
%%DATADIR%%/reports/hu/deleted.filename.message.txt.sample
367
%%DATADIR%%/reports/hu/deleted.size.message.txt.sample
360
%%DATADIR%%/reports/hu/deleted.virus.message.txt.sample
368
%%DATADIR%%/reports/hu/deleted.virus.message.txt.sample
361
%%DATADIR%%/reports/hu/disinfected.report.txt.sample
369
%%DATADIR%%/reports/hu/disinfected.report.txt.sample
362
%%DATADIR%%/reports/hu/inline.sig.html.sample
370
%%DATADIR%%/reports/hu/inline.sig.html.sample
Lines 365-370 Link Here
365
%%DATADIR%%/reports/hu/inline.warning.html.sample
373
%%DATADIR%%/reports/hu/inline.warning.html.sample
366
%%DATADIR%%/reports/hu/inline.warning.txt.sample
374
%%DATADIR%%/reports/hu/inline.warning.txt.sample
367
%%DATADIR%%/reports/hu/languages.conf.sample
375
%%DATADIR%%/reports/hu/languages.conf.sample
376
%%DATADIR%%/reports/hu/languages.conf.strings.sample
368
%%DATADIR%%/reports/hu/recipient.mcp.report.txt.sample
377
%%DATADIR%%/reports/hu/recipient.mcp.report.txt.sample
369
%%DATADIR%%/reports/hu/recipient.spam.report.txt.sample
378
%%DATADIR%%/reports/hu/recipient.spam.report.txt.sample
370
%%DATADIR%%/reports/hu/rejection.report.txt.sample
379
%%DATADIR%%/reports/hu/rejection.report.txt.sample
Lines 372-389 Link Here
372
%%DATADIR%%/reports/hu/sender.error.report.txt.sample
381
%%DATADIR%%/reports/hu/sender.error.report.txt.sample
373
%%DATADIR%%/reports/hu/sender.filename.report.txt.sample
382
%%DATADIR%%/reports/hu/sender.filename.report.txt.sample
374
%%DATADIR%%/reports/hu/sender.mcp.report.txt.sample
383
%%DATADIR%%/reports/hu/sender.mcp.report.txt.sample
384
%%DATADIR%%/reports/hu/sender.size.report.txt.sample
375
%%DATADIR%%/reports/hu/sender.spam.rbl.report.txt.sample
385
%%DATADIR%%/reports/hu/sender.spam.rbl.report.txt.sample
376
%%DATADIR%%/reports/hu/sender.spam.report.txt.sample
386
%%DATADIR%%/reports/hu/sender.spam.report.txt.sample
377
%%DATADIR%%/reports/hu/sender.spam.sa.report.txt.sample
387
%%DATADIR%%/reports/hu/sender.spam.sa.report.txt.sample
378
%%DATADIR%%/reports/hu/sender.virus.report.txt.sample
388
%%DATADIR%%/reports/hu/sender.virus.report.txt.sample
379
%%DATADIR%%/reports/hu/stored.content.message.txt.sample
389
%%DATADIR%%/reports/hu/stored.content.message.txt.sample
380
%%DATADIR%%/reports/hu/stored.filename.message.txt.sample
390
%%DATADIR%%/reports/hu/stored.filename.message.txt.sample
381
%%DATADIR%%/reports/hu/stored.virus.message.txt.sample
382
%%DATADIR%%/reports/hu/deleted.size.message.txt.sample
383
%%DATADIR%%/reports/hu/sender.size.report.txt.sample
384
%%DATADIR%%/reports/hu/stored.size.message.txt.sample
391
%%DATADIR%%/reports/hu/stored.size.message.txt.sample
392
%%DATADIR%%/reports/hu/stored.virus.message.txt.sample
385
%%DATADIR%%/reports/it/deleted.content.message.txt.sample
393
%%DATADIR%%/reports/it/deleted.content.message.txt.sample
386
%%DATADIR%%/reports/it/deleted.filename.message.txt.sample
394
%%DATADIR%%/reports/it/deleted.filename.message.txt.sample
395
%%DATADIR%%/reports/it/deleted.size.message.txt.sample
387
%%DATADIR%%/reports/it/deleted.virus.message.txt.sample
396
%%DATADIR%%/reports/it/deleted.virus.message.txt.sample
388
%%DATADIR%%/reports/it/disinfected.report.txt.sample
397
%%DATADIR%%/reports/it/disinfected.report.txt.sample
389
%%DATADIR%%/reports/it/inline.sig.html.sample
398
%%DATADIR%%/reports/it/inline.sig.html.sample
Lines 392-397 Link Here
392
%%DATADIR%%/reports/it/inline.warning.html.sample
401
%%DATADIR%%/reports/it/inline.warning.html.sample
393
%%DATADIR%%/reports/it/inline.warning.txt.sample
402
%%DATADIR%%/reports/it/inline.warning.txt.sample
394
%%DATADIR%%/reports/it/languages.conf.sample
403
%%DATADIR%%/reports/it/languages.conf.sample
404
%%DATADIR%%/reports/it/languages.conf.strings.sample
395
%%DATADIR%%/reports/it/recipient.mcp.report.txt.sample
405
%%DATADIR%%/reports/it/recipient.mcp.report.txt.sample
396
%%DATADIR%%/reports/it/recipient.spam.report.txt.sample
406
%%DATADIR%%/reports/it/recipient.spam.report.txt.sample
397
%%DATADIR%%/reports/it/rejection.report.txt.sample
407
%%DATADIR%%/reports/it/rejection.report.txt.sample
Lines 399-416 Link Here
399
%%DATADIR%%/reports/it/sender.error.report.txt.sample
409
%%DATADIR%%/reports/it/sender.error.report.txt.sample
400
%%DATADIR%%/reports/it/sender.filename.report.txt.sample
410
%%DATADIR%%/reports/it/sender.filename.report.txt.sample
401
%%DATADIR%%/reports/it/sender.mcp.report.txt.sample
411
%%DATADIR%%/reports/it/sender.mcp.report.txt.sample
412
%%DATADIR%%/reports/it/sender.size.report.txt.sample
402
%%DATADIR%%/reports/it/sender.spam.rbl.report.txt.sample
413
%%DATADIR%%/reports/it/sender.spam.rbl.report.txt.sample
403
%%DATADIR%%/reports/it/sender.spam.report.txt.sample
414
%%DATADIR%%/reports/it/sender.spam.report.txt.sample
404
%%DATADIR%%/reports/it/sender.spam.sa.report.txt.sample
415
%%DATADIR%%/reports/it/sender.spam.sa.report.txt.sample
405
%%DATADIR%%/reports/it/sender.virus.report.txt.sample
416
%%DATADIR%%/reports/it/sender.virus.report.txt.sample
406
%%DATADIR%%/reports/it/stored.content.message.txt.sample
417
%%DATADIR%%/reports/it/stored.content.message.txt.sample
407
%%DATADIR%%/reports/it/stored.filename.message.txt.sample
418
%%DATADIR%%/reports/it/stored.filename.message.txt.sample
408
%%DATADIR%%/reports/it/stored.virus.message.txt.sample
409
%%DATADIR%%/reports/it/deleted.size.message.txt.sample
410
%%DATADIR%%/reports/it/sender.size.report.txt.sample
411
%%DATADIR%%/reports/it/stored.size.message.txt.sample
419
%%DATADIR%%/reports/it/stored.size.message.txt.sample
420
%%DATADIR%%/reports/it/stored.virus.message.txt.sample
412
%%DATADIR%%/reports/nl/deleted.content.message.txt.sample
421
%%DATADIR%%/reports/nl/deleted.content.message.txt.sample
413
%%DATADIR%%/reports/nl/deleted.filename.message.txt.sample
422
%%DATADIR%%/reports/nl/deleted.filename.message.txt.sample
423
%%DATADIR%%/reports/nl/deleted.size.message.txt.sample
414
%%DATADIR%%/reports/nl/deleted.virus.message.txt.sample
424
%%DATADIR%%/reports/nl/deleted.virus.message.txt.sample
415
%%DATADIR%%/reports/nl/disinfected.report.txt.sample
425
%%DATADIR%%/reports/nl/disinfected.report.txt.sample
416
%%DATADIR%%/reports/nl/inline.sig.html.sample
426
%%DATADIR%%/reports/nl/inline.sig.html.sample
Lines 419-424 Link Here
419
%%DATADIR%%/reports/nl/inline.warning.html.sample
429
%%DATADIR%%/reports/nl/inline.warning.html.sample
420
%%DATADIR%%/reports/nl/inline.warning.txt.sample
430
%%DATADIR%%/reports/nl/inline.warning.txt.sample
421
%%DATADIR%%/reports/nl/languages.conf.sample
431
%%DATADIR%%/reports/nl/languages.conf.sample
432
%%DATADIR%%/reports/nl/languages.conf.strings.sample
422
%%DATADIR%%/reports/nl/recipient.mcp.report.txt.sample
433
%%DATADIR%%/reports/nl/recipient.mcp.report.txt.sample
423
%%DATADIR%%/reports/nl/recipient.spam.report.txt.sample
434
%%DATADIR%%/reports/nl/recipient.spam.report.txt.sample
424
%%DATADIR%%/reports/nl/rejection.report.txt.sample
435
%%DATADIR%%/reports/nl/rejection.report.txt.sample
Lines 426-443 Link Here
426
%%DATADIR%%/reports/nl/sender.error.report.txt.sample
437
%%DATADIR%%/reports/nl/sender.error.report.txt.sample
427
%%DATADIR%%/reports/nl/sender.filename.report.txt.sample
438
%%DATADIR%%/reports/nl/sender.filename.report.txt.sample
428
%%DATADIR%%/reports/nl/sender.mcp.report.txt.sample
439
%%DATADIR%%/reports/nl/sender.mcp.report.txt.sample
440
%%DATADIR%%/reports/nl/sender.size.report.txt.sample
429
%%DATADIR%%/reports/nl/sender.spam.rbl.report.txt.sample
441
%%DATADIR%%/reports/nl/sender.spam.rbl.report.txt.sample
430
%%DATADIR%%/reports/nl/sender.spam.report.txt.sample
442
%%DATADIR%%/reports/nl/sender.spam.report.txt.sample
431
%%DATADIR%%/reports/nl/sender.spam.sa.report.txt.sample
443
%%DATADIR%%/reports/nl/sender.spam.sa.report.txt.sample
432
%%DATADIR%%/reports/nl/sender.virus.report.txt.sample
444
%%DATADIR%%/reports/nl/sender.virus.report.txt.sample
433
%%DATADIR%%/reports/nl/stored.content.message.txt.sample
445
%%DATADIR%%/reports/nl/stored.content.message.txt.sample
434
%%DATADIR%%/reports/nl/stored.filename.message.txt.sample
446
%%DATADIR%%/reports/nl/stored.filename.message.txt.sample
435
%%DATADIR%%/reports/nl/stored.virus.message.txt.sample
436
%%DATADIR%%/reports/nl/deleted.size.message.txt.sample
437
%%DATADIR%%/reports/nl/sender.size.report.txt.sample
438
%%DATADIR%%/reports/nl/stored.size.message.txt.sample
447
%%DATADIR%%/reports/nl/stored.size.message.txt.sample
448
%%DATADIR%%/reports/nl/stored.virus.message.txt.sample
439
%%DATADIR%%/reports/pt_br/deleted.content.message.txt.sample
449
%%DATADIR%%/reports/pt_br/deleted.content.message.txt.sample
440
%%DATADIR%%/reports/pt_br/deleted.filename.message.txt.sample
450
%%DATADIR%%/reports/pt_br/deleted.filename.message.txt.sample
451
%%DATADIR%%/reports/pt_br/deleted.size.message.txt.sample
441
%%DATADIR%%/reports/pt_br/deleted.virus.message.txt.sample
452
%%DATADIR%%/reports/pt_br/deleted.virus.message.txt.sample
442
%%DATADIR%%/reports/pt_br/disinfected.report.txt.sample
453
%%DATADIR%%/reports/pt_br/disinfected.report.txt.sample
443
%%DATADIR%%/reports/pt_br/inline.sig.html.sample
454
%%DATADIR%%/reports/pt_br/inline.sig.html.sample
Lines 446-451 Link Here
446
%%DATADIR%%/reports/pt_br/inline.warning.html.sample
457
%%DATADIR%%/reports/pt_br/inline.warning.html.sample
447
%%DATADIR%%/reports/pt_br/inline.warning.txt.sample
458
%%DATADIR%%/reports/pt_br/inline.warning.txt.sample
448
%%DATADIR%%/reports/pt_br/languages.conf.sample
459
%%DATADIR%%/reports/pt_br/languages.conf.sample
460
%%DATADIR%%/reports/pt_br/languages.conf.strings.sample
449
%%DATADIR%%/reports/pt_br/recipient.mcp.report.txt.sample
461
%%DATADIR%%/reports/pt_br/recipient.mcp.report.txt.sample
450
%%DATADIR%%/reports/pt_br/recipient.spam.report.txt.sample
462
%%DATADIR%%/reports/pt_br/recipient.spam.report.txt.sample
451
%%DATADIR%%/reports/pt_br/rejection.report.txt.sample
463
%%DATADIR%%/reports/pt_br/rejection.report.txt.sample
Lines 453-470 Link Here
453
%%DATADIR%%/reports/pt_br/sender.error.report.txt.sample
465
%%DATADIR%%/reports/pt_br/sender.error.report.txt.sample
454
%%DATADIR%%/reports/pt_br/sender.filename.report.txt.sample
466
%%DATADIR%%/reports/pt_br/sender.filename.report.txt.sample
455
%%DATADIR%%/reports/pt_br/sender.mcp.report.txt.sample
467
%%DATADIR%%/reports/pt_br/sender.mcp.report.txt.sample
468
%%DATADIR%%/reports/pt_br/sender.size.report.txt.sample
456
%%DATADIR%%/reports/pt_br/sender.spam.rbl.report.txt.sample
469
%%DATADIR%%/reports/pt_br/sender.spam.rbl.report.txt.sample
457
%%DATADIR%%/reports/pt_br/sender.spam.report.txt.sample
470
%%DATADIR%%/reports/pt_br/sender.spam.report.txt.sample
458
%%DATADIR%%/reports/pt_br/sender.spam.sa.report.txt.sample
471
%%DATADIR%%/reports/pt_br/sender.spam.sa.report.txt.sample
459
%%DATADIR%%/reports/pt_br/sender.virus.report.txt.sample
472
%%DATADIR%%/reports/pt_br/sender.virus.report.txt.sample
460
%%DATADIR%%/reports/pt_br/stored.content.message.txt.sample
473
%%DATADIR%%/reports/pt_br/stored.content.message.txt.sample
461
%%DATADIR%%/reports/pt_br/stored.filename.message.txt.sample
474
%%DATADIR%%/reports/pt_br/stored.filename.message.txt.sample
462
%%DATADIR%%/reports/pt_br/stored.virus.message.txt.sample
463
%%DATADIR%%/reports/pt_br/deleted.size.message.txt.sample
464
%%DATADIR%%/reports/pt_br/sender.size.report.txt.sample
465
%%DATADIR%%/reports/pt_br/stored.size.message.txt.sample
475
%%DATADIR%%/reports/pt_br/stored.size.message.txt.sample
476
%%DATADIR%%/reports/pt_br/stored.virus.message.txt.sample
466
%%DATADIR%%/reports/ro/deleted.content.message.txt.sample
477
%%DATADIR%%/reports/ro/deleted.content.message.txt.sample
467
%%DATADIR%%/reports/ro/deleted.filename.message.txt.sample
478
%%DATADIR%%/reports/ro/deleted.filename.message.txt.sample
479
%%DATADIR%%/reports/ro/deleted.size.message.txt.sample
468
%%DATADIR%%/reports/ro/deleted.virus.message.txt.sample
480
%%DATADIR%%/reports/ro/deleted.virus.message.txt.sample
469
%%DATADIR%%/reports/ro/disinfected.report.txt.sample
481
%%DATADIR%%/reports/ro/disinfected.report.txt.sample
470
%%DATADIR%%/reports/ro/inline.sig.html.sample
482
%%DATADIR%%/reports/ro/inline.sig.html.sample
Lines 473-478 Link Here
473
%%DATADIR%%/reports/ro/inline.warning.html.sample
485
%%DATADIR%%/reports/ro/inline.warning.html.sample
474
%%DATADIR%%/reports/ro/inline.warning.txt.sample
486
%%DATADIR%%/reports/ro/inline.warning.txt.sample
475
%%DATADIR%%/reports/ro/languages.conf.sample
487
%%DATADIR%%/reports/ro/languages.conf.sample
488
%%DATADIR%%/reports/ro/languages.conf.strings.sample
476
%%DATADIR%%/reports/ro/recipient.mcp.report.txt.sample
489
%%DATADIR%%/reports/ro/recipient.mcp.report.txt.sample
477
%%DATADIR%%/reports/ro/recipient.spam.report.txt.sample
490
%%DATADIR%%/reports/ro/recipient.spam.report.txt.sample
478
%%DATADIR%%/reports/ro/rejection.report.txt.sample
491
%%DATADIR%%/reports/ro/rejection.report.txt.sample
Lines 480-498 Link Here
480
%%DATADIR%%/reports/ro/sender.error.report.txt.sample
493
%%DATADIR%%/reports/ro/sender.error.report.txt.sample
481
%%DATADIR%%/reports/ro/sender.filename.report.txt.sample
494
%%DATADIR%%/reports/ro/sender.filename.report.txt.sample
482
%%DATADIR%%/reports/ro/sender.mcp.report.txt.sample
495
%%DATADIR%%/reports/ro/sender.mcp.report.txt.sample
496
%%DATADIR%%/reports/ro/sender.size.report.txt.sample
483
%%DATADIR%%/reports/ro/sender.spam.rbl.report.txt.sample
497
%%DATADIR%%/reports/ro/sender.spam.rbl.report.txt.sample
484
%%DATADIR%%/reports/ro/sender.spam.report.txt.sample
498
%%DATADIR%%/reports/ro/sender.spam.report.txt.sample
485
%%DATADIR%%/reports/ro/sender.spam.sa.report.txt.sample
499
%%DATADIR%%/reports/ro/sender.spam.sa.report.txt.sample
486
%%DATADIR%%/reports/ro/sender.virus.report.txt.sample
500
%%DATADIR%%/reports/ro/sender.virus.report.txt.sample
487
%%DATADIR%%/reports/ro/stored.content.message.txt.sample
501
%%DATADIR%%/reports/ro/stored.content.message.txt.sample
488
%%DATADIR%%/reports/ro/stored.filename.message.txt.sample
502
%%DATADIR%%/reports/ro/stored.filename.message.txt.sample
489
%%DATADIR%%/reports/ro/stored.virus.message.txt.sample
490
%%DATADIR%%/reports/ro/deleted.size.message.txt.sample
491
%%DATADIR%%/reports/ro/sender.size.report.txt.sample
492
%%DATADIR%%/reports/ro/stored.size.message.txt.sample
503
%%DATADIR%%/reports/ro/stored.size.message.txt.sample
493
%%DATADIR%%/reports/se/README.sample
504
%%DATADIR%%/reports/ro/stored.virus.message.txt.sample
494
%%DATADIR%%/reports/se/deleted.content.message.txt.sample
505
%%DATADIR%%/reports/se/deleted.content.message.txt.sample
495
%%DATADIR%%/reports/se/deleted.filename.message.txt.sample
506
%%DATADIR%%/reports/se/deleted.filename.message.txt.sample
507
%%DATADIR%%/reports/se/deleted.size.message.txt.sample
496
%%DATADIR%%/reports/se/deleted.virus.message.txt.sample
508
%%DATADIR%%/reports/se/deleted.virus.message.txt.sample
497
%%DATADIR%%/reports/se/disinfected.report.txt.sample
509
%%DATADIR%%/reports/se/disinfected.report.txt.sample
498
%%DATADIR%%/reports/se/inline.sig.html.sample
510
%%DATADIR%%/reports/se/inline.sig.html.sample
Lines 501-506 Link Here
501
%%DATADIR%%/reports/se/inline.warning.html.sample
513
%%DATADIR%%/reports/se/inline.warning.html.sample
502
%%DATADIR%%/reports/se/inline.warning.txt.sample
514
%%DATADIR%%/reports/se/inline.warning.txt.sample
503
%%DATADIR%%/reports/se/languages.conf.sample
515
%%DATADIR%%/reports/se/languages.conf.sample
516
%%DATADIR%%/reports/se/languages.conf.strings.sample
504
%%DATADIR%%/reports/se/recipient.mcp.report.txt.sample
517
%%DATADIR%%/reports/se/recipient.mcp.report.txt.sample
505
%%DATADIR%%/reports/se/recipient.spam.report.txt.sample
518
%%DATADIR%%/reports/se/recipient.spam.report.txt.sample
506
%%DATADIR%%/reports/se/rejection.report.txt.sample
519
%%DATADIR%%/reports/se/rejection.report.txt.sample
Lines 508-525 Link Here
508
%%DATADIR%%/reports/se/sender.error.report.txt.sample
521
%%DATADIR%%/reports/se/sender.error.report.txt.sample
509
%%DATADIR%%/reports/se/sender.filename.report.txt.sample
522
%%DATADIR%%/reports/se/sender.filename.report.txt.sample
510
%%DATADIR%%/reports/se/sender.mcp.report.txt.sample
523
%%DATADIR%%/reports/se/sender.mcp.report.txt.sample
524
%%DATADIR%%/reports/se/sender.size.report.txt.sample
511
%%DATADIR%%/reports/se/sender.spam.rbl.report.txt.sample
525
%%DATADIR%%/reports/se/sender.spam.rbl.report.txt.sample
512
%%DATADIR%%/reports/se/sender.spam.report.txt.sample
526
%%DATADIR%%/reports/se/sender.spam.report.txt.sample
513
%%DATADIR%%/reports/se/sender.spam.sa.report.txt.sample
527
%%DATADIR%%/reports/se/sender.spam.sa.report.txt.sample
514
%%DATADIR%%/reports/se/sender.virus.report.txt.sample
528
%%DATADIR%%/reports/se/sender.virus.report.txt.sample
515
%%DATADIR%%/reports/se/stored.content.message.txt.sample
529
%%DATADIR%%/reports/se/stored.content.message.txt.sample
516
%%DATADIR%%/reports/se/stored.filename.message.txt.sample
530
%%DATADIR%%/reports/se/stored.filename.message.txt.sample
517
%%DATADIR%%/reports/se/stored.virus.message.txt.sample
518
%%DATADIR%%/reports/se/deleted.size.message.txt.sample
519
%%DATADIR%%/reports/se/sender.size.report.txt.sample
520
%%DATADIR%%/reports/se/stored.size.message.txt.sample
531
%%DATADIR%%/reports/se/stored.size.message.txt.sample
532
%%DATADIR%%/reports/se/stored.virus.message.txt.sample
521
%%DATADIR%%/reports/sk/deleted.content.message.txt.sample
533
%%DATADIR%%/reports/sk/deleted.content.message.txt.sample
522
%%DATADIR%%/reports/sk/deleted.filename.message.txt.sample
534
%%DATADIR%%/reports/sk/deleted.filename.message.txt.sample
535
%%DATADIR%%/reports/sk/deleted.size.message.txt.sample
523
%%DATADIR%%/reports/sk/deleted.virus.message.txt.sample
536
%%DATADIR%%/reports/sk/deleted.virus.message.txt.sample
524
%%DATADIR%%/reports/sk/disinfected.report.txt.sample
537
%%DATADIR%%/reports/sk/disinfected.report.txt.sample
525
%%DATADIR%%/reports/sk/inline.sig.html.sample
538
%%DATADIR%%/reports/sk/inline.sig.html.sample
Lines 528-533 Link Here
528
%%DATADIR%%/reports/sk/inline.warning.html.sample
541
%%DATADIR%%/reports/sk/inline.warning.html.sample
529
%%DATADIR%%/reports/sk/inline.warning.txt.sample
542
%%DATADIR%%/reports/sk/inline.warning.txt.sample
530
%%DATADIR%%/reports/sk/languages.conf.sample
543
%%DATADIR%%/reports/sk/languages.conf.sample
544
%%DATADIR%%/reports/sk/languages.conf.strings.sample
531
%%DATADIR%%/reports/sk/recipient.mcp.report.txt.sample
545
%%DATADIR%%/reports/sk/recipient.mcp.report.txt.sample
532
%%DATADIR%%/reports/sk/recipient.spam.report.txt.sample
546
%%DATADIR%%/reports/sk/recipient.spam.report.txt.sample
533
%%DATADIR%%/reports/sk/rejection.report.txt.sample
547
%%DATADIR%%/reports/sk/rejection.report.txt.sample
Lines 535-553 Link Here
535
%%DATADIR%%/reports/sk/sender.error.report.txt.sample
549
%%DATADIR%%/reports/sk/sender.error.report.txt.sample
536
%%DATADIR%%/reports/sk/sender.filename.report.txt.sample
550
%%DATADIR%%/reports/sk/sender.filename.report.txt.sample
537
%%DATADIR%%/reports/sk/sender.mcp.report.txt.sample
551
%%DATADIR%%/reports/sk/sender.mcp.report.txt.sample
552
%%DATADIR%%/reports/sk/sender.size.report.txt.sample
538
%%DATADIR%%/reports/sk/sender.spam.rbl.report.txt.sample
553
%%DATADIR%%/reports/sk/sender.spam.rbl.report.txt.sample
539
%%DATADIR%%/reports/sk/sender.spam.report.txt.sample
554
%%DATADIR%%/reports/sk/sender.spam.report.txt.sample
540
%%DATADIR%%/reports/sk/sender.spam.sa.report.txt.sample
555
%%DATADIR%%/reports/sk/sender.spam.sa.report.txt.sample
541
%%DATADIR%%/reports/sk/sender.virus.report.txt.sample
556
%%DATADIR%%/reports/sk/sender.virus.report.txt.sample
542
%%DATADIR%%/reports/sk/stored.content.message.txt.sample
557
%%DATADIR%%/reports/sk/stored.content.message.txt.sample
543
%%DATADIR%%/reports/sk/stored.filename.message.txt.sample
558
%%DATADIR%%/reports/sk/stored.filename.message.txt.sample
544
%%DATADIR%%/reports/sk/stored.virus.message.txt.sample
545
%%DATADIR%%/reports/sk/deleted.size.message.txt.sample
546
%%DATADIR%%/reports/sk/sender.size.report.txt.sample
547
%%DATADIR%%/reports/sk/stored.size.message.txt.sample
559
%%DATADIR%%/reports/sk/stored.size.message.txt.sample
560
%%DATADIR%%/reports/sk/stored.virus.message.txt.sample
548
%%DATADIR%%/upgrade_MailScanner_conf
561
%%DATADIR%%/upgrade_MailScanner_conf
549
%%DATADIR%%/upgrade_languages_conf
562
%%DATADIR%%/upgrade_languages_conf
563
%%PORTDOCS%%%%DOCSDIR%%/README
550
%%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD.port
564
%%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD.port
551
%%PORTDOCS%%%%DOCSDIR%%/Sophos.install.freebsd
565
%%PORTDOCS%%%%DOCSDIR%%/Sophos.install.freebsd
552
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.FreeBSD
553
%%PORTDOCS%%%%DOCSDIR%%/README

Return to bug 205010