[Pkg-logwatch-general] r48 - in branches: . 7.3 7.3/debian 7.3/debian/dist.conf/services 7.3/patches 7.3/supposed-copyright 7.3/supposed-copyright/logfiles/samba 7.3/supposed-copyright/logfiles/xferlog

Willi Mann willi-guest at costa.debian.org
Sat Sep 16 20:07:50 UTC 2006


Author: willi-guest
Date: 2006-09-16 20:07:50 +0000 (Sat, 16 Sep 2006)
New Revision: 48

Added:
   branches/7.3/
   branches/7.3/debian/README.Debian
   branches/7.3/debian/changelog
   branches/7.3/debian/control
   branches/7.3/debian/copyright
   branches/7.3/debian/dist.conf/services/fail2ban.conf
   branches/7.3/patches/01-fail2banv2.diff
   branches/7.3/supposed-copyright/
   branches/7.3/supposed-copyright/list.sh
   branches/7.3/supposed-copyright/logfiles/samba/applydate
   branches/7.3/supposed-copyright/logfiles/xferlog/applydate
   branches/7.3/supposed-copyright/logfiles/xferlog/removeheaders
Removed:
   branches/7.3/debian/README.Debian
   branches/7.3/debian/changelog
   branches/7.3/debian/control
   branches/7.3/debian/copyright
   branches/7.3/debian/dist.conf/services/fail2ban.conf
   branches/7.3/supposed-copyright/logfiles/samba/applydate
   branches/7.3/supposed-copyright/logfiles/xferlog/applydate
   branches/7.3/supposed-copyright/logfiles/xferlog/removeheaders
Log:
Add branch for last 7.3 release


Copied: branches/7.3 (from rev 41, trunk)

Deleted: branches/7.3/debian/README.Debian
===================================================================
--- trunk/debian/README.Debian	2006-05-03 16:51:45 UTC (rev 41)
+++ branches/7.3/debian/README.Debian	2006-09-16 20:07:50 UTC (rev 48)
@@ -1,81 +0,0 @@
-access.log parsing - service http:
-==================================
-
-Since 6.1.2, there is a new format for specifying the logfile format.
-I could only test it for apache2. If it doesn't work for your webserver,
-please submit a bugreport with some LogLines.
-
-
-
-Getting fortunes in your language
-=================================
-
-If you want to see fortunes in your favourite language, you need to pass a 
-valid LC_ALL setting to logwatch. If you don't use a valid (read: enabled by 
-dpkg-reconfigure locales) value, logwatch (perl) will complain. To pass that 
-setting in the automatic daily run, you need to modify 
-/etc/cron.daily/00logwatch
-
-
-
-Howto modify a filter:
-======================
-
-Way #1: copy the filterscript from /usr/share/logwatch/scripts to 
-/etc/logwatch/scripts, preserving the hierarchy. Then modfiy it. The 
-disadvantage is that you will not be able to track upstream changes. Please 
-read more in /usr/share/doc/logwatch/HOWTO-Customize-LogWatch
-
-Way #2: patch the source, rebuild. This might be the better option if you have
-many machines to maintain.
-
-A text that I've written for version 5.2.2 follows, explaining how to 
-recompile:
-
-In Redhat, the distribution logwatch was written on, all logwatch files where 
-put in /etc, so the problem didn't exist (This is no longer true since 7.0). In
-Debian, this is not allowed because nobody can seriously claim the filter 
-scripts to be configuration files.
-
-This means that you have to:
-(This is meant to be short HOWTO, just in case you've never modified the 
-source of a debian package before)
-- download the source
-$ apt-get source logwatch
-- cd to source dir
-$ cd logwatch-$version
-- save the file you want to edit
-$ cp $filetochange $filetochange.old
-- make the modifications
-$ $EDITOR $filetochange
-- save the diff somewhere, so you can simply patch the file if a new version 
-  comes out
-$ diff -u $filetochange.old $filetochange > $someplacetostorediff
-- I recommend to increment the version number
-$ dch -i
-  you get an editor with debian/changelog. Modify the version number so it's
-  only slightly larger than the current debian version (e.g. 5.2.2-2 =>
-  5.2.2-2.0.0.1)
-- build the package, eg:
-$ dpkg-buildpackage -rfakeroot
-  or
-$ debuild
--install the package
-$ debi
-or
-$ dpkg -i ../logwatch_$version.deb
-
-
-
-For the people interested how I got the names of all contributors:
-==================================================================
-
-The self-written script getnames is available from:
-http://student.cosy.sbg.ac.at/~wmann/software/junkcode/getnames
-
-Now run in the root of the source package:
-
-find scripts/ -type f -exec cat {} \; | getnames | sort -u
-
-and remove the wrong lines. 
-

Copied: branches/7.3/debian/README.Debian (from rev 44, trunk/debian/README.Debian)
===================================================================
--- branches/7.3/debian/README.Debian	                        (rev 0)
+++ branches/7.3/debian/README.Debian	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1,67 @@
+access.log parsing - service http:
+==================================
+
+Since 6.1.2, there is a new format for specifying the logfile format.
+I could only test it for apache2. If it doesn't work for your webserver,
+please submit a bugreport with some LogLines.
+
+
+
+Getting fortunes in your language
+=================================
+
+If you want to see fortunes in your favourite language, you need to pass a 
+valid LC_ALL setting to logwatch. If you don't use a valid (read: enabled by 
+dpkg-reconfigure locales) value, logwatch (perl) will complain. To pass that 
+setting in the automatic daily run, you need to modify 
+/etc/cron.daily/00logwatch
+
+
+
+Howto modify a filter:
+======================
+
+Way #1: copy the filterscript from /usr/share/logwatch/scripts to 
+/etc/logwatch/scripts, preserving the hierarchy. Then modfiy it. The 
+disadvantage is that you will not be able to track upstream changes. Please 
+read more in /usr/share/doc/logwatch/HOWTO-Customize-LogWatch
+
+Way #2: patch the source, rebuild. This might be the better option if you have
+many machines to maintain.
+
+A text that I've written for version 5.2.2 follows, explaining how to 
+recompile:
+
+In Redhat, the distribution logwatch was written on, all logwatch files where 
+put in /etc, so the problem didn't exist (This is no longer true since 7.0). In
+Debian, this is not allowed because nobody can seriously claim the filter 
+scripts to be configuration files.
+
+This means that you have to:
+(This is meant to be short HOWTO, just in case you've never modified the 
+source of a debian package before)
+- download the source
+$ apt-get source logwatch
+- cd to source dir
+$ cd logwatch-$version
+- save the file you want to edit
+$ cp $filetochange $filetochange.old
+- make the modifications
+$ $EDITOR $filetochange
+- save the diff somewhere, so you can simply patch the file if a new version 
+  comes out
+$ diff -u $filetochange.old $filetochange > $someplacetostorediff
+- I recommend to increment the version number
+$ dch -i
+  you get an editor with debian/changelog. Modify the version number so it's
+  only slightly larger than the current debian version (e.g. 5.2.2-2 =>
+  5.2.2-2.0.0.1)
+- build the package, eg:
+$ dpkg-buildpackage -rfakeroot
+  or
+$ debuild
+-install the package
+$ debi
+or
+$ dpkg -i ../logwatch_$version.deb
+

Deleted: branches/7.3/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-05-03 16:51:45 UTC (rev 41)
+++ branches/7.3/debian/changelog	2006-09-16 20:07:50 UTC (rev 48)
@@ -1,341 +0,0 @@
-logwatch (7.3-1) unstable; urgency=low
-
-  * New upstream release
-    - this should fix the reports about exim "Unmatched Entries". 
-      closes: #298275. 
-  * Add another unmatched entry for imapd - thanks again to Richard Burton
-    for the report. closes: #356815
-  * Add some unmatched lines for smartd. 
-  * remove no longer needed debian-specific logfile definitions. merged
-    upstream.
-  * add fail2ban scripts from Yaroslav Halchenko. closes: #359177
-  * policy version 3.7.0.0, no changes
-
- -- Willi Mann <willi at wm1.at>  Sun, 19 Mar 2006 18:29:50 +0100
-
-logwatch (7.2.1-2) unstable; urgency=low
-
-  * Set absolute path to sendmail in logwatch.conf
-  * MailFrom set to "root". The user "logwatch" may not exist and 
-    cause problems. 
-  * Add Unmatched line for imapd. closes: #352333, thanks to Richard Burton
-    for the report.
-  * Handle some unmatched lines for secure. closes: #355528, thanks again to 
-    Richard Burton for the report.
-  * Drop the service-exim patch, it's no longer needed. 
-
- -- Willi Mann <willi at wm1.at>  Sat, 11 Feb 2006 16:49:59 +0100
-
-logwatch (7.2.1-1) unstable; urgency=low
-
-  * New upstream release
-    - Drop dependency on gawk
-    - Drop all patches except service-exim.diff, service-secure.diff
-  * Change DH_COMPAT from 3 to 4. Put ${misc:Depends} to Depends: in
-    debian/control.
-  * Support the string " (remote reception)" as additional part in sysklogd
-    restarts. closes: #348974, thanks to Richard Antony Burton for the report.
-    (new patch z-bug-348974.diff)
-  * Document how to get fortunes in ones favourite language.
-  * Change MTA to sendmail, change dependencies to exim | mail-transport-agent
-  * The logfiles/sonicwall.conf file included messages in its LogFile setting,
-    duplicating the whole messages logfile, and much earlier filing up the
-    root partition for busy sites. closes: #349328, thanks to Graham Cobb for 
-    the report.
-  * Add new unrecognized line from su in secure. We ignore it, it's handled by
-    pam_unix anyway. thanks Richard Antony Burton for the report (no bug id)
-  
- -- Willi Mann <willi at wm1.at>  Sat, 21 Jan 2006 13:34:03 +0100
-
-logwatch (7.1-2) unstable; urgency=low
-
-  * Remove part of the cron patch, it was redundant.
-  * Workaround to preserve language environment for fortunes closes: #340903,
-    thanks to Benoit Dejean <benoit at placenet.org> for the report.
-  * Openvpn logs to daemon, the server uses ovpn-[^\s]* as name. (The simpler
-    form ovpn-\S* does not work, 'cause logwatch lowercases all conf options.)
-    closes: #341863, thanks to David Anselmi <anselmi at anselmi.us> for the
-    report.
-  * logfiles/daemon.conf didn't contain the calls to the appropriate logfile
-    scripts. closes: #343331, thanks to Arne Roolfs <aroolfs at gmx.de> for the
-    report. 
-
- -- Willi Mann <willi at wm1.at>  Sun,  4 Dec 2005 10:53:37 +0100
-
-logwatch (7.1-1) unstable; urgency=low
-
-  * New upstream release
-    - new standards version 3.6.2 (no changes)
-    - Closes: #317894, frequent typo "IngnoreUnmatched" in various scripts,
-      Closes: #317913, fixes in pure-ftpd
-      both fixes by Piotr Krukowiecki (thanks)
-    - Closes: #323919, regexes for http exploits did not escape "."
-      thanks to Taco IJsselmuiden for the report
-  * Cope with the new directory layout. 
-    - There is a preinst script now, the removes unneeded config files.
-    - README.Debian updated
-    - NEWS.Debian added
-    - debian/rules updated
-  * This package is now maintained as project "pkg-logwatch" on
-    alioth.debian.org. The svn repository is on svn.debian.org.
-  * Depend on gawk, and explicity use it in zz-disk_space. Seems that there is
-    some GNUism.
-    
- -- Willi Mann <willi at wm1.at>  Sat, 19 Nov 2005 16:39:24 +0100
-
-logwatch (6.1.2-1) unstable; urgency=low
-
-  * New upstream release
-  * Provide a script that removes "dead" service configuration files.
-    Located at /usr/share/doc/logwatch/examples/. closes: #310504
-  * Some updates to README.Debian.
-  * Update the copyright file.
-
- -- Willi Mann <willi at wm1.at>  Wed, 15 Jun 2005 16:06:55 +0200
-
-logwatch (6.1.1-1) unstable; urgency=low
-
-  * New upstream release
-    - New format for specifying the format of http Logformat (it's possible
-      that we lose debian apache1 support)
-  * Ignore some cyrus lines (patch submitted by Tommy <mtommy at usa.net>)
-
- -- Willi Mann <willi at wm1.at>  Thu,  9 Jun 2005 21:48:56 +0200
-
-logwatch (6.1-1) unstable; urgency=low
-
-  * New upstream release
-  * Drop Recommends on libtie-ixhash-perl, libdate-calc-perl. services/exim 
-    no longer needs them.
-  * Ignore two unknown entries in services/secure. 
-    (pam_authenticate, - pts). They are done in services/pam_unix.
-
- -- Willi Mann <willi at wm1.at>  Wed,  8 Jun 2005 15:18:27 +0200
-
-logwatch (6.0.2-1) experimental; urgency=low
-
-  * New upstream release
-    - Many patches were applied upstream
-  * Remove the Makefile, do that job in debian/rules.
-
- -- Willi Mann <willi at wm1.at>  Sat, 30 Apr 2005 16:02:53 +0200
-
-logwatch (6.0.1-1) experimental; urgency=low
-
-  * New upstream release (closes: #302423)
-    - Dropped many patches that were applied upstream.
-    - gawk is no longer needed for sendmail-largeboxes 
-      (changes in README.Debian and control)
-    - some patch porting in sshd.
-  * fixes from 5.2.2-5 and 5.2.2-6:
-    - services/http: 
-      + Support .html.language-ext html files. (Bug: #303345, thanks to 
-        Klaus Ethgen <Klaus at Ethgen.de> for the report and the fix)
-      + Add support for "/sqwebmail". 
-    - Accept more chars in usernames in services/sudo script (Bug: #302132, 
-      thanks to Richard Mortimer <richm at esblimited.co.uk>)
-  * Add perl header "#!/usr/bin/perl" at the top of every executeable perl 
-    script. The code is in the Makefile. Don't know why upstream removed it. 
-
- -- Willi Mann <willi at wm1.at>  Mon, 21 Mar 2005 20:39:45 +0100
-
-logwatch (5.2.2-4) unstable; urgency=medium
-
-  * Reformat README.Debian.
-  * Add info to README.Debian how to get correct http output when using 
-    default apache1 configuration as LogFormat. Add the apache1 default 
-    LogFormat as alternative to conf/services/http.conf. (Closes: #293115,
-    thanks to Vic Gedris <debian_bugs at gedris.org>)
-  * Make the smartd service (smartmontools) working. It's logging to 
-    daemon.log, not to messages. (Closes: #295234, thanks to 
-    Piotr Krukowiecki <piotrwww at krukowiecki.net>)
-  * Set LC_ALL=C in the main logwatch script. (closes: #296979, thanks to
-    Gilmar Junior <gilmar_santos_jr-geral at yahoo.com.br>
-  * Fix logfiles/http.conf. All events were logged twice. 
-  * Correct logfiles/{daemon,http,maillog,secure}.conf to always include the
-    first rotated logfile. (So no need to use --archives for full accuracy for 
-    reports of range "yesterday"). Otherwise some events might get lost. Some 
-    other logfile configurations should also get corrected but I can't verify 
-    them because I don't have the services running.
-
- -- Willi Mann <willi at wm1.at>  Wed, 16 Feb 2005 19:43:30 +0100
-
-logwatch (5.2.2-3) unstable; urgency=medium
-
-  * Include HOWTO-Make-Filter (closes: #287165)
-  * Patches from Piotr Krukowiecki <piotrwww at krukowiecki.net>:
-    - One line to postfix ("starting TLS engine")
-    - One modification to samba ("*initially* as user") (closes: #289073)
-  * Move binary building from binary-arch to binary-indep (finally)
-  * s/_/./ in conf/logfiles/http.conf to make it work with apache1
-  * Syslogd now gets feeded by syslog logfile, not messages.
-  * Added a kernel logfile group (kern.log), and the kernel script now 
-    uses this instead of messages.
-   (thanks to Petr Stehlik <pstehlik at sophics.cz> for the last three 
-    suggested enhancements, closes: #287963)
-  * Added short info how to modify a filter to README.Debian
-  * Consider space in the postfix logs (closes: #289074, thanks to 
-    Alex Satrapa <alex.satrapa at apf.edu.au>)
-  * Fix two lintian warnings concerning the synopsis part of the 
-    package description. (Remove the "A ")
-
- -- Willi Mann <willi at wm1.at>  Sat, 25 Dec 2004 10:09:58 +0100
-
-logwatch (5.2.2-2) unstable; urgency=high
-
-  * Enhance description, fix some typos and spelling mistakes.
-  * Fix zz-disk_space for very long device names: Use POSIX output to ensure
-    that there's always one line per mount point and the grep works correctly.
-    (closes: #278816, thanks to Kees van Vloten <kvv at chopin.demon.nl>)
-  * Small fixes to the courier script. 
-    - Don't print newline if nothing else is printed.
-    - add -ssl for pop3d and imap (closes: #278680, thanks to Wayne Davison
-    <wayned at users.sourceforge.net>)
-  * Change title of courier reports to "courier mail services".
-  * Cleanups and fixes for the logfiles configuration files:
-    - fix and remove Archive lines.
-    - fix http.conf for debian 
-    - consistency fixes
-    mostly reported by Simon Schoar <simon at schoar.de>, closes: #280164
-  * two minor enhancements/fixes to named reporting. (Unmatched Entries)
-  * support "not in AllowUsers" log line in sshd.
-
- -- Willi Mann <willi at wm1.at>  Sat, 23 Oct 2004 11:05:32 +0200
-
-logwatch (5.2.2-1) unstable; urgency=low
-
-  * New upstream release (Closes: #261275)
-  * Completely remove su reporting from secure
-    + other minor changes in secure.
-  * Update copyright file.
-  * Add support for kcheckpass to pam_unix (which I've seen for 
-    unlocking the screen saver) 
-  * Remove the unneccessary part "first accept valid lines" from pam_unix.
-  * Other small changes to pam_unix.
-  * Make clam-update working.
-  * Big rewrite of the courier script (and courier.conf). 
-    It's now under GPL.
-  * Recommend gawk, but don't print stupid error message if it doesn't exist
-    (exit the script), and add info to README.Debian about that. (The affected 
-    service was sendmail-largeboxes)
-  * Get rid of some unmatched entries in cron
-  * Fix for parsing postfix 2.1.4. ("Client Host") (closes: #275051, thanks to 
-    Wayne Davison <wayned at users.sourceforge.net>)
-
- -- Willi Mann <willi at wm1.at>  Fri,  3 Sep 2004 09:20:58 +0200
-
-logwatch (5.1-6) unstable; urgency=medium
-
-   Urgency medium because of wrong copyright file currently in sarge. 
-
-  * Correct copyright file.
-  * Fix the service extraction in pam_unix for woody.
-  * exim filter: 
-    - Fix some problems with the exim service script and the 
-      logfile config file.
-    - include information in Readme.Debian about the required packages
-      for the exim script.
-    (closes: #260056, thanks to James Clendenan for the report.)
-  * Fix reporting of samba in pam_unix.
-  * Throw out some unneeded lines in debian/rules.
-
- -- Willi Mann <willi at wm1.at>  Mon, 21 Jun 2004 22:50:52 +0200
-
-logwatch (5.1-5) unstable; urgency=medium
-
-    Urgency medium because non-working cron-reporting should go away from
-    testing as fast as possible. 
-
-  * Fix cron-script /usr/bin -> /usr/sbin. (closes: #253859, thanks to 
-    Ian MacDonald). Forgot to list that change in previous changelog.
-  * Fix (the first really upstream?) bug in logwatch: A small mistake
-    in sshd-reporting. (thanks to Manabu Matsui, closes: #254968)
-  * Don't report pam_unix in SSHD.
-  * Fix a pam_unix -line for su.
-  * Don't report pam_limits in secure. 
-
- -- Willi Mann <willi at wm1.at>  Sat, 12 Jun 2004 12:07:42 +0200
-
-logwatch (5.1-4) unstable; urgency=low
-
-  * Fix typo in Description, thanks to Gustavo Franco (closes: #247497) 
-  * Fix pam_unix reporting. It seems that pam has changed. Maybe I need
-    script that warns me when the log-format of pam_unix-entries changes... 
-    thanks for reporting Klaus Ethgen. (closes: #247257)
-  * Handle some previously unmatched lines in secure. Added temporary hack
-    to have a nice output until I can fix #239626. 
-  * Add syslog.0 as logfile to syslog.conf because syslog is rotated daily, 
-    so I would never see cron-reporting if I use logwatch from 
-    command-line (helps development). 
-  + Move symlink to main script from /usr/bin -> /usr/sbin. Fixes a lintian
-    warning. (This changelog entry was added after the package has been
-    uploaded.) 
-
- -- Willi Mann <willi at wm1.at>  Wed,  5 May 2004 19:47:35 +0200
-
-logwatch (5.1-3) unstable; urgency=low
-
-  * I'm not from marketing: proper upstream homepage url: 
-    www... -> http://www...
-  * Don't report PAM_unix lines in secure: support for woody. thanks to 
-    Michael Stovenour for the report (closes: #239626)
-  * Added fortune-mod to Suggests.
-  * Removed some lines which were already commented out. 
-
- -- Willi Mann <willi at wm1.at>  Mon, 15 Mar 2004 21:31:39 +0100
-
-logwatch (5.1-2) unstable; urgency=low
-
-  * Verify in the cron script that logwatch is really installed
-    (not removed-but-not-purged)
-  * Set standards-version to 3.6.1.0 instead of 3.6.1 to exactly match
-    the current version. 
-  * Make reporting of syslogd - restarts working again
-  * Force permissions of all *.confs to 0644 using find
-  * logfile-group maillog now uses mail.log instead of mail.err, mail.info,
-    mail.warn to avoid possible double-reporting
-  * Avoid calling the target install of Makefile twice
-
- -- Willi Mann <willi at wm1.at>  Wed, 11 Feb 2004 23:29:08 +0100
-
-logwatch (5.1-1) unstable; urgency=low
-
-  * New upstream release 5.1
-  * Make cron reporting working again. It's the only service that 
-    only logs to the syslog logfile. 
-
- -- Willi Mann <willi at wm1.at>  Wed,  4 Feb 2004 20:18:37 +0100
-
-logwatch (5.0+5.1pre1-2) unstable; urgency=low
-
-  * Force permissions of all scripts to 0755 
-
- -- Willi Mann <willi at wm1.at>  Mon,  2 Feb 2004 11:36:38 +0100
-
-logwatch (5.0+5.1pre1-1) unstable; urgency=low
-
-  * Bump to pre5.1
-  * Revert some changes, that turned out not to be neccessary. 
-  * Changed description
-
- -- Willi Mann <willi at wm1.at>  Sun,  1 Feb 2004 23:44:03 +0100
-
-logwatch (5.0-2) unstable; urgency=low
-
-  * Fix permission of /etc/logwatch/conf/services/pureftpd.conf by chmod in
-    Makefile.
-  * Make more services work (see state_of_debianizing).
-    
-
- -- Willi Mann <willi at wm1.at>  Wed, 14 Jan 2004 17:30:12 +0100
-
-logwatch (5.0-1) unstable; urgency=low
-
-  * Initial Release.
-  * Reporting for many services should work, including cron, ssh, courier,
-    exim.
-  * Please report bugs. If a particular service has no output, I need the path
-    to the logfile(s). That's most likely the problem.
-
- -- Willi Mann <willi at wm1.at>  Wed, 12 Nov 2003 20:14:15 +0100
-

Copied: branches/7.3/debian/changelog (from rev 46, trunk/debian/changelog)
===================================================================
--- branches/7.3/debian/changelog	                        (rev 0)
+++ branches/7.3/debian/changelog	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1,351 @@
+logwatch (7.3-2) unstable; urgency=low
+
+  * Update fail2ban script to recognise some more messages. Patch by 
+    Yaroslav Halchenko.
+  * Update standards version to 3.7.2. No changes.
+  * Update debian/copyright
+  * Fix lintian warning build-depends-indep-should-be-build-depends debhelper.
+
+ -- Willi Mann <willi at wm1.at>  Thu, 25 May 2006 17:37:58 +0200
+
+logwatch (7.3-1) unstable; urgency=low
+
+  * New upstream release
+    - this should fix the reports about exim "Unmatched Entries". 
+      closes: #298275. 
+  * Add another unmatched entry for imapd - thanks again to Richard Burton
+    for the report. closes: #356815
+  * Add some unmatched lines for smartd. 
+  * remove no longer needed debian-specific logfile definitions. merged
+    upstream.
+  * add fail2ban scripts from Yaroslav Halchenko. closes: #359177
+  * policy version 3.7.0.0, no changes
+
+ -- Willi Mann <willi at wm1.at>  Sun, 19 Mar 2006 18:29:50 +0100
+
+logwatch (7.2.1-2) unstable; urgency=low
+
+  * Set absolute path to sendmail in logwatch.conf
+  * MailFrom set to "root". The user "logwatch" may not exist and 
+    cause problems. 
+  * Add Unmatched line for imapd. closes: #352333, thanks to Richard Burton
+    for the report.
+  * Handle some unmatched lines for secure. closes: #355528, thanks again to 
+    Richard Burton for the report.
+  * Drop the service-exim patch, it's no longer needed. 
+
+ -- Willi Mann <willi at wm1.at>  Sat, 11 Feb 2006 16:49:59 +0100
+
+logwatch (7.2.1-1) unstable; urgency=low
+
+  * New upstream release
+    - Drop dependency on gawk
+    - Drop all patches except service-exim.diff, service-secure.diff
+  * Change DH_COMPAT from 3 to 4. Put ${misc:Depends} to Depends: in
+    debian/control.
+  * Support the string " (remote reception)" as additional part in sysklogd
+    restarts. closes: #348974, thanks to Richard Antony Burton for the report.
+    (new patch z-bug-348974.diff)
+  * Document how to get fortunes in ones favourite language.
+  * Change MTA to sendmail, change dependencies to exim | mail-transport-agent
+  * The logfiles/sonicwall.conf file included messages in its LogFile setting,
+    duplicating the whole messages logfile, and much earlier filing up the
+    root partition for busy sites. closes: #349328, thanks to Graham Cobb for 
+    the report.
+  * Add new unrecognized line from su in secure. We ignore it, it's handled by
+    pam_unix anyway. thanks Richard Antony Burton for the report (no bug id)
+  
+ -- Willi Mann <willi at wm1.at>  Sat, 21 Jan 2006 13:34:03 +0100
+
+logwatch (7.1-2) unstable; urgency=low
+
+  * Remove part of the cron patch, it was redundant.
+  * Workaround to preserve language environment for fortunes closes: #340903,
+    thanks to Benoit Dejean <benoit at placenet.org> for the report.
+  * Openvpn logs to daemon, the server uses ovpn-[^\s]* as name. (The simpler
+    form ovpn-\S* does not work, 'cause logwatch lowercases all conf options.)
+    closes: #341863, thanks to David Anselmi <anselmi at anselmi.us> for the
+    report.
+  * logfiles/daemon.conf didn't contain the calls to the appropriate logfile
+    scripts. closes: #343331, thanks to Arne Roolfs <aroolfs at gmx.de> for the
+    report. 
+
+ -- Willi Mann <willi at wm1.at>  Sun,  4 Dec 2005 10:53:37 +0100
+
+logwatch (7.1-1) unstable; urgency=low
+
+  * New upstream release
+    - new standards version 3.6.2 (no changes)
+    - Closes: #317894, frequent typo "IngnoreUnmatched" in various scripts,
+      Closes: #317913, fixes in pure-ftpd
+      both fixes by Piotr Krukowiecki (thanks)
+    - Closes: #323919, regexes for http exploits did not escape "."
+      thanks to Taco IJsselmuiden for the report
+  * Cope with the new directory layout. 
+    - There is a preinst script now, the removes unneeded config files.
+    - README.Debian updated
+    - NEWS.Debian added
+    - debian/rules updated
+  * This package is now maintained as project "pkg-logwatch" on
+    alioth.debian.org. The svn repository is on svn.debian.org.
+  * Depend on gawk, and explicity use it in zz-disk_space. Seems that there is
+    some GNUism.
+    
+ -- Willi Mann <willi at wm1.at>  Sat, 19 Nov 2005 16:39:24 +0100
+
+logwatch (6.1.2-1) unstable; urgency=low
+
+  * New upstream release
+  * Provide a script that removes "dead" service configuration files.
+    Located at /usr/share/doc/logwatch/examples/. closes: #310504
+  * Some updates to README.Debian.
+  * Update the copyright file.
+
+ -- Willi Mann <willi at wm1.at>  Wed, 15 Jun 2005 16:06:55 +0200
+
+logwatch (6.1.1-1) unstable; urgency=low
+
+  * New upstream release
+    - New format for specifying the format of http Logformat (it's possible
+      that we lose debian apache1 support)
+  * Ignore some cyrus lines (patch submitted by Tommy <mtommy at usa.net>)
+
+ -- Willi Mann <willi at wm1.at>  Thu,  9 Jun 2005 21:48:56 +0200
+
+logwatch (6.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Drop Recommends on libtie-ixhash-perl, libdate-calc-perl. services/exim 
+    no longer needs them.
+  * Ignore two unknown entries in services/secure. 
+    (pam_authenticate, - pts). They are done in services/pam_unix.
+
+ -- Willi Mann <willi at wm1.at>  Wed,  8 Jun 2005 15:18:27 +0200
+
+logwatch (6.0.2-1) experimental; urgency=low
+
+  * New upstream release
+    - Many patches were applied upstream
+  * Remove the Makefile, do that job in debian/rules.
+
+ -- Willi Mann <willi at wm1.at>  Sat, 30 Apr 2005 16:02:53 +0200
+
+logwatch (6.0.1-1) experimental; urgency=low
+
+  * New upstream release (closes: #302423)
+    - Dropped many patches that were applied upstream.
+    - gawk is no longer needed for sendmail-largeboxes 
+      (changes in README.Debian and control)
+    - some patch porting in sshd.
+  * fixes from 5.2.2-5 and 5.2.2-6:
+    - services/http: 
+      + Support .html.language-ext html files. (Bug: #303345, thanks to 
+        Klaus Ethgen <Klaus at Ethgen.de> for the report and the fix)
+      + Add support for "/sqwebmail". 
+    - Accept more chars in usernames in services/sudo script (Bug: #302132, 
+      thanks to Richard Mortimer <richm at esblimited.co.uk>)
+  * Add perl header "#!/usr/bin/perl" at the top of every executeable perl 
+    script. The code is in the Makefile. Don't know why upstream removed it. 
+
+ -- Willi Mann <willi at wm1.at>  Mon, 21 Mar 2005 20:39:45 +0100
+
+logwatch (5.2.2-4) unstable; urgency=medium
+
+  * Reformat README.Debian.
+  * Add info to README.Debian how to get correct http output when using 
+    default apache1 configuration as LogFormat. Add the apache1 default 
+    LogFormat as alternative to conf/services/http.conf. (Closes: #293115,
+    thanks to Vic Gedris <debian_bugs at gedris.org>)
+  * Make the smartd service (smartmontools) working. It's logging to 
+    daemon.log, not to messages. (Closes: #295234, thanks to 
+    Piotr Krukowiecki <piotrwww at krukowiecki.net>)
+  * Set LC_ALL=C in the main logwatch script. (closes: #296979, thanks to
+    Gilmar Junior <gilmar_santos_jr-geral at yahoo.com.br>
+  * Fix logfiles/http.conf. All events were logged twice. 
+  * Correct logfiles/{daemon,http,maillog,secure}.conf to always include the
+    first rotated logfile. (So no need to use --archives for full accuracy for 
+    reports of range "yesterday"). Otherwise some events might get lost. Some 
+    other logfile configurations should also get corrected but I can't verify 
+    them because I don't have the services running.
+
+ -- Willi Mann <willi at wm1.at>  Wed, 16 Feb 2005 19:43:30 +0100
+
+logwatch (5.2.2-3) unstable; urgency=medium
+
+  * Include HOWTO-Make-Filter (closes: #287165)
+  * Patches from Piotr Krukowiecki <piotrwww at krukowiecki.net>:
+    - One line to postfix ("starting TLS engine")
+    - One modification to samba ("*initially* as user") (closes: #289073)
+  * Move binary building from binary-arch to binary-indep (finally)
+  * s/_/./ in conf/logfiles/http.conf to make it work with apache1
+  * Syslogd now gets feeded by syslog logfile, not messages.
+  * Added a kernel logfile group (kern.log), and the kernel script now 
+    uses this instead of messages.
+   (thanks to Petr Stehlik <pstehlik at sophics.cz> for the last three 
+    suggested enhancements, closes: #287963)
+  * Added short info how to modify a filter to README.Debian
+  * Consider space in the postfix logs (closes: #289074, thanks to 
+    Alex Satrapa <alex.satrapa at apf.edu.au>)
+  * Fix two lintian warnings concerning the synopsis part of the 
+    package description. (Remove the "A ")
+
+ -- Willi Mann <willi at wm1.at>  Sat, 25 Dec 2004 10:09:58 +0100
+
+logwatch (5.2.2-2) unstable; urgency=high
+
+  * Enhance description, fix some typos and spelling mistakes.
+  * Fix zz-disk_space for very long device names: Use POSIX output to ensure
+    that there's always one line per mount point and the grep works correctly.
+    (closes: #278816, thanks to Kees van Vloten <kvv at chopin.demon.nl>)
+  * Small fixes to the courier script. 
+    - Don't print newline if nothing else is printed.
+    - add -ssl for pop3d and imap (closes: #278680, thanks to Wayne Davison
+    <wayned at users.sourceforge.net>)
+  * Change title of courier reports to "courier mail services".
+  * Cleanups and fixes for the logfiles configuration files:
+    - fix and remove Archive lines.
+    - fix http.conf for debian 
+    - consistency fixes
+    mostly reported by Simon Schoar <simon at schoar.de>, closes: #280164
+  * two minor enhancements/fixes to named reporting. (Unmatched Entries)
+  * support "not in AllowUsers" log line in sshd.
+
+ -- Willi Mann <willi at wm1.at>  Sat, 23 Oct 2004 11:05:32 +0200
+
+logwatch (5.2.2-1) unstable; urgency=low
+
+  * New upstream release (Closes: #261275)
+  * Completely remove su reporting from secure
+    + other minor changes in secure.
+  * Update copyright file.
+  * Add support for kcheckpass to pam_unix (which I've seen for 
+    unlocking the screen saver) 
+  * Remove the unneccessary part "first accept valid lines" from pam_unix.
+  * Other small changes to pam_unix.
+  * Make clam-update working.
+  * Big rewrite of the courier script (and courier.conf). 
+    It's now under GPL.
+  * Recommend gawk, but don't print stupid error message if it doesn't exist
+    (exit the script), and add info to README.Debian about that. (The affected 
+    service was sendmail-largeboxes)
+  * Get rid of some unmatched entries in cron
+  * Fix for parsing postfix 2.1.4. ("Client Host") (closes: #275051, thanks to 
+    Wayne Davison <wayned at users.sourceforge.net>)
+
+ -- Willi Mann <willi at wm1.at>  Fri,  3 Sep 2004 09:20:58 +0200
+
+logwatch (5.1-6) unstable; urgency=medium
+
+   Urgency medium because of wrong copyright file currently in sarge. 
+
+  * Correct copyright file.
+  * Fix the service extraction in pam_unix for woody.
+  * exim filter: 
+    - Fix some problems with the exim service script and the 
+      logfile config file.
+    - include information in Readme.Debian about the required packages
+      for the exim script.
+    (closes: #260056, thanks to James Clendenan for the report.)
+  * Fix reporting of samba in pam_unix.
+  * Throw out some unneeded lines in debian/rules.
+
+ -- Willi Mann <willi at wm1.at>  Mon, 21 Jun 2004 22:50:52 +0200
+
+logwatch (5.1-5) unstable; urgency=medium
+
+    Urgency medium because non-working cron-reporting should go away from
+    testing as fast as possible. 
+
+  * Fix cron-script /usr/bin -> /usr/sbin. (closes: #253859, thanks to 
+    Ian MacDonald). Forgot to list that change in previous changelog.
+  * Fix (the first really upstream?) bug in logwatch: A small mistake
+    in sshd-reporting. (thanks to Manabu Matsui, closes: #254968)
+  * Don't report pam_unix in SSHD.
+  * Fix a pam_unix -line for su.
+  * Don't report pam_limits in secure. 
+
+ -- Willi Mann <willi at wm1.at>  Sat, 12 Jun 2004 12:07:42 +0200
+
+logwatch (5.1-4) unstable; urgency=low
+
+  * Fix typo in Description, thanks to Gustavo Franco (closes: #247497) 
+  * Fix pam_unix reporting. It seems that pam has changed. Maybe I need
+    script that warns me when the log-format of pam_unix-entries changes... 
+    thanks for reporting Klaus Ethgen. (closes: #247257)
+  * Handle some previously unmatched lines in secure. Added temporary hack
+    to have a nice output until I can fix #239626. 
+  * Add syslog.0 as logfile to syslog.conf because syslog is rotated daily, 
+    so I would never see cron-reporting if I use logwatch from 
+    command-line (helps development). 
+  + Move symlink to main script from /usr/bin -> /usr/sbin. Fixes a lintian
+    warning. (This changelog entry was added after the package has been
+    uploaded.) 
+
+ -- Willi Mann <willi at wm1.at>  Wed,  5 May 2004 19:47:35 +0200
+
+logwatch (5.1-3) unstable; urgency=low
+
+  * I'm not from marketing: proper upstream homepage url: 
+    www... -> http://www...
+  * Don't report PAM_unix lines in secure: support for woody. thanks to 
+    Michael Stovenour for the report (closes: #239626)
+  * Added fortune-mod to Suggests.
+  * Removed some lines which were already commented out. 
+
+ -- Willi Mann <willi at wm1.at>  Mon, 15 Mar 2004 21:31:39 +0100
+
+logwatch (5.1-2) unstable; urgency=low
+
+  * Verify in the cron script that logwatch is really installed
+    (not removed-but-not-purged)
+  * Set standards-version to 3.6.1.0 instead of 3.6.1 to exactly match
+    the current version. 
+  * Make reporting of syslogd - restarts working again
+  * Force permissions of all *.confs to 0644 using find
+  * logfile-group maillog now uses mail.log instead of mail.err, mail.info,
+    mail.warn to avoid possible double-reporting
+  * Avoid calling the target install of Makefile twice
+
+ -- Willi Mann <willi at wm1.at>  Wed, 11 Feb 2004 23:29:08 +0100
+
+logwatch (5.1-1) unstable; urgency=low
+
+  * New upstream release 5.1
+  * Make cron reporting working again. It's the only service that 
+    only logs to the syslog logfile. 
+
+ -- Willi Mann <willi at wm1.at>  Wed,  4 Feb 2004 20:18:37 +0100
+
+logwatch (5.0+5.1pre1-2) unstable; urgency=low
+
+  * Force permissions of all scripts to 0755 
+
+ -- Willi Mann <willi at wm1.at>  Mon,  2 Feb 2004 11:36:38 +0100
+
+logwatch (5.0+5.1pre1-1) unstable; urgency=low
+
+  * Bump to pre5.1
+  * Revert some changes, that turned out not to be neccessary. 
+  * Changed description
+
+ -- Willi Mann <willi at wm1.at>  Sun,  1 Feb 2004 23:44:03 +0100
+
+logwatch (5.0-2) unstable; urgency=low
+
+  * Fix permission of /etc/logwatch/conf/services/pureftpd.conf by chmod in
+    Makefile.
+  * Make more services work (see state_of_debianizing).
+    
+
+ -- Willi Mann <willi at wm1.at>  Wed, 14 Jan 2004 17:30:12 +0100
+
+logwatch (5.0-1) unstable; urgency=low
+
+  * Initial Release.
+  * Reporting for many services should work, including cron, ssh, courier,
+    exim.
+  * Please report bugs. If a particular service has no output, I need the path
+    to the logfile(s). That's most likely the problem.
+
+ -- Willi Mann <willi at wm1.at>  Wed, 12 Nov 2003 20:14:15 +0100
+

Deleted: branches/7.3/debian/control
===================================================================
--- trunk/debian/control	2006-05-03 16:51:45 UTC (rev 41)
+++ branches/7.3/debian/control	2006-09-16 20:07:50 UTC (rev 48)
@@ -1,25 +0,0 @@
-Source: logwatch
-Section: admin
-Priority: optional
-Maintainer: Willi Mann <willi at wm1.at>
-Build-Depends-Indep: debhelper (>> 3.0.0)
-Standards-Version: 3.7.0.0
-
-Package: logwatch
-Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, exim | mail-transport-agent
-Suggests: fortune-mod
-Description: log analyser with nice output written in Perl
- Logwatch is a modular log analyser that runs every night 
- and mails you the results. It can also be run from command line.  
- . 
- The output is by service and you can limit the output to one particular
- service. The subscripts which are responsible for the output, mostly 
- convert the raw log lines in structured format. 
- .
- Logwatch generally ignores the time component in the output, that means, 
- you will know that the reported event was logged in the requested range of 
- time, but you will have to go to the raw log files to get the exact details.
- .
- The homepage of logwatch is: http://www.logwatch.org/
-

Copied: branches/7.3/debian/control (from rev 46, trunk/debian/control)
===================================================================
--- branches/7.3/debian/control	                        (rev 0)
+++ branches/7.3/debian/control	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1,25 @@
+Source: logwatch
+Section: admin
+Priority: optional
+Maintainer: Willi Mann <willi at wm1.at>
+Build-Depends: debhelper (>> 4.0.0)
+Standards-Version: 3.7.2.0
+
+Package: logwatch
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, exim | mail-transport-agent
+Suggests: fortune-mod
+Description: log analyser with nice output written in Perl
+ Logwatch is a modular log analyser that runs every night 
+ and mails you the results. It can also be run from command line.  
+ . 
+ The output is by service and you can limit the output to one particular
+ service. The subscripts which are responsible for the output, mostly 
+ convert the raw log lines in structured format. 
+ .
+ Logwatch generally ignores the time component in the output, that means, 
+ you will know that the reported event was logged in the requested range of 
+ time, but you will have to go to the raw log files to get the exact details.
+ .
+ The homepage of logwatch is: http://www.logwatch.org/
+

Deleted: branches/7.3/debian/copyright
===================================================================
--- trunk/debian/copyright	2006-05-03 16:51:45 UTC (rev 41)
+++ branches/7.3/debian/copyright	2006-09-16 20:07:50 UTC (rev 48)
@@ -1,108 +0,0 @@
-This package was debianized by Willi Mann <willi at wm1.at> on
-Wed, 12 Nov 2003 20:14:15 +0100.
-
-The latest version was downloaded from
-ftp://ftp.kaybee.org/pub/linux/logwatch-6.1.2.tar.gz
-
-Logwatch consists of many individual scripts. Most of them were written by
-Kirk Bauer <kirk at kaybee.org>, who is also the maintainer of logwatch.
-
-Other authors and contributors:
--------------------------------
-
-Dariusz Nierada <dnierada at kat.supermedia.pl>
-David Golden <david at hyperbolic.net>
-Eric Moret <eric.moret at epita.fr>
-Fabrizio Zeno Cornelli <zeno at filibusta.crema.unimi.it>
-Gerald Teschl <gerald at esi.ac.at>
-James Wysynski <wysynskij at yahoo.com>
-Jim O'Halloran <jim at kendle.com.au>
-Jim Richardson <develop at aidant.net>
-Joe Digilio <jdigilio at earth.northwestern.edu>
-Jose Castro <cog at cpan.org>
-Kenneth Porter <shiva at well.com>
-Lars Skjærlund <lars at skjaerlund.dk>
-Luuk de Boer <luuk_de_boer at pi.net>
-Manuel Mitnyan <logo at videotron.ca>
-Matthew Wise <matt at oatsystems.com>
-M. B. Heath <malcolm at indeterminate.net>
-Michael Romeo <michaelromeo at mromeo.com>
-Michael Stovenour <michael at stovenour.net>
-Mike Tremaine <mgt at stellarcore.net>
-Osma Ahvenlampi <oa at iki.fi>
-Pawe? Go?aszewski" <blues at ds.pg.gda.pl>
-Pawel Jarosz <pj at rsi.pl>
-Ron Kuris <swcafe at gmail.com>
-Sean Boran <sean at boran.com>
-Simon Liddington <sjl at zepler.org>
-S. Schimkat <www.schimkat.dk>
-Sven Conrad <scon at gmx.net>
-Willi Mann <willi at wm1.at>
-
-(Note that this is a semi-autogenerated list. See README.Debian for more information.)
-
-Licenses:
----------
-
-Except for a few scripts, logwatch is distributed under the permissive X11 license.
-
-The exceptions:
-
-scripts/services/courier: GPL
-scripts/services/clamav-milter: GPL
-scripts/services/clamav: GPL
-scripts/services/rt314: Public Domain
-
-
-Text of the licenses:
----------------------
-
-X11 license:
-
--BEGIN LICENSE --
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-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:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-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
-AUTHORS 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 IN THE
-SOFTWARE.
---END LICENSE--
-
-GPL:
-
--BEGIN LICENSE --
-   This package is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; version 2 dated June, 1991.
-
-   This package is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this package; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
-   MA 02110-1301, USA.
-
-On Debian GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
---END LICENSE--
-
-Public Domain:
-
-Legal term frequently used in US Law. In non-legal words: You can do
-anything with it. For more information see
-http://www.fsf.org/licensing/licenses/#PublicDomain or
-http://en.wikipedia.org/wiki/Public_domain

Copied: branches/7.3/debian/copyright (from rev 45, trunk/debian/copyright)
===================================================================
--- branches/7.3/debian/copyright	                        (rev 0)
+++ branches/7.3/debian/copyright	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1,150 @@
+This package was debianized by Willi Mann <willi at wm1.at> on
+Wed, 12 Nov 2003 20:14:15 +0100.
+
+The latest version was downloaded from
+ftp://ftp.kaybee.org/pub/linux/logwatch-7.3.tar.gz
+
+Logwatch consists of many individual scripts. Most of them were written by
+Kirk Bauer <kirk at kaybee.org>, who is also the maintainer of logwatch.
+
+List of copyright holders
+-------------------------
+
+Unfortunately, close to no script in logwatch explicitly lists its copyright 
+holders (like (c) Full name <email>, year). Most script say they 
+"were written by" (listing only one name), and that's essentially what this 
+list compiles. The script by script list is available from 
+http://svn.debian.org/wsvn/pkg-logwatch/trunk/supposed-copyright/
+
+Bjorn L. <bl_logwatch at mblmail.net>
+Bob Hutchinson
+cadtool at stepmind.com
+Chris Smith <csmith at squiz.net>
+Dariusz Nierada <dnierada at kat.supermedia.pl>
+David Baldwin <david.baldwin at anu.edu.au>
+Eric Moret <eric.moret at epita.fr>
+frank at fam-breedijk.com
+Gerald Teschl <gerald at esi.ac.at>
+Hugo van der Kooij <hvdkooij at vanderkooij.org>
+Jeff Frost <jeff.frost at frostconsultingllc.com>
+Jim O'Halloran <jim at kendle.com.au>
+Jim Richardson <develop at aidant.net>
+Kenneth Porter <shiva at well.com>
+Kirk Bauer <kirk at kaybee.org>
+Lars Skjærlund <lars at skjaerlund.dk>
+Laurent DUFOUR <laurent.dufour at havas.com>,<dufour_l at hotmail.com>
+Luuk de Boer <luuk at pi.net>
+luuk - luuk at planet.nl
+Matt Brown
+Michael Romeo <michaelromeo at mromeo.com>
+Mike Tremaine <mgt \@\ stellarcore.net>
+Osma Ahvenlampi <oa at iki.fi>
+Patrick Vande Walle <patrick at isoc.lu>
+Pawel Golaszewski <blues at gda.pl>
+Pawel Jarosz <pj at rsi.pl>
+Ron Kuris <swcafe at gmail.com>
+Simon Liddington
+Sparta, Inc, 2004
+S. Schimkat <www.schimkat.dk>
+Sven Conrad <scon at gmx.net>
+William Roumier <w.roumier at hotmail.fr>
+Willi Mann <willi at wm1.at>, 2003 - 2004
+Yaroslav Halchenko <debian at onerussian.com>
+
+Licenses:
+---------
+
+Except for a few scripts, logwatch is distributed under the permissive X11 license.
+
+The exceptions:
+
+scripts/services/courier: GPL
+scripts/services/clamav-milter: GPL
+scripts/services/clamav: GPL
+scripts/services/rt314: Public Domain
+scripts/services/dnssec: 3-clause BSD (Sparta)
+scripts/services/resolver: 3-clause BSD (Sparta)
+scripts/shared/applybinddate: 3-clause BSD (Sparta)
+
+Text of the licenses:
+---------------------
+
+X11 license:
+
+-BEGIN LICENSE --
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+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:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+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
+AUTHORS 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 IN THE
+SOFTWARE.
+--END LICENSE--
+
+3-clause BSD (Sparta):
+
+--BEGIN LICENSE--
+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 Sparta, 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 HOLDERS 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.
+--END LICENSE--
+
+GPL:
+
+-BEGIN LICENSE --
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; version 2 dated June, 1991.
+
+   This package is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+   MA 02110-1301, USA.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+--END LICENSE--
+
+Public Domain:
+
+Legal term frequently used in US Law. In non-legal words: You can do
+anything with it. For more information see
+http://www.fsf.org/licensing/licenses/#PublicDomain or
+http://en.wikipedia.org/wiki/Public_domain

Deleted: branches/7.3/debian/dist.conf/services/fail2ban.conf
===================================================================
--- trunk/debian/dist.conf/services/fail2ban.conf	2006-05-03 16:51:45 UTC (rev 41)
+++ branches/7.3/debian/dist.conf/services/fail2ban.conf	2006-09-16 20:07:50 UTC (rev 48)
@@ -1,22 +0,0 @@
-###########################################################################
-# $Id: $
-###########################################################################
-
-# You can put comments anywhere you want to.  They are effective for the
-# rest of the line.
-
-# this is in the format of <name> = <value>.  Whitespace at the beginning
-# and end of the lines is removed.  Whitespace before and after the = sign
-# is removed.  Everything is case *insensitive*.
-
-# Yes = True  = On  = 1
-# No  = False = Off = 0
-
-Title = fail2ban-messages
-
-# Which logfile group...
-LogFile = fail2ban
-
-*RemoveHeaders =
-
-

Copied: branches/7.3/debian/dist.conf/services/fail2ban.conf (from rev 44, trunk/debian/dist.conf/services/fail2ban.conf)
===================================================================
--- branches/7.3/debian/dist.conf/services/fail2ban.conf	                        (rev 0)
+++ branches/7.3/debian/dist.conf/services/fail2ban.conf	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1,20 @@
+###########################################################################
+# $Id: $
+###########################################################################
+
+# You can put comments anywhere you want to.  They are effective for the
+# rest of the line.
+
+# this is in the format of <name> = <value>.  Whitespace at the beginning
+# and end of the lines is removed.  Whitespace before and after the = sign
+# is removed.  Everything is case *insensitive*.
+
+# Yes = True  = On  = 1
+# No  = False = Off = 0
+
+Title = fail2ban-messages
+
+# Which logfile group...
+LogFile = fail2ban
+
+

Copied: branches/7.3/patches/01-fail2banv2.diff (from rev 42, trunk/patches/01-fail2banv2.diff)
===================================================================
--- branches/7.3/patches/01-fail2banv2.diff	                        (rev 0)
+++ branches/7.3/patches/01-fail2banv2.diff	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1,170 @@
+diff -ur logwatch-7.3.b/scripts/services/fail2ban logwatch-7.3/scripts/services/fail2ban
+--- logwatch-7.3.b/scripts/services/fail2ban	2006-05-25 17:35:02.000000000 +0200
++++ logwatch-7.3/scripts/services/fail2ban	2006-05-25 17:36:47.000000000 +0200
+@@ -19,7 +19,9 @@
+ my $Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
+ my $IgnoreHost = $ENV{'sshd_ignore_host'} || "";
+ my $DebugCounter = 0;
+-
++my $ReInitializations = 0;
++my @IptablesErrors = ();
++my $NotValidIP = 0;		# reported invalid IPs number
+ my @OtherList = ();
+ 
+ my %ServicesBans = ();
+@@ -30,72 +32,98 @@
+ }
+ 
+ while (defined(my $ThisLine = <STDIN>)) {
+-	if ( $Debug >= 5 ) {
+-		print STDERR "DEBUG($DebugCounter): $ThisLine";
+-		$DebugCounter++;
++    if ( $Debug >= 5 ) {
++	print STDERR "DEBUG($DebugCounter): $ThisLine";
++	$DebugCounter++;
++    }
++    chomp($ThisLine);
++    if ( ($ThisLine =~ /..,... DEBUG: /) or
++	 ($ThisLine =~ /..,... INFO: (Fail2Ban v.* is running|Exiting|Enabled sections:)/) or
++	 ($ThisLine =~ /..,... WARNING: Verbose level is /) or
++	 ($ThisLine =~ /..,... WARNING: Restoring firewall rules/)
++	 )
++    {
++	if ( $Debug >= 6 ) {
++	    print STDERR "DEBUG($DebugCounter): line ignored\n";
+ 	}
+-	chomp($ThisLine);
+-	if ( ($ThisLine =~ /..,... DEBUG: /) or
+-		 ($ThisLine =~ /..,... INFO: (Fail2Ban v.* is running|Exiting|Enabled sections:)/) or
+-		 ($ThisLine =~ /..,... WARNING: Verbose level is /) or
+-		 ($ThisLine =~ /..,... WARNING: Restoring firewall rules/)
+-		 )
+-	{
+-		if ( $Debug >= 6 ) {
+-			print STDERR "DEBUG($DebugCounter): line ignored\n";
+-		}
+-	} elsif ( my ($Service,$Action,$Host) = ($ThisLine =~ m/WARNING:\s(.*):\s(Ban|Unban)[^\.]* (\S+)/)) {
+-		if ( $Debug >= 6 ) {
+-			print STDERR "DEBUG($DebugCounter): Found $Action for $Service from $Host\n";
+-		}
+-		$ServicesBans{$Service}{$Host}{$Action}++;
+-		$ServicesBans{$Service}{"(all)"}{$Action}++;
+-	} elsif ( my ($Service,$Host,$NumFailures) = ($ThisLine =~ m/INFO: (\S+): (.+) has (\d+) login failure\(s\). Banned./)) {
+-	   if ($Debug >= 4) {
+-		   print STDERR "DEBUG: Found host $Host trying to access $Service - failed $NumFailures times\n";
+-	   }
+-	   push @{$ServicesBans{$Service}{$Host}{'Failures'}}, $NumFailures;
+-   } else
+-   {
+-	   # Report any unmatched entries...
+-	   push @OtherList, "$ThisLine\n";
+-   }
++    } elsif ( my ($Service,$Action,$Host) = ($ThisLine =~ m/WARNING:\s(.*):\s(Ban|Unban)[^\.]* (\S+)/)) {
++	if ( $Debug >= 6 ) {
++	    print STDERR "DEBUG($DebugCounter): Found $Action for $Service from $Host\n";
++	}
++	$ServicesBans{$Service}{$Host}{$Action}++;
++	$ServicesBans{$Service}{"(all)"}{$Action}++;
++    } elsif ( my ($Service,$Host,$NumFailures) = ($ThisLine =~ m/INFO: (\S+): (.+) has (\d+) login failure\(s\). Banned./)) {
++	if ($Debug >= 4) {
++	    print STDERR "DEBUG: Found host $Host trying to access $Service - failed $NumFailures times\n";
++	}
++	push @{$ServicesBans{$Service}{$Host}{'Failures'}}, $NumFailures;
++    } elsif ( my ($Service,$Host) = ($ThisLine =~ m/ ERROR:\s(.*):\s(\S+)\salready in ban list/)) {
++	$ServicesBans{$Service}{$Host}{'AlreadyInTheList'}++;
++    } elsif ( my ($Service,$Host) = ($ThisLine =~ m/ WARNING:\s(.*):\sReBan (\S+)/)) {
++	$ServicesBans{$Service}{$Host}{'ReBan'}++;
++    } elsif ($ThisLine =~ /..,... ERROR: (Execution of command )?\'iptables/) {
++	push @IptablesErrors, "$ThisLine\n";
++    } elsif ($ThisLine =~ /..,... WARNING: \#\S+ reinitialization of firewalls/) {
++	$ReInitializations++;
++    } elsif ($ThisLine =~ /..,... WARNING:  is not a valid IP address/) {
++	# just ignore - this will be fixed within fail2ban and is harmless warning
++    }
++    else
++    {
++	# Report any unmatched entries...
++	push @OtherList, "$ThisLine\n";
++    }
+ }
+ 
+ ###########################################################
+ 
+ 
+ if (keys %ServicesBans) {
+-   printf("\nBanned services with Fail2Ban:                             Bans:Unbans\n");
+-   foreach my $service (sort {$a cmp $b} keys %ServicesBans) {
+-      printf("   %-55s [%3d:%-3d]\n", "$service:",
+-			 $ServicesBans{$service}{'(all)'}{'Ban'},
+-			 $ServicesBans{$service}{'(all)'}{'Unban'});
+-	  delete $ServicesBans{$service}{'(all)'};
+-      my $totalSort = TotalCountOrder(%{$ServicesBans{$service}}, \&SortIP);
+-	  if ($Detail >= 5) {
+-		  foreach my $ip (sort $totalSort keys %{$ServicesBans{$service}}) {
+-			  my $name = LookupIP($ip);
+-			  printf("      %-53s %3d:%-3d\n",
+-					 $name,
+-					 $ServicesBans{$service}{$ip}{'Ban'},
+-					 $ServicesBans{$service}{$ip}{'Unban'});
+-			  if (($Detail >= 10) and ($ServicesBans{$service}{$ip}{'Failures'}>0)) {
+-				  print "        Failed ";
+-				  foreach my $fails (@{$ServicesBans{$service}{$ip}{'Failures'}}) {
+-					  print " $fails";
+-				  }
+-				  print " times";
+-				  print "\n";
+-			  }
+-		  }
+-	  }
+-  }
++    printf("\nBanned services with Fail2Ban:				 Bans:Unbans\n");
++    foreach my $service (sort {$a cmp $b} keys %ServicesBans) {
++	printf("   %-55s [%3d:%-3d]\n", "$service:",
++	       $ServicesBans{$service}{'(all)'}{'Ban'},
++	       $ServicesBans{$service}{'(all)'}{'Unban'});
++	delete $ServicesBans{$service}{'(all)'};
++	my $totalSort = TotalCountOrder(%{$ServicesBans{$service}}, \&SortIP);
++	if ($Detail >= 5) {
++	    foreach my $ip (sort $totalSort keys %{$ServicesBans{$service}}) {
++		my $name = LookupIP($ip);
++		printf("      %-53s %3d:%-3d\n",
++		       $name,
++		       $ServicesBans{$service}{$ip}{'Ban'},
++		       $ServicesBans{$service}{$ip}{'Unban'});
++		if (($Detail >= 10) and ($ServicesBans{$service}{$ip}{'Failures'}>0)) {
++		    print "	   Failed ";
++		    foreach my $fails (@{$ServicesBans{$service}{$ip}{'Failures'}}) {
++			print " $fails";
++		    }
++		    print " times";
++		    printf("\n	   %d Duplicate Ban attempts", $ServicesBans{$service}{$ip}{'AlreadyInTheList'}) ;
++		    printf("\n	   %d ReBans due to rules reinitilizations", $ServicesBans{$service}{$ip}{'ReBan'}) ;
++		    print "\n";
++		}
++	    }
++	}
++    }
+ }
+ 
+-if ($Detail>0 and $#OtherList >= 0) {
+-   print "\n**Unmatched Entries**\n";
+-   print @OtherList;
++
++if ($Detail>0) {
++    if ($#IptablesErrors > 0) {
++	printf("\n%d faulty iptables invocation(s)", $#IptablesErrors);
++	if ($Detail > 5) {
++	    print ":\n";
++	    print @IptablesErrors ;
++	}
++    }
++    if ($ReInitializations > 0) {
++	printf("\n%d fail2ban rules reinitialization(s)", $ReInitializations);
++    }
++    if ($#OtherList >= 0) {
++	print "\n**Unmatched Entries**\n";
++	print @OtherList;
++    }
+ }
+ 
+ exit(0);

Copied: branches/7.3/supposed-copyright (from rev 43, trunk/supposed-copyright)

Copied: branches/7.3/supposed-copyright/list.sh (from rev 44, trunk/supposed-copyright/list.sh)
===================================================================
--- branches/7.3/supposed-copyright/list.sh	                        (rev 0)
+++ branches/7.3/supposed-copyright/list.sh	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+find -regex ".[^.]*" | xargs grep -h "^(c)"  | sort | uniq | sed -e " s/(c) //"

Deleted: branches/7.3/supposed-copyright/logfiles/samba/applydate
===================================================================
--- trunk/supposed-copyright/logfiles/samba/applydate	2006-06-04 14:37:54 UTC (rev 43)
+++ branches/7.3/supposed-copyright/logfiles/samba/applydate	2006-09-16 20:07:50 UTC (rev 48)
@@ -1 +0,0 @@
-(c) Luuk de Boer <luuk at pi.net>(c) Luuk de Boer <luuk at pi.net>(c) Luuk de Boer <luuk at pi.net>(c) Luuk de Boer <luuk at pi.net>(c) Luuk de Boer <luuk at pi.net>(c) Luuk de Boer <luuk at pi.net>(c) Luuk de Boer <luuk at pi.net>(c) Luuk de Boer <luuk at pi.net>

Copied: branches/7.3/supposed-copyright/logfiles/samba/applydate (from rev 44, trunk/supposed-copyright/logfiles/samba/applydate)
===================================================================
--- branches/7.3/supposed-copyright/logfiles/samba/applydate	                        (rev 0)
+++ branches/7.3/supposed-copyright/logfiles/samba/applydate	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1 @@
+(c) Luuk de Boer <luuk at pi.net>

Deleted: branches/7.3/supposed-copyright/logfiles/xferlog/applydate
===================================================================
--- trunk/supposed-copyright/logfiles/xferlog/applydate	2006-06-04 14:37:54 UTC (rev 43)
+++ branches/7.3/supposed-copyright/logfiles/xferlog/applydate	2006-09-16 20:07:50 UTC (rev 48)
@@ -1 +0,0 @@
-(c) Kirk Bauer <kirk at kaybee.org

Copied: branches/7.3/supposed-copyright/logfiles/xferlog/applydate (from rev 44, trunk/supposed-copyright/logfiles/xferlog/applydate)
===================================================================
--- branches/7.3/supposed-copyright/logfiles/xferlog/applydate	                        (rev 0)
+++ branches/7.3/supposed-copyright/logfiles/xferlog/applydate	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1 @@
+(c) Kirk Bauer <kirk at kaybee.org>

Deleted: branches/7.3/supposed-copyright/logfiles/xferlog/removeheaders
===================================================================
--- trunk/supposed-copyright/logfiles/xferlog/removeheaders	2006-06-04 14:37:54 UTC (rev 43)
+++ branches/7.3/supposed-copyright/logfiles/xferlog/removeheaders	2006-09-16 20:07:50 UTC (rev 48)
@@ -1 +0,0 @@
-(c) Kirk Bauer <kirk at kaybee.org

Copied: branches/7.3/supposed-copyright/logfiles/xferlog/removeheaders (from rev 44, trunk/supposed-copyright/logfiles/xferlog/removeheaders)
===================================================================
--- branches/7.3/supposed-copyright/logfiles/xferlog/removeheaders	                        (rev 0)
+++ branches/7.3/supposed-copyright/logfiles/xferlog/removeheaders	2006-09-16 20:07:50 UTC (rev 48)
@@ -0,0 +1 @@
+(c) Kirk Bauer <kirk at kaybee.org>




More information about the Pkg-logwatch-general mailing list