Here are the diffs for the 0.96 rc1 package I did.  There is one for the
debian dir changes and one for the diff to the upstream tarball.  I'm sure
it's not ideal, feedback welcome.


Scott K
diff -ruN clamav-0.95.3+dfsg/debian/changelog clamav-0.96~rc1+dfsg/debian/changelog
--- clamav-0.95.3+dfsg/debian/changelog	2010-03-12 18:35:57.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/changelog	2010-03-12 18:35:18.000000000 -0500
@@ -1,3 +1,29 @@
+clamav (0.96~rc1+dfsg-1~exp) experimental; urgency=low
+
+  [ Scott Kitterman ]
+  * New upstream RC:
+    - Add OfficialDatabaseOnly option to clamav-base.postinst.in
+    - Add LocalSocketGroup option to clamav-base.postinst.in
+    - Add LocalSocketMode option to clamav-base.postinst.in
+    - Add CrossFilesystems option to clamav-base.postinst.in
+    - Add ClamukoScannerCount option to clamav-base.postinst.in
+    - Add BytecodeSecurity opiton to clamav-base.postinst.in
+    - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
+    - Add Bytecode option to clamav-freshclam.postinst.in
+    - Add MilterSocketGroup option to clamav-milter.postinst.in
+    - Add MilterSocketMode option to clamav-milter.postinst.in
+    - Add ReportHostname option to clamav-milter.postinst.in
+    - Bump libclamav SO version to 6.1.0 in libclamav6.install
+    - Drop clamdmon from clamav.examples (no longer shipped by upstream)
+    - Drop libclamav.a from libclamav-dev.install (not built by upstream)
+    - Update SO version for lintian override for libclamav6
+    - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
+    - Add build-depends on python and python-setuptools for new test suite
+    - Update debian/copyright for the embedded copy of llvm (using the system
+      llvm is not currently feasible)
+
+ -- ClamAV Team <[email protected]>  Fri, 12 Mar 2010 11:30:04 -0500
+
 clamav (0.95.3+dfsg-1) unstable; urgency=low
 
   [ Michael Tautschnig ]
diff -ruN clamav-0.95.3+dfsg/debian/clamav-base.postinst.in clamav-0.96~rc1+dfsg/debian/clamav-base.postinst.in
--- clamav-0.95.3+dfsg/debian/clamav-base.postinst.in	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/clamav-base.postinst.in	2010-03-12 09:50:25.000000000 -0500
@@ -158,7 +158,13 @@
     fi
     
     [ -z "$DatabaseDirectory" ] && DatabaseDirectory='/var/lib/clamav'
-    
+    [ -z "$OfficialDatabaseOnly" ] && OfficialDatabaseOnly=no
+    [ -z "$LocalSocketGroup" ] && LocalSocketGroup=clamav
+    [ -z "$LocalSocketMode" ] && LocalSocketMode='666'
+    [ -z "$CrossFilesystems" ] && CrossFilesystems=yes
+    [ -z "$ClamukoScannerCount" ] && ClamukoScannerCount='3'
+    [ -z "$BytecodeSecurity" ] && BytecodeSecurity='TrustSigned'
+
     if [ -z "$2" ]; then # Fresh install
       [ -z "$AllowSupplementaryGroups" ] && AllowSupplementaryGroups=true
     elif [ -n "$addgroups" ]; then 
@@ -259,6 +265,12 @@
 LogVerbose $LogVerbose
 PidFile $PidFile
 DatabaseDirectory $DatabaseDirectory
+OfficialDatabaseOnly $OfficialDatabaseOnly
+LocalSocketGroup $LocalSocketGroup
+LocalSocketMode $LocalSocketMode
+CrossFilesystems $CrossFilesystems
+ClamukoScannerCount $ClamukoScannerCount
+BytecodeSecurity $BytecodeSecurity
 SelfCheck $selfcheck
 Foreground $Foreground
 Debug $Debug
diff -ruN clamav-0.95.3+dfsg/debian/clamav.examples clamav-0.96~rc1+dfsg/debian/clamav.examples
--- clamav-0.95.3+dfsg/debian/clamav.examples	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/clamav.examples	2010-03-11 01:37:03.000000000 -0500
@@ -1,2 +1 @@
-contrib/clamdwatch/
 debian/clampipe
diff -ruN clamav-0.95.3+dfsg/debian/clamav-freshclam.postinst.in clamav-0.96~rc1+dfsg/debian/clamav-freshclam.postinst.in
--- clamav-0.95.3+dfsg/debian/clamav-freshclam.postinst.in	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/clamav-freshclam.postinst.in	2010-03-12 08:24:51.000000000 -0500
@@ -134,6 +134,8 @@
   [ -z "$Foreground" ] && Foreground=false
   [ -z "$Debug" ] && Debug=false
   [ -z "$DatabaseDirectory" ] && DatabaseDirectory='/var/lib/clamav/'
+  [ -z "$Bytecode" ] && Bytecode=yes
+  [ -z "$DetectionStatsHostID" ] && DetectionStatsHostID=false
   [ -z "$DNSDatabaseInfo" ] && DNSDatabaseInfo='current.cvd.clamav.net'
   [ -z "$AllowSupplementaryGroups" ] && AllowSupplementaryGroups=false
   [ -z "$PidFile" ] && PidFile='/var/run/clamav/freshclam.pid'
@@ -159,6 +161,8 @@
 Debug $Debug
 MaxAttempts $maxatt
 DatabaseDirectory $DatabaseDirectory
+Bytecode $Bytecode
+DetectionStatsHostID $DetectionStatsHostID
 DNSDatabaseInfo $DNSDatabaseInfo
 AllowSupplementaryGroups $AllowSupplementaryGroups
 PidFile $PidFile
diff -ruN clamav-0.95.3+dfsg/debian/clamav.install clamav-0.96~rc1+dfsg/debian/clamav.install
--- clamav-0.95.3+dfsg/debian/clamav.install	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/clamav.install	2010-03-11 01:51:27.000000000 -0500
@@ -1,3 +1,4 @@
 debian/tmp/usr/bin/clamscan
 debian/tmp/usr/bin/sigtool
+debian/tmp/usr/bin/clambc
 debian/script usr/share/bug/clamav/
diff -ruN clamav-0.95.3+dfsg/debian/clamav-milter.postinst.in clamav-0.96~rc1+dfsg/debian/clamav-milter.postinst.in
--- clamav-0.95.3+dfsg/debian/clamav-milter.postinst.in	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/clamav-milter.postinst.in	2010-03-12 09:50:46.000000000 -0500
@@ -106,6 +106,9 @@
     echo "#To reconfigure clamav-milter run #dpkg-reconfigure clamav-milter" >> $DEBCONFFILE
     echo "#Please read /usr/share/doc/clamav-base/README.Debian.gz for details" >> $DEBCONFFILE
     [ -z "$MilterSocket" ] || [ "$MilterSocket" = 'true' ] && miltersocket="/var/run/clamav/clamav-milter.ctl"
+    [ -z "$MilterSocketGroup" ] && MilterSocketGroup="clamav"
+    [ -z "$MilterSocketMode" ] && MilterSocketMode="666"
+    [ -z "$ReportHostname" ] && ReportHostname="falso"
     [ -z "$FixStaleSocket" ] && fixstalesocket="true"
     [ -z "$User" ] && user=clamav
     [ -z "$AllowSupplementaryGroups" -o -n "$AddGroups" ] && AllowSupplementaryGroups=true
@@ -134,6 +137,9 @@
 
     cat >> $DEBCONFFILE << EOF
 MilterSocket $miltersocket
+MilterSocketGroup $MilterSocketGroup
+MilterSocketMode $MilterSocketMode
+ReportHostname $ReportHostname
 FixStaleSocket $fixstalesocket
 User $user
 AllowSupplementaryGroups $allowsupplementarygroups
diff -ruN clamav-0.95.3+dfsg/debian/control clamav-0.96~rc1+dfsg/debian/control
--- clamav-0.95.3+dfsg/debian/control	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/control	2010-03-12 18:33:11.000000000 -0500
@@ -1,10 +1,9 @@
 Source: clamav
 Section: utils
 Priority: optional
-Maintainer: Ubuntu Developers <[email protected]>
-XSBC-Original-Maintainer: ClamAV Team <[email protected]>
+Maintainer: ClamAV Team <[email protected]>
 Uploaders: Stephen Gran <[email protected]>, Michael Meskes <[email protected]>, Michael Tautschnig <[email protected]>
-Build-Depends: debhelper (>= 6.0.7), po-debconf, zlib1g-dev, libbz2-dev, libmilter-dev, libwrap0-dev, perl, bc, check, libtommath-dev, libltdl3-dev, libncurses5-dev
+Build-Depends: debhelper (>= 6.0.7), po-debconf, zlib1g-dev, libbz2-dev, libmilter-dev, libwrap0-dev, perl, bc, check, libtommath-dev, libltdl-dev, libncurses5-dev, electric-fence, python, python-setuptools
 Standards-Version: 3.8.3
 Homepage: http://www.clamav.net/
 
diff -ruN clamav-0.95.3+dfsg/debian/copyright clamav-0.96~rc1+dfsg/debian/copyright
--- clamav-0.95.3+dfsg/debian/copyright	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/copyright	2010-03-12 11:29:32.000000000 -0500
@@ -773,6 +773,185 @@
 for NSIS, however, are subject to the terms of the Common Public License
 version 1.0.
 
+For libclamav/c++/llvm/* unless otherwise noted:
+
+==============================================================================
+LLVM Release License
+==============================================================================
+University of Illinois/NCSA
+Open Source License
+
+Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.
+All rights reserved.
+
+Developed by:
+
+    LLVM Team
+
+    University of Illinois at Urbana-Champaign
+
+    http://llvm.org
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal with
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+    * Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimers.
+
+    * Redistributions in binary form must reproduce the above copyright notice,
+      this list of conditions and the following disclaimers in the
+      documentation and/or other materials provided with the distribution.
+
+    * Neither the names of the LLVM Team, University of Illinois at
+      Urbana-Champaign, nor the names of its contributors may be used to
+      endorse or promote products derived from this Software without specific
+      prior written permission.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
+SOFTWARE.
+
+==============================================================================
+Copyrights and Licenses for Third Party Software Distributed with LLVM:
+==============================================================================
+The LLVM software contains code written by third parties.  Such software will
+have its own individual LICENSE.TXT file in the directory in which it appears.
+This file will describe the copyrights, license, and restrictions which apply
+to that code.
+
+The disclaimer of warranty in the University of Illinois Open Source License
+applies to all code in the LLVM Distribution, and nothing in any of the
+other licenses gives permission to use the names of the LLVM Team or the
+University of Illinois to endorse or promote products derived from this
+Software.
+
+The following pieces of software have additional or alternate copyrights,
+licenses, and/or restrictions (clamav does not ship a full llvm copy, this
+list is limited to those shipped by clamav):
+
+Program             Directory
+-------             ---------
+Autoconf            llvm/autoconf
+Google Test         llvm/utils/unittest/googletest
+OpenBSD regex       llvm/lib/Support/{reg*, COPYRIGHT.regex}
+
+For libclamav/c++/llvm/autoconf/*
+------------------------------------------------------------------------------
+Autoconf Files
+------------------------------------------------------------------------------
+All autoconf files are licensed under the LLVM license with the following
+additions:
+
+llvm/autoconf/install-sh:
+        This script is licensed under the LLVM license, with the following
+        additional copyrights and restrictions:
+
+        Copyright 1991 by the Massachusetts Institute of Technology
+
+        Permission to use, copy, modify, distribute, and sell this software and its
+        documentation for any purpose is hereby granted without fee, provided that
+        the above copyright notice appear in all copies and that both that
+        copyright notice and this permission notice appear in supporting
+        documentation, and that the name of M.I.T. not be used in advertising or
+        publicity pertaining to distribution of the software without specific,
+        written prior permission.  M.I.T. makes no representations about the
+        suitability of this software for any purpose.  It is provided "as is"
+        without express or implied warranty.
+
+For libclamav/c++/llvm/utils/unittest/googletest/*
+Copyright 2008, Google Inc.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+    * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+    * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+For libclamav/c++/llvm/lib/Support/{reg*, COPYRIGHT.regex}:
+$OpenBSD: COPYRIGHT,v 1.3 2003/06/02 20:18:36 millert Exp $
+
+Copyright 1992, 1993, 1994 Henry Spencer.  All rights reserved.
+This software is not subject to any license of the American Telephone
+and Telegraph Company or of the Regents of the University of California.
+
+Permission is granted to anyone to use this software for any purpose on
+any computer system, and to alter it and redistribute it, subject
+to the following restrictions:
+
+1. The author is not responsible for the consequences of use of this
+   software, no matter how awful, even if they arise from flaws in it.
+
+2. The origin of this software must not be misrepresented, either by
+   explicit claim or by omission.  Since few users ever read sources,
+   credits must appear in the documentation.
+
+3. Altered versions must be plainly marked as such, and must not be
+   misrepresented as being the original software.  Since few users
+   ever read sources, credits must appear in the documentation.
+
+4. This notice may not be removed or altered.
+
+=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+/*-
+ * Copyright (c) 1994
+ *	The Regents of the University of California.  All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ *	@(#)COPYRIGHT	8.1 (Berkeley) 3/16/94
+ */
+
 
 The libclamunrar code has been stripped from the orig tarball due to
 license incompatibilities.
diff -ruN clamav-0.95.3+dfsg/debian/libclamav6.install clamav-0.96~rc1+dfsg/debian/libclamav6.install
--- clamav-0.95.3+dfsg/debian/libclamav6.install	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/libclamav6.install	2010-03-11 01:28:20.000000000 -0500
@@ -1,2 +1,2 @@
-debian/tmp/usr/lib/libclamav.so.6.0.*
+debian/tmp/usr/lib/libclamav.so.6.1.*
 debian/tmp/usr/lib/libclamav.so.6
diff -ruN clamav-0.95.3+dfsg/debian/libclamav6.lintian-overrides clamav-0.96~rc1+dfsg/debian/libclamav6.lintian-overrides
--- clamav-0.95.3+dfsg/debian/libclamav6.lintian-overrides	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/libclamav6.lintian-overrides	2010-03-11 01:45:45.000000000 -0500
@@ -1 +1 @@
-libclamav6 binary: embedded-zlib ./usr/lib/libclamav.so.6.0.5
+libclamav6 binary: embedded-zlib ./usr/lib/libclamav.so.6.1.0
diff -ruN clamav-0.95.3+dfsg/debian/libclamav-dev.install clamav-0.96~rc1+dfsg/debian/libclamav-dev.install
--- clamav-0.95.3+dfsg/debian/libclamav-dev.install	2010-03-10 15:50:34.000000000 -0500
+++ clamav-0.96~rc1+dfsg/debian/libclamav-dev.install	2010-03-11 01:40:50.000000000 -0500
@@ -1,5 +1,4 @@
 debian/tmp/usr/lib/libclamav.so
-debian/tmp/usr/lib/libclamav.a
 debian/tmp/usr/lib/libclamav.la
 debian/tmp/usr/include/*
 debian/tmp/usr/lib/pkgconfig/libclamav.pc usr/lib/pkgconfig/
--- clamav-0.96~rc1+dfsg.orig/docs/man/clamd.conf.5.in
+++ clamav-0.96~rc1+dfsg/docs/man/clamd.conf.5.in
@@ -1,4 +1,4 @@
-.TH "clamd.conf" "5" "February 12, 2007" "ClamAV @VERSION@" "Clam AntiVirus"
+.TH "clamd.conf" "5" "November 2, 2009" "ClamAV @VERSION@" "Clam AntiVirus"
 .SH "NAME"
 .LP 
 \fBclamd.conf\fR \- Configuration file for Clam AntiVirus Daemon
@@ -148,7 +148,7 @@
 the following condition should hold:
 MaxThreads*MaxRecursion + MaxQueue - MaxThreads + 6 < RLIMIT_NOFILE.\fR
 RLIMIT_NOFILE is the maximum number of open file descriptors (usually 1024), set
-by \fBulimit -n\fR.
+by \fBulimit \-n\fR.
 .br
 Default: 100
 .TP 
@@ -369,8 +369,8 @@
 \fBArchiveBlockMax (OBSOLETE)\fR
 \fBWARNING:\fR This option is no longer accepted.
 .TP 
-\fBArchiveLimitMemoryUsage BOOL\fR
-Use slower decompression algorithm which uses less memory. This option only affects the bzip2 decompressor.
+\fBArchiveLimitMemoryUsage (OBSOLETE)\fR
+\fBWARNING:\fR This option is no longer accepted.
 .br 
 Default: no
 .TP 
--- clamav-0.96~rc1+dfsg.orig/etc/clamd.conf
+++ clamav-0.96~rc1+dfsg/etc/clamd.conf
@@ -11,7 +11,7 @@
 # LogFile must be writable for the user running daemon.
 # A full path is required.
 # Default: disabled
-#LogFile /tmp/clamd.log
+#LogFile /var/log/clamav/clamd.log
 
 # By default the log file is locked for writing - the lock protects against
 # running clamd multiple times (if want to run another clamd, please
@@ -54,7 +54,7 @@
 # This option allows you to save a process identifier of the listening
 # daemon (main thread).
 # Default: disabled
-#PidFile /var/run/clamd.pid
+#PidFile /var/run/clamav/clamd.pid
 
 # Optional path to the global temporary directory.
 # Default: system specific (usually /tmp or /var/tmp).
@@ -73,7 +73,7 @@
 
 # Path to a local socket file the daemon will listen on.
 # Default: disabled (must be specified by a user)
-#LocalSocket /tmp/clamd.socket
+#LocalSocket /var/run/clamav/clamd
 
 # Sets the group ownership on the unix socket.
 # Default: disabled (the primary group of the user running clamd)
--- clamav-0.96~rc1+dfsg.orig/etc/clamav-milter.conf
+++ clamav-0.96~rc1+dfsg/etc/clamav-milter.conf
@@ -64,7 +64,7 @@
 # daemon (main thread).
 #
 # Default: disabled
-#PidFile /var/run/clamav-milter.pid
+#PidFile /var/run/clamav/clamav-milter.pid
 
 # Optional path to the global temporary directory.
 # Default: system specific (usually /tmp or /var/tmp).
@@ -91,6 +91,7 @@
 #
 # Default: no default
 #ClamdSocket tcp:scanner.mydomain:7357
+ClamdSocket /var/run/clamav/clamd
 
 
 ##
@@ -196,7 +197,7 @@
 # A full path is required.
 #
 # Default: disabled
-#LogFile /tmp/clamav-milter.log
+#LogFile /var/log/clamav/clamav-milter.log
 
 # By default the log file is locked for writing - the lock protects against
 # running clamav-milter multiple times.
--- clamav-0.96~rc1+dfsg.orig/etc/freshclam.conf
+++ clamav-0.96~rc1+dfsg/etc/freshclam.conf
@@ -14,7 +14,7 @@
 
 # Path to the log file (make sure it has proper permissions)
 # Default: disabled
-#UpdateLogFile /var/log/freshclam.log
+#UpdateLogFile /var/log/clamav/freshclam.log
 
 # Maximum size of the log file.
 # Value of 0 disables the limit.
@@ -43,7 +43,7 @@
 
 # This option allows you to save the process identifier of the daemon
 # Default: disabled
-#PidFile /var/run/freshclam.pid
+#PidFile /var/run/clamav/freshclam.pid
 
 # By default when started freshclam drops privileges and switches to the
 # "clamav" user. This directive allows you to change the database owner.
_______________________________________________
Pkg-clamav-devel mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-clamav-devel

Reply via email to