ports/79854: [MAINTAINER] mail/MailScanner: update to 4.40.11

Jan-Peter Koopmann j.koopmann at seceidos.de
Wed Apr 13 09:50:13 UTC 2005


>Number:         79854
>Category:       ports
>Synopsis:       [MAINTAINER] mail/MailScanner: update to 4.40.11
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Apr 13 09:50:12 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Jan-Peter Koopmann
>Release:        FreeBSD 4.9-STABLE i386
>Organization:
>Environment:
System: FreeBSD services.intern.seceidos.de 4.9-STABLE FreeBSD 4.9-STABLE #0: Mon Jan  5 10:56:46 CET
>Description:
- Update to 4.40.11

2/4/2005 New in Version 4.40.11
===============================
* New Features and Improvements *
- The "clamavmodule" scanner cannot unpack archives of RAR version 3.
  2 new configuration settings allow you to unpack the latest RAR archives
  for testing by the "clamavmodule" scanner.
  It also enables the contents of the RAR archive to be checked for illegal
  filenames and filetypes, and also to see if they are password-protected.
  Unrar Command = /usr/bin/unrar
  Unrar Timeout = 50
- "Allow Password-protected Archives" can now be a ruleset when using the
  clamavmodule virus scanner.
- Multiple "Subject:" lines are removed. The 1st one is kept.
- If the "Unrar Command" is defined and points to an executable program,
  it will automatically be used by the "clamav" scanner. No -wrapper
  tweaking is needed to do this any more.
- You can now use shell environment variables such as $HOSTNAME or
  ${HOSTNAME} in MailScanner.conf and its relatives.
- More improvements to the phishing net.
- More additions to the starter phishing.safe.sites.conf file.
- Removed my spam.assassin.prefs.conf file in favour of the one from
  www.fsl.com, with just enough changes to produce an identical file
  layout to my previous versions.
- Re-enabled ALL_TRUSTED rule after comments from Matt Kettler. Thanks!
- Added long comment about ALL_TRUSTED rule, many thanks to Matt Kettler.
- Improved screen behaviour of RPM-based init.d script.
- Greatly improved RAR archive handler, thanks to Rick Cooper.
- Changed IPBlock DSN to 550 and made it easily configurable.
  Look for "$FailCode" in the CustomConfig.pm code and the IPBlock cron job.
- Changed the "Envelope-From" and "Envelope-To" headers to include your
  organisation's name.
- Made date and time stamps consistent across whole system.
- Added extra rules to the phishing net to avoid false alarms with some
  examples of Microsoft's .NET system.
- Added Custom Functions to implement multiple input and output queues for
  ZMailer users. Many thanks to MailScanner-devel at pert.com.ar (Leonardo
  Helman and Mariano Absatz) for all their hard work implementing this.
- Improved RedHat init.d script so reload is handled better for Postfix.
- Changed default supplied values for "Allow xxxxx Tags" to disarm all of
  these tags.
- Added 20 minute timeout to bitdefender's autoupdate script. Easy to set
  the timeout to your own value, just look at the start of the script.
- Added support for non-hashed queue directories for Postfix 2.2.

* Fixes *
- Fixed problem with missing Attachment-Warning when encountering a virus
  that is both silent and non-forging.
- Improved output format of Sender warning, and removed duplicate lines.
- In IPBlock facility, changed MTA dsn to 451 to temporarily refuse the
  connections, rather than the total block it used to do.
- Removed erroneous log output from SpamAssassin bayes-rebuilder.
- Postfix problem fixes.
- Fixed SpamAssassin Bayes database rebuild timeout problem.
- Fixed Exim problem with removing multiple "Subject:" headers.
- Fixed Postfix problem with removing multiple "Subject:" headers.
- Fixed problems in new Unrar code when renaming files in archives.
- Fixed problems in earlier betas with occasional missing attachment warnings.
- Fixed directory problem in vexira-autoupdate.
- Fixed problems with defunct processes when not virus scanning.
- Fixed problem with filename checks not happening without virus scanning.
- Fixed problem extracting RAR archives with filenames containing special
  characters.
- Fixed problem where 2 matching "No" rules would cause message to be checked
  for spam, if SpamChecks is moved in ConfigDefs.pl.

Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:

--- MailScanner-4.40.11.patch begins here ---
diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/Makefile /server-root/ports/mail/mailscanner/Makefile
--- /server-root/ports/mail/mailscanner.orig/Makefile	Tue Mar 15 23:08:19 2005
+++ /server-root/ports/mail/mailscanner/Makefile	Wed Apr 13 11:44:14 2005
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	MailScanner
-PORTVERSION=	4.39.6
+PORTVERSION=	4.40.11
 CATEGORIES=	mail
 MASTER_SITES=	http://www.sng.ecs.soton.ac.uk/mailscanner/files/4/tar/
 DISTNAME=	${PORTNAME}-install-${PORTVERSION}-${PATCHLEVEL}
@@ -30,7 +30,8 @@
 		${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash2 \
 		${LOCALBASE}/bin/tnef:${PORTSDIR}/converters/tnef \
 		${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget \
-		${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip
+		${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip \
+		${LOCALBASE}/bin/unrar:${PORTSDIR}/archivers/unrar
 
 CONFLICTS=	MailScanner-devel-[0-9]*
 
@@ -84,7 +85,9 @@
 		s,/opt/MailScanner/bin,${PREFIX}/bin,g; \
 		s,/opt/MailScanner/etc/reports,${DATADIR}/reports,g; \
 		s,/opt/MailScanner/etc,${PREFIX}/etc/MailScanner,g; \
-		s,/opt/MailScanner/lib,${PREFIX}/lib/MailScanner,g;' \
+		s,/opt/MailScanner/lib,${PREFIX}/lib/MailScanner,g; \
+		s,/usr/bin/unrar,${LOCALBASE}/bin/unrar,g; \
+		s,/etc/mail/spamassassin,${LOCALBASE}/etc/mail/spamassassin,g;' \
 		${WRKSRC}/etc/MailScanner.conf
 	${PERL} -pi -e \
 		's,/opt/MailScanner/lib,${PREFIX}/libexec/MailScanner,g; \
diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/distinfo /server-root/ports/mail/mailscanner/distinfo
--- /server-root/ports/mail/mailscanner.orig/distinfo	Tue Mar 15 23:08:19 2005
+++ /server-root/ports/mail/mailscanner/distinfo	Wed Apr 13 11:38:26 2005
@@ -1,2 +1,2 @@
-MD5 (MailScanner-install-4.39.6-1.tar.gz) = efe4a1eec0b072febbb3d6037a65470d
-SIZE (MailScanner-install-4.39.6-1.tar.gz) = 4854418
+MD5 (MailScanner-install-4.40.11-1.tar.gz) = afcf9a62303becc81b9661cbde81862a
+SIZE (MailScanner-install-4.40.11-1.tar.gz) = 4888691
diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8 /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8
--- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8	Tue Mar 15 23:08:19 2005
+++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8	Wed Apr 13 11:37:43 2005
@@ -1,8 +1,8 @@
---- ../MailScanner-install-4.39.6.orig/docs/man/MailScanner.8	Mon Mar 14 23:05:12 2005
-+++ docs/man/MailScanner.8	Mon Mar 14 23:05:22 2005
+--- ../MailScanner-install-4.40.10.old/docs/man/MailScanner.8	Fri Apr  1 16:10:19 2005
++++ docs/man/MailScanner.8	Fri Apr  1 16:10:33 2005
 @@ -1,4 +1,4 @@
 -.TH "MailScanner" "8" "4.38.2" "Julian Field" "Mail"
-+.TH "MailScanner" "8" "4.39.6" "Julian Field" "Mail"
++.TH "MailScanner" "8" "4.40.10" "Julian Field" "Mail"
  .SH "NAME"
  .LP 
  MailScanner \- Virus/Spam Scanner for Sendmail, Exim and Postfix
diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8.html /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8.html
--- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.8.html	Tue Mar 15 23:08:19 2005
+++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.8.html	Wed Apr 13 11:37:43 2005
@@ -1,9 +1,9 @@
---- ../MailScanner-install-4.39.6.orig/docs/man/MailScanner.8.html	Mon Mar 14 23:05:12 2005
-+++ docs/man/MailScanner.8.html	Mon Mar 14 23:05:25 2005
+--- ../MailScanner-install-4.40.10.old/docs/man/MailScanner.8.html	Fri Apr  1 16:10:19 2005
++++ docs/man/MailScanner.8.html	Fri Apr  1 16:10:35 2005
 @@ -1,5 +1,5 @@
  <!-- Creator     : groff version 1.19 -->
 -<!-- CreationDate: Mon Jan 17 15:53:41 2005 -->
-+<!-- CreationDate: Mon Mar 14 23:04:48 2005 -->
++<!-- CreationDate: Fri Apr  1 16:08:30 2005 -->
  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
  <html>
diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5 /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5
--- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5	Tue Mar 15 23:08:19 2005
+++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5	Wed Apr 13 11:37:43 2005
@@ -1,12 +1,70 @@
---- ../MailScanner-install-4.39.6.orig/docs/man/MailScanner.conf.5	Mon Mar 14 23:05:12 2005
-+++ docs/man/MailScanner.conf.5	Mon Mar 14 23:05:30 2005
+--- ../MailScanner-install-4.40.10.old/docs/man/MailScanner.conf.5	Fri Apr  1 16:10:19 2005
++++ docs/man/MailScanner.conf.5	Fri Apr  1 16:10:37 2005
 @@ -1,4 +1,4 @@
 -.TH "MailScanner.conf" "5" "4.38.2" "Julian Field" "Mail"
-+.TH "MailScanner.conf" "5" "4.39.6" "Julian Field" "Mail"
++.TH "MailScanner.conf" "5" "4.40.10" "Julian Field" "Mail"
  .SH "NAME"
  .LP 
  MailScanner.conf \- Main configuration for MailScanner
-@@ -562,6 +562,41 @@
+@@ -27,7 +27,9 @@
+ Many of the options can also be the filename of a ruleset, which can be used to control features depending on the addresses of the message, and/or the IP address where the message came from. You will find some examples of rulesets and an explanation of them in the "rules" directories within the MailScanner installation and in the section "RULESETS" later in this manpage.
+ 
+ .LP 
+-The options are best listed in a few categories. This is also the order in which you will find them in the MailScanner.conf file. If this list looks very large then don't worry, the supplied MailScanner.conf file (or MailScanner.conf.sample) contains sensible defaults for all the values. You will probably only need to change a very few of them to start with.
++The options are best listed in a few categories. If this list looks very large then don't worry, the supplied MailScanner.conf file (or MailScanner.conf.sample) contains sensible defaults for all the values. You will probably only need to change a very few of them to start with.
++
++Starting with version 4.40.10 of MailScanner you can use shell environment variables such as $HOSTNAME or ${HOSTNAME} in MailScanner.conf and its relatives.
+ 
+ .LP 
+ You should define the following variables:
+@@ -74,6 +76,22 @@
+ Enter a short identifying name for your organisation below, this is used to make the X\-MailScanner headers unique for your organisation. Multiple servers within one site should use an identical value here to avoid adding multiple redundant headers where mail has passed through several servers within your organisation. 
+ .br 
+ Note: Some Symantec scanners complain (incorrectly) about "." characters appearing in the names of headers.
++
++.TP 
++\fB%org\-long\-name%\fR
++Default: Your Organisation Name Here
++.br 
++
++.br 
++Enter the full name of your organisation below, this is used in the signature placed at the bottom of report messages sent by MailScanner. It can include pretty much any text you like. You can make the result span several lines by including "\n" sequences in the text. These will be replaced by line\-breaks.
++
++.TP 
++\fB%web\-site%\fR
++Default: www.your\-organisation.com
++.br 
++
++.br 
++Enter the location of your organisation's web site below. This is used in the signature placed at the bottom of report messages sent by MailScanner. It should preferably be the location of a page that you have written explaining why you might have rejected the mail and what the recipient and/or sender should do about it.
+ .SH "System Settings"
+ .TP 
+ \fBMax Children\fR
+@@ -370,6 +388,23 @@
+ .br 
+ The maximum length of time the "file" command is allowed to run for one batch of messages (in seconds).
+ 
++
++.TP 
++\fBUnrar Command\fR
++Default: /usr/bin/unrar
++.br 
++
++.br 
++Where the "unrar" command is installed. If you haven't got this command, look at www.rarlab.com. This is used for unpacking rar archives so that the contents can be checked for banned filenames and filetypes, and also that the archive can be tested to see if it is password\-protected. Virus scanning the contents of rar archives is still left to the virus scanner, with one exception: If using the clavavmodule virus scanner, this adds external RAR checking to that scanner which is needed for archives which are RAR version 3.
++
++.TP 
++\fBUnrar Timeout\fR
++Default: 50
++.br 
++
++.br 
++The maximum length of time the "unrar" command is allowed to run for 1 RAR archive (in seconds)
++
+ .TP 
+ \fBBlock Encrypted Messages\fR
+ Default: no
+@@ -562,6 +597,41 @@
  
  .br 
  ClamAVModule only: monitor each of these files for changes in size to detect when a ClamAV update has happened. This is only used by the "clamavmodule" virus scanner, not the "clamav" scanner setting.
@@ -48,7 +106,7 @@
  .SH "Removing/Logging dangerous or potentially offensive content"
  .TP 
  \fBAllow Partial Messages\fR
-@@ -601,6 +636,15 @@
+@@ -601,6 +671,15 @@
  
  
  .TP 
@@ -64,7 +122,7 @@
  \fBAllow IFrame Tags\fR
  Default: no
  .br 
-@@ -1753,6 +1797,12 @@
+@@ -1753,6 +1832,12 @@
  
  .br 
  Log all occurrences of "Silent Viruses" as defined above? This can only be a simple yes/no value, not a ruleset.
diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5.html /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5.html
--- /server-root/ports/mail/mailscanner.orig/files/patch-docs:man:MailScanner.conf.5.html	Tue Mar 15 23:08:19 2005
+++ /server-root/ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5.html	Wed Apr 13 11:37:43 2005
@@ -1,13 +1,146 @@
---- ../MailScanner-install-4.39.6.orig/docs/man/MailScanner.conf.5.html	Mon Mar 14 23:05:12 2005
-+++ docs/man/MailScanner.conf.5.html	Mon Mar 14 23:05:33 2005
+--- ../MailScanner-install-4.40.10.old/docs/man/MailScanner.conf.5.html	Fri Apr  1 16:10:19 2005
++++ docs/man/MailScanner.conf.5.html	Fri Apr  1 16:10:40 2005
 @@ -1,5 +1,5 @@
  <!-- Creator     : groff version 1.19 -->
 -<!-- CreationDate: Mon Jan 17 15:53:41 2005 -->
-+<!-- CreationDate: Mon Mar 14 23:04:48 2005 -->
++<!-- CreationDate: Fri Apr  1 16:08:30 2005 -->
  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
  <html>
-@@ -1638,6 +1638,90 @@
+@@ -120,13 +120,15 @@
+ directories within the MailScanner installation and in the
+ section "RULESETS" later in this manpage.</p>
+ <!-- INDENTATION -->
+-<p>The options are best listed in a few categories. This is
+-also the order in which you will find them in the
+-MailScanner.conf file. If this list looks very large then
+-don’t worry, the supplied MailScanner.conf file (or
+-MailScanner.conf.sample) contains sensible defaults for all
+-the values. You will probably only need to change a very few
+-of them to start with.</p>
++<p>The options are best listed in a few categories. If this
++list looks very large then don’t worry, the supplied
++MailScanner.conf file (or MailScanner.conf.sample) contains
++sensible defaults for all the values. You will probably only
++need to change a very few of them to start with.</p>
++<!-- INDENTATION -->
++<p>Starting with version 4.40.10 of MailScanner you can use
++shell environment variables such as $HOSTNAME or ${HOSTNAME}
++in MailScanner.conf and its relatives.</p>
+ <!-- INDENTATION -->
+ <p>You should define the following variables:</p>
+ </td>
+@@ -220,6 +222,54 @@
+ headers.</p>
+ </td>
+ </table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="11%"></td>
++<td width="89%">
++<p><b>%org−long−name%</b></p></td>
++</table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="22%"></td>
++<td width="78%">
++<p>Default: Your Organisation Name Here</p>
++<!-- INDENTATION -->
++<p>Enter the full name of your organisation below, this is
++used in the signature placed at the bottom of report
++messages sent by MailScanner. It can include pretty much any
++text you like. You can make the result span several lines by
++including "0 sequences in the text. These will be
++replaced by line−breaks.</p>
++</td>
++</table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="11%"></td>
++<td width="89%">
++<p><b>%web−site%</b></p></td>
++</table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="22%"></td>
++<td width="78%">
++<p>Default: www.your−organisation.com</p>
++<!-- INDENTATION -->
++<p>Enter the location of your organisation’s web site
++below. This is used in the signature placed at the bottom of
++report messages sent by MailScanner. It should preferably be
++the location of a page that you have written explaining why
++you might have rejected the mail and what the recipient
++and/or sender should do about it.</p>
++</td>
++</table>
+ <a name="System Settings"></a>
+ <h2>System Settings</h2>
+ <!-- INDENTATION -->
+@@ -1071,6 +1121,54 @@
+ <tr valign="top" align="left">
+ <td width="11%"></td>
+ <td width="89%">
++<p><b>Unrar Command</b></p></td>
++</table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="22%"></td>
++<td width="78%">
++<p>Default: /usr/bin/unrar</p>
++<!-- INDENTATION -->
++<p>Where the "unrar" command is installed. If you
++haven’t got this command, look at www.rarlab.com. This
++is used for unpacking rar archives so that the contents can
++be checked for banned filenames and filetypes, and also that
++the archive can be tested to see if it is
++password−protected. Virus scanning the contents of rar
++archives is still left to the virus scanner, with one
++exception: If using the clavavmodule virus scanner, this
++adds external RAR checking to that scanner which is needed
++for archives which are RAR version 3.</p>
++</td>
++</table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="11%"></td>
++<td width="89%">
++<p><b>Unrar Timeout</b></p></td>
++</table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="22%"></td>
++<td width="78%">
++<p>Default: 50</p>
++<!-- INDENTATION -->
++<p>The maximum length of time the "unrar" command
++is allowed to run for 1 RAR archive (in seconds)</p>
++</td>
++</table>
++<!-- INDENTATION -->
++<table width="100%" border=0 rules="none" frame="void"
++       cols="2" cellspacing="0" cellpadding="0">
++<tr valign="top" align="left">
++<td width="11%"></td>
++<td width="89%">
+ <p><b>Block Encrypted Messages</b></p></td>
+ </table>
+ <!-- INDENTATION -->
+@@ -1638,6 +1736,90 @@
  scanner, not the "clamav" scanner setting.</p>
  </td>
  </table>
@@ -98,7 +231,7 @@
  <a name="Removing/Logging dangerous or potentially offensive content"></a>
  <h2>Removing/Logging dangerous or potentially offensive content</h2>
  <!-- INDENTATION -->
-@@ -1761,6 +1845,33 @@
+@@ -1761,6 +1943,33 @@
  <tr valign="top" align="left">
  <td width="11%"></td>
  <td width="89%">
@@ -132,7 +265,7 @@
  <p><b>Allow IFrame Tags</b></p></td>
  </table>
  <!-- INDENTATION -->
-@@ -5122,6 +5233,28 @@
+@@ -5122,6 +5331,28 @@
  <p>Log all occurrences of "Silent Viruses" as
  defined above? This can only be a simple yes/no value, not a
  ruleset.</p>
diff -ruN --exclude=CVS /server-root/ports/mail/mailscanner.orig/pkg-plist /server-root/ports/mail/mailscanner/pkg-plist
--- /server-root/ports/mail/mailscanner.orig/pkg-plist	Tue Mar 15 23:08:19 2005
+++ /server-root/ports/mail/mailscanner/pkg-plist	Wed Apr 13 11:38:22 2005
@@ -1,4 +1,4 @@
- at comment $FreeBSD: ports/mail/mailscanner/pkg-plist,v 1.20 2005/03/15 22:08:19 pav Exp $
+ at comment $FreeBSD: ports/mail/mailscanner/pkg-plist,v 1.19 2005/02/16 16:11:36 vs Exp $
 etc/MailScanner/MailScanner.conf.sample
 etc/MailScanner/filename.rules.conf.sample
 etc/MailScanner/filetype.rules.conf.sample
@@ -20,6 +20,7 @@
 lib/MailScanner/MailScanner/CustomConfig.pm
 lib/MailScanner/MailScanner/CustomFunctions/MyExample.pm
 lib/MailScanner/MailScanner/CustomFunctions/DavidHooton.pm
+lib/MailScanner/MailScanner/CustomFunctions/ZMRouterDirHash.pm
 lib/MailScanner/MailScanner/Exim.pm
 lib/MailScanner/MailScanner/EximDiskStore.pm
 lib/MailScanner/MailScanner/Lock.pm
@@ -524,6 +525,7 @@
 %%PORTDOCS%%%%DOCSDIR%%/oldnews.shtml
 %%PORTDOCS%%%%DOCSDIR%%/osdir.png
 %%PORTDOCS%%%%DOCSDIR%%/performance.shtml
+%%PORTDOCS%%%%DOCSDIR%%/phishing3.png
 %%PORTDOCS%%%%DOCSDIR%%/poetry.shtml
 %%PORTDOCS%%%%DOCSDIR%%/poweredby.google.gif
 %%PORTDOCS%%%%DOCSDIR%%/poweredby.transtec.gif
--- MailScanner-4.40.11.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list