File: changelog

package info (click to toggle)
logcheck 1.2.39
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,008 kB
  • ctags: 53
  • sloc: sh: 889; python: 158; makefile: 126; perl: 98
file content (1404 lines) | stat: -rw-r--r-- 61,675 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
logcheck (1.2.39) unstable; urgency=low

  todd:
  * Fix logcheck upgrade script to set owner on lock directory properly
    Thanks Marco Valli, Maks

 -- Todd Troxell <ttroxell@debian.org>  Tuesday, 19 Apr 2005 11:53:00 -0500

logcheck (1.2.38) unstable; urgency=low

  maks:
  * Generalise postfix rule concerning network_biopair_interop.
  * Add rule for ntp message about valid/infalid peers. (Closes #303661)
  * Improve rules .PHONY target + add checkpo rule for the translation check.
  * Add help target to debian/rules documenting the syntax.
  jamie:
  * Add rule in violations.ignore.d/logcheck-postfix for postgrey
    (Closes: #30088)
  * Modify bind notify rule for bind 9.3.x (Closes: #303176)
  * Add various workstation kernel/udev rules for removable devices
    (Closes: #297995)
  * Modify rsync rule to match module names with '.', '-' and '_'.
    Thanks to SATOH Fumiyasu <fumiya@samba.gr.jp> for the patch
    (Closes: #295352)
  * Add nagios rule for UNKNOWN state service notification.
  * Modify postfix anvil rule for 'max connection' statistics
    messages to match smtps connections too.
  * Add new rules for policyd, a postfix policy daemon.
  * Add more postfix rules for certificate verification failure
    messages.
  * Add new rules for postfix scache (connection cache server).
  * Add rule for bind 9.3 'unexpected RCODE' messages.
  * Modify dnsmasq rule to match '/var/run/dnsmasq/resolv.conf'
    too. (Closes: #302678)
  todd:
  * Change lockfile location from /var/lock/logcheck to
    /var/lock/logcheck/logcheck (Thanks Rainer Zocholl) to avoid 
    potential DoS condition. (Closes: #304978)
  * Make lockfile debug messages refer to the correct files.
  * Add note about dh_installlogcheck permissions. (See #302379)

 -- Todd Troxell <ttroxell@debian.org>  Monday, 18 Apr 2005 23:45:00 -0500

logcheck (1.2.37) unstable; urgency=low

  maks:
  * Fix routine message when resolvconf is installed. thanks for patch
    to Thomas Hood <jdthood@aglu.demon.nl> (Closes: #302678)
  * Add postfix rules for local procmail delivery. (Closes: #302744)
  * Fix logcheck su rule reporting valid `su -' use.
  * Add nagios rule for UNREACHABLE messages. thanks for patch to
    Geoff Crompton <geoff.crompton@strategicdata.com.au> (Closes: #298495)
  todd:
  * Revert warning on bad regex code (Closes: #302689)

 -- Todd Troxell <ttroxell@debian.org>  Saturday, 2 Apr 2005 17:57:00 -0500

logcheck (1.2.36) unstable; urgency=low

  jamie:
  * Update rules for gps 1.0>.
  * Add/update rules for innd.
  maks:
  * Add harmless pdns rule at server level.
  * Add rules for cups-lpd at level server.
  * Add violations.ignore.d/logcheck-dcc for the nightly dccifd reporting.
  * Add rule ignore.d.server/kernel for printer out of paper. 
    (Closes: #298291)
  * Add one more apm rule for useless gdm logout message.
  * Add rules for 2 harmless dhcpd and dhclient messages.
  * Add cvsd, pam rules from Peter Palfrader <weasel@debian.org>.
  * Add ssh rule for timeout before authentication.
  * Check time of rotated logfile against already gzipped logfile. 
    syslog-ng leaves old syslog.0 logfile in /var/log. (Closes: #296096)
  todd:
  * Add support for warnings in report
  * Update copyright dates
  * Warn on invalid regex (Closes: #295560)
  * Update udev for directories (Matt Brubeck) (Closes: #301415)

 -- Todd Troxell <ttroxell@debian.org>  Wednesday, 30 Mar 2005 20:04:00 -0600

logcheck (1.2.35) unstable; urgency=low

  maks:
  * logtail fix invocation without switches (compat to old versions).
  * Add smartd rule, whitespace fix openvpn rule, merge old smartd rules.
  * Add rule for imaplogin disconnected + logout messages. 
    (closes: #294950, #295418)
  * Add rule violations.ignore.d/logcheck-ssh + rule ignore.d.server/ssh for
    the PARANOID wildcard in /etc/hosts.deny.
  * Match dots as dots aka '\.' in all rules.
  * Add kernel rules at level workstation (annoying apm, usb storage)
  * Fix gconf SIGHUP rule (dup whitespace).
  jamie:
  * Add rules for webmin (closes: #286307).
  * Add rules for postfix 2.2, innd.
  * Modify rule for pure-ftpd logout messages (closes: #294612).
  * Add rule for pure-ftpd timeout messages (closes: #295254).
  * Modify rule for pure-ftpd logout messages to match even if
    username is missing(!) (closes: #295257).
  * Add rules in violations.ignore.d/logcheck-postfix for certificate
    verification failures.
  * Add rule for courierpop3login (closes: 296014).
  * Add rule in violations.ignore.d/logcheck-pureftp for upload/download
    messages (closes: #296110).
  todd:
  * Correct link syntax in copyright (closes: 296214).
  * Add comments to clarify postinst
  
 -- Todd Troxell <ttroxell@debian.org>  Sunday, 20 Feb 2005 23:17:00 -0500

logcheck (1.2.34) unstable; urgency=low

  todd:
  * Correct "Gandhi" spelling in docs/README.how.to.interpret.
    Thanks Satya <debbugs@thesatya.com> (closes: #289529)
  * Set logtail to report errors on stderr instead of stdout. 
    (closes: #289801)
  * Adjust logcheck to redirect stdout and also stderr when reporting in order 
    to maintain the current behavior of logcheck after the change above.
  * Change rule directories to setgid for real this time. (closes: #291395)
  * Update gconf, workstation/kernel rules
  maks:
  * Add pdns, fix scponly, fix gconfd SIGHUP rule.
  * Fix pam_winbind rule at level workstation. (Closes: #289866)
  * Ignore sudo "command continued" logline. (Closes: #290195)
  * Add rule for daily sysklogd -r restart at level server. (Closes: #290511)
  jamie:
  * Update rules for nagios.

 -- Todd Troxell <ttroxell@debian.org>  Sunday, 23 Jan 2005 21:31:00 -0500

logcheck (1.2.33) unstable; urgency=low

  maks:
  * Enhance rules at level workstation for removable devices. 
    (closes: #284505, #284825)
  * Fix dnsmasq rule regarding DHCPINFORM. (closes: #286532)
  * Add rbldnsd rules at level server from Rafael Jesus Alcantara Perez
    <rafa@dedaloingenieros.com>. (closes: #285602)
  * Add jabberd rules from Peter Palfrader <weasel@debian.org>.
  * Add rule for weekly nmbd logrotate. (closes: #286329)
  * Add rules from Lee Maguire <lee-debian@hexkey.co.uk> for usb headset
    on level workstation. (closes: #286747)
  * Fix dovecot rules: dots in usernames + other breakage. (closes: #286306)
  * Fix gconfd rules for latest default english logging style.
  * Logtail need to depend on versioned perl not logcheck. (closes: #288580)
  * Add rules for dictd, francine, kernel from alfie.
  * Fix dhcp rules for vlan case. (closes: #289246)
  todd:
  * Set rule directories setgid to simplify administration. (closes: #286230)
  * Add future package plans to TODO
  * Remove dh_strip and dh_shlibdeps from debian/rules
  * Touch cron.d/logcheck in postinst. (closes: #284788)
  * Conditionally set permissions in postinst on version <1.2.33 
    (closes: #287184)
  * Update dh_installlogcheck, which has already been patched in debhelper.
    (closes: #287237)

 -- Todd Troxell <ttroxell@debian.org>  Saturday, 08 Jan 2005 04:56:00 -0500

logcheck (1.2.32) unstable; urgency=low

  maks:
  * Add rules for jabberd, openvpn, rsnapshot, saslauthd, stunnel at 
    level server from Peter Palfrader <weasel@debian.org>.
  * Default reportlevel is "server", correct logcheck.conf thanks koki.
  * Fix up space in newer xdm logging.
  * Add kernel rule for dvd combi drives at level workstation.
  * Add nss_ldap rule for apache, sshd syslog line at level server.
  * Ignore also ssh disconnect from win clients on level server.
  * Have per package NEWS.Debian files, move them below debian/.
    thanks alfie for hint dh_installchangelogs(1) for multiple NEWS.Debian.
    (closes: #281646)
  * Add and fix hostname match in dnsmasq ruleset. (closes: #283331)
  * Add rules for workstation related to removable media. (closes: #277644)
  * Remove kernel rules related to tainted modules.
  * Fix sudo ignore rule for tty usage.
  * Fix gconfd rules at level workstation for newest gnome.
  alfie:
  * logtail.8: Fixed formating to be consistant, changed OPTION to -r (the
    only OPTION not mentioned yet :))
  jamie:
  * Add rules for nagios, gps.
  * Added new rules for messages from USB joystick use. (closes: #282378)
  * Fix spamd rule to match all hosts. (closes: #282842)

 -- Todd Troxell <ttroxell@debian.org>  Tuesday, 07 Dec 2004 10:57:39 -0500

logcheck (1.2.31) unstable; urgency=low

  jamie
  * Fix rules for hylafax, thanks to Ross Boylan. (closes: #270018)
  max
  * Add rule for tripwire run at level paranoid.
  * Add rule for nscd at level server.
  alfie:
  * Fixed my non-fix in logcheck, sorry (closes: #279635)
  todd:
  * Fix segmented rules, thanks rloboda@bojko.krakow.pl

 -- Todd Troxell <ttroxell@debian.org>  Tuesday, 09 Nov 2004 03:25:11 -0500

logcheck (1.2.30) unstable; urgency=low

  maks:
  * Move pptpd rules to level server.
  * Small typo fixes in docs.
  * New rules for bind, courier, cpqarrayd, dhcp, jabberd, nagios, ntp, 
    openvpn, postfix, slapd, smartd, smokeping, squid, ssh, thy, uptimed.
    all for level server thanks to Peter Palfrader <weasel@debian.org>.
  * Logcheck/rules: Don't take locale for granted use character class instead.
  * Fix 2 samba rules at level server. (closes: #277635)
  * Added rules for perdition, postfix, pure-ftpd, snmpd.
    thanks to Brendon Baumgartner <brendon@brendon.com>
  * Small enhancment courier rule.
  * Simplify logic in logcheck-postinst.
  jamie:
  * Add rules for dnsmasq. (closes: #277636)
  * Add rules for hylafax.
  * Add violations.ignore.d rules for hylafax.
  alfie:
  * Fix sed error to really remove trailing spaces. (closes: #278337)
  * Add myself to uploaders field because of stable releases.
  todd:
  * Remove chown from debian/rules.  (closes: #277782)

 -- Todd Troxell <ttroxell@debian.org>  Tuesday, 02 Nov 2004 00:21:41 -0500

logcheck (1.2.29) unstable; urgency=low

  maks:
  * Don't report sudo calls where pwd contains spaces (Closes: #272969)
  * Fix trailing space in perdition rule. (Closes: #273433)
  * Small documentation update how to test rules without fiddling with
    trailing space.
  * sed fine tuning to speed up + remove trailing tabs. thanks alfie
  * Don't use -m switch from sort, it basically disables sorting.
    Remove gratious call to uniq that should be done with SORTUNIQ.
    (Closes: #270677)
  * Add violations.ignore.d/su on old logfiles to be removed on sarge upgrade.
  * Add rules for kdm/wdm/xdm, kernel (usb, keyboard) on level workstation.
  * Only show "rules-directories-note" on upgrade.
  * Enhance ppp rules on level workstation. (Closes: #270019)
    Add pppoa3 rules to the ppp rules.
  * Small update concerning reject messages in postfix + new rule.
  * Added pptpd rules at level workstation.
    thanks to Erich Schubert <erich@debian.org>
  * Added first pure-ftpd rules at level server.
  * Fix cyrus violations.ignore.d rules for higher pids.
  todd:
  * Add 1 dovecot rule
  * Fix another permission issue involving rulefiles.  Added chown to debian/
  rules.
  * Simpler formatting on version string.
  jamie:
  * Updated rules for innd, added rule for cleanfeed.
  * Small correction to gps rules.
  * Added SPF postfix policy server rule for 'SPF pass'. 
  * Fix spelling mistake in dhcp rules. (Closes: #276063)
  * Change dhcp rules to reflect ISC's change of name. 
    Thanks to Dirk Prosdorf for the patch. (Closes: #276317)

 -- Todd Troxell <ttroxell@debian.org>  Saturday, 16 Oct 2004 19:14:03 -0500

logcheck (1.2.28) unstable; urgency=low

  maks:
  * Small fixes: join 2 lines in ignore.d.server/postfix, add '^' for 
    start-of-line ignore.d.server/scponly (Closes: #270398)
  * Small rule update oidentd (Closes: #271286)
  * Check if logcheck has the permissions to read the offsetfiles.
  * Allow Hostname for logcheck mail to be set by commandline switch
    for log hosts. thanks to Joerg Jaspert <joerg@debian.org>
  * Minor comment fixes for picky readers.
  * Handle lack of permissions gracefully. (Closes: #271482)
  * Small update dhcp for dyndns support. (Closes: #260743)
  * Add a sendfile rule at level workstation for its connect syslogging.

 -- Todd Troxell <ttroxell@debian.org>  Wednesday, 22 Sep 2004 16:35:03 -0500

logcheck (1.2.27) unstable; urgency=low

  todd:
  * Add pointer to README.logcheck-database.gz in logcheck man page.
  (Closes: #268277)
  * Remove qmail rules because they have been added to qmail package.
  * Rule updates for spamd (Closes: #269318)
  * Add note about avoiding file name confilcts in README.Maintainer
  * Add violations ignore for courier-pop3d-ssl (Closes: #269959)
  * Add anon-proxy rules (Closes: #269310)
  * Add perdition rules thanks to jamie@silverdream.org (Closes: #270191)

 -- Todd Troxell <ttroxell@debian.org>  Monday, 06 Sep 2004 19:10:19 -0500

logcheck (1.2.26) unstable; urgency=low

  maks:
  * Fix multi-line build-depends lintian warning for source package.
  * Add su usage hint a root check. thanks todd and Alfie!
  * Small rules updated and added dhcp, nagios, postfix, squid, winbind. 
    (Closes: #267587, #266432)

 -- Todd Troxell <ttroxell@debian.org>  Tuesday, 31 Aug 2004 02:02:03 -0400

logcheck (1.2.25) unstable; urgency=low

  todd:
  * Small rule updates for dhclient, ntp, bind, kernel, bonobo, qmail,
    proftpd, ntpd, gconf, dovecot, su, samba, postfix (Closes: #259603, #264158)
  * Add line to logcheck.postinst to remove header.txt on purge
  * Add check to exit if running script as root.
  eevans:
  * Added violations.ignore.d/logcheck-spamd rule, (Closes: #262327)
  maks:
  * Re-format NEWS.Debian into Debian changelog format (Closes: #255932)
  * Remove /var/state/logcheck from debian/logcheck.dirs.
  * Small rule updates for pdns, pop3d-ssl, postfix, scponly.
  * Ack woody security fix. (Closes: #193161)
  * Small rule updates for dhcpd, kernel, nagios, postfix, rsnapshot
    thanks to Peter Palfrader <weasel@debian.org>.
  * Add gps policy server rules. (Closes: #265176)
  * Fix port match in oidentd rules. (Closes: #265588)

 -- Todd Troxell <ttroxell@debian.org>  Friday, 13 Aug 2004 22:54:13 -0500

logcheck (1.2.24) unstable; urgency=low

  eevans:
  * Added violations ignore rule for squid (Closes: #257874)
  maks
  * Added dhcpd-client, kernel, ntp, postfix rules. (Closes: #259094)
  * Added lots of postfix rules at level workstation for those,
    who wants to include /var/log/mail.log. (Closes: #206495)
  * Generalize "nobody" to "[_[:alnum:]-]+" for su rule. 
  * Update rules ignore.d.paranoid/cron, ignore.d.paranoid/postfix.
    New courier rules merged and simplified from imap, impd-ssl and pop3d-ssl.
    thanks to Bastian Blank <waldi@debian.org>. (Closes: #258759)
  * Fix pid regex in cyrus rules. (Closes: #259092)
  * Added cyrus rules for notifyd. (Closes: #259466)
  * Make sure logtail gets a logfile to read, if not exit soon.
    Documented -o switch in logtail(8). (Closes: #259371)
  * Added logcheck-devel mail to logtail(8) and copyright.
  * Added userv rules. (Closes: #260105)
  * Generalize user match in spamd rule. (Closes: #260103)
  * Added a ippl rule at level workstation. (Closes: #260102)
  * Updated logcheck help message to all existent switches.
    Corrected logcheck command line parsing, -T needs no args.
    Use 6 'X' for mktemp(1) template. Better lock handling. (Closes: #260330)
  * Do not create unused /var/state/logcheck and really get rid of it. 
    (Closes: #260096)
  * Added cs Translation. thanks Jan Outrata. (Closes: #260382)
  * Remove duplicate postfix rules, fix for remote string add lmtp rule.
    (Closes: #260810)
  todd:
  * Added 2 kernel rules for sparc workstations.
  * Added nearly 50 squid rules. (Closes: #213711)
  * Fix anacron Normal exit rule.
  * Move adduser from preinst to postinst (Closes: #258735)
  * Update pump and dhclient rules.

 -- Todd Troxell <ttroxell@debian.org>  Friday, 23 Jul 2004 21:39:19 -0500

logcheck (1.2.23) unstable; urgency=low

  maks:
  * Remove logcheck pre-dependency on logtail.
  * Added imapproxy, kernel, nfs, scponly rules. 
  * Updated dhcpd, innd, postfix, su, sudo rules. 
    (Closes: #253879, #244171, #190101, #254681, #253861, #186372, #255560).
  * Fix locale dependent regexes.
  * Implemented testing mode to logcheck - doesn't update offset.
  * Added -l LOG switch for test runs on new log files.
    thanks todd for ideas and first work (Closes: #234385).
  * Add -m switch to specify recipient. (Closes: #149567).
  alfie:
  * debian/logcheck-database.templates: Clearified the rules-directories-note
    template and got updates for all translations. Thanks for fast responses!
  todd:
  * Update innfeed rules (Closes: #254133).
  * Update dhcp3 rules (Closes: #256549).
  * Change postinst script to set permissions on versions previous to 1.2.23
  (Closes: #253998).
  * Add postfix rule for lmtp.
  * Add Rule for cyrus imap/SQUAT annoyance.
  * Spamd update for unknown message id.
  * Add Kernel and bonobo rules for workstations.

 -- Todd Troxell <ttroxell@debian.org>  Thursday, 12 Jul 2004 22:55:19 -0500

logcheck (1.2.22a) unstable; urgency=low
  
  maks:
  * Fix broken cleancheck call. (Closes: #252966, #253075, #253260, #253486)

 -- Todd Troxell <ttroxell@debian.org>  Thursday, 10 Jun 2004 04:18:23 -0500

logcheck (1.2.22) unstable; urgency=low

  maks:
  * Remove broken attempt to avoid UTF-8. (Closes: #214117)
  * Update automount, innd, kernel, openvpn, postfix rules. 
    (Closes: #252216, #249474, #244172, #252174, #187496, #249181, #252712)
  * Better readability of greplogoutput() in logcheck.
  * Our Perl usage needs 5.8, add dependency. (Closes: #252078)
  * Rename conflicting logcheck-sendmail rule in logcheck-sendmail_tmp
    Sendmail ships aboves rule. (Closes: #252661, #252556)
  todd:
  * add MAILTO=root to logcheck.cron.d (Closes: #252597)

 -- Todd Troxell <ttroxell@debian.org>  Saturday, 05 Jun 2004 14:02:47 -0500 

logcheck (1.2.21) unstable; urgency=low

  maks:
  * Better description of logtail package.
  * Recommend use of an offsite email address in main conf.
  * Added and updated bind, cracklib, innd, kernel, logcheck, nntpcache,
    Login.app, proftp, postfix, pump, sendmail rulefiles.
    (Closes: #248816, #213709, #198767, #248409, #249074, #250374, #250373, 
     #249181)
  * Added -v switch (outputs logcheck version).
  * Harden permissions regarding world.
  * Added and updated arpwatch, bind, gconf, gdm, kernel, openvpn, postfix,
    rpc.statd and spamd rules.  thanks to Peter Palfrader <weasel@debian.org>.
  * New Config option for subject tags [logcheck].
  * Lower all debconf messages priority.
  * Added and updated oidentd rules. (Closes: #186849)
    thanks to Tobias Wolter <towo+bugs@ydal.de>
  * Ignore normal use of su and sudo. (Closes: #182992, #192192)
  * Remove empty file innd.
  * Add switches to logtails default arguments.
  * Added cvs-build, cvs-clean debian/rules - stolen from apt.
  * Denote /etc/logcheck/logcheck.logfile as CFG in manpage and logcheck.
  * Move logtail.8 from debian to doc dir.
  * Added Japanese translation. thanks to Hideki Yamane (Closes: #251463)
  * Added French translation. thanks to Rémi Pannequin (Closes: #252173)
  * Fix bashishm in preinst and postinst. (Closes: #251364)
  todd:
  * Add debconf to logcheck Depends:
  * Check the return values of all commands that write to disk.
    (Closes: #174173)
  * Add NEWS.Debian to logcheck.docs (Followup to #247360)
  eevans:
  * Made addition of logcheck user and permissions/ownership changes a
    conditional of an upgrade from a version less than 1.2.19.
    (Closes: #249324)
  * Added a note to README.Debian on how to manually change the cronjob 
    interval. (Closes: #222240, #226937)
  alfie:
  * src/logcheck: test also for readability for the header.txt and footer.txt.
  * debian/changelog: stripped all trailing whitespace from the file.
  * debian/*templates: Some small consistency and formating updates. Updated
    the debian/po/*.po files too.

 -- Todd Troxell <ttroxell@debian.org>  Thursday, 03 Jun 2004 05:49:47 -0500

logcheck (1.2.20a) unstable; urgency=low

  maks:
  * Fix bug where many extra TMPDIRs were being created and never removed

 -- Todd Troxell <ttroxell@debian.org>  Sunday, 16 May 2004 02:21:00 -0500

logcheck (1.2.20) unstable; urgency=low

  maks:
  * Updated gconfd rules. (Closes: #246695)
  * Added and Updated ntpd rules. (Closes: #246750)
  * Added first cyrus rules. (Closes: #247047)
  * Updated pop3d-ssl rules.
  * Updated postfix rules. (Closes: #196258, #190696)
  * Try secure TMPDIR in /tmp if /var/tmp fails. (Closes: #242284)
  * Initial german translation.
  * Set a sane DEFAULTLEVEL="server" in logcheck itself.
  * Better hantling of crontab.  (Closes: #243019)
  * Enhanced manpage logcheck(8). (Closes: #215640)
  * Add syslog-ng option for sysklogd dependency. (Closes: #248244)
  alfie:
  * Full german translation.
  * Updated pt_BR translation from André Luís Lopes.
  * Run debconf-updatepo.
  * debian/logcheck.8 is generated, so get rid of it in clean target, too.
  todd:
  * Change logcheck home to /var/lib/logcheck. (Closes: #247614)
  * Change modes on /etc/logcheck. (Closes: #247929, #248046)
  * Allow adm group to read logcheck rules. (Closes: #209048)
  * Remove noroot template. (Closes: #247360)
  * Remove useless chown to /var/tmp/logcheck* thanks to maks.
  * Remove bash depends.  Bash is marked essential.
  * Change Maintainer field to Debian logcheck Team,
    set ttroxell@debian.org as uploader.
  * Bumped standards to 3.6.1.
  * Removed Python from Build-Depends-Indep.  Thanks, Alfie.
  * Changed chmod to /etc/logcheck in postinst to use X flag instead of x.
    Thanks, Martin Waitz

 -- Todd Troxell <ttroxell@debian.org>  Wednesday, 12 May 2004 04:49:00 +0000

logcheck (1.2.19-2) unstable; urgency=low

  maks:
  * Add another chown -R flag. (Closes: #247279)
  todd:
  * Fix templates (Closes: #247466, #247467, #247424)
  * Lower debconf noroot message priority
  * Add NEWS.Debian to make some progress on 247360

 -- Todd Troxell <ttroxell@debian.org>  Wednesday, 05 May 2004 01:39:00 +0000

logcheck (1.2.19-1) unstable; urgency=low

  todd:
  * quick fix release to keep things working in unstable
  * add -R flag to chmod in configure (Closes: #247230)

 -- Todd Troxell <ttroxell@debian.org>  Monday, 03 May 2004 16:02:11 +0000

logcheck (1.2.19) unstable; urgency=low

  maks:
  * Rename "Security Violations" in "Security Events". (Closes: #182079)
  * Use the newer gettext-based debconf template translation system.
    Patch with pt_BR translation from André Luís Lopes. (Closes: #187519)
  * Documented -u switch in manpage.
  * Updated pump rules.
  * Updated uptimed rules. (Closes: #216204)
  * Logcheck used empty ignores when greplogoutput was called with 2 arguments.
    Thanks to Paul Cassella for preliminary patch. (Closes: #243980)
  eevans:
  * Added a trap to invoke cleanup() when shell exits. Thanks to Marc
    Staveley for the patch. (Closes: #207795)
  * Changed interpreter from /bin/sh to /bin/bash
  todd:
  * Added -t flag to logtail and logtail.8 - used in test mode - see man page
  * Added bash depends in debian/control - required by trap patch above
  * Added adduser depends, add logcheck user on preinst and remove in postrm
  * Set to run as user logcheck (Closes: #97573)
  * Changed permissions in Makefile to allow for use as user logcheck
  * Set configure in postinst to fix file perms on on files to facilitate
    running as user logcheck
  * Removed chmod from logtail. (Closes: #189822)

 -- Todd Troxell <ttroxell@debian.org>  Monday, 03 May 2004 09:59:29 +0000

logcheck (1.2.18) unstable; urgency=low

  * New maintainer (Closes: #244271)
  * Updated debian/copyright with new upstream information. (Closes: #206022)
  * Updated sudo, oidentd rules.
  * Updated dhclient rules. (Closes: #202718)
  * Updated ignore.d.server/ssh to match newest ssh logs. (Closes: #242217)
  * Updated cron, ssh, sudo, su rulefiles to recent PAM session logs.
    (Closes: #241058, #242276, #243861)
  * Sync better package description with manpage intro.
  * Use standard ISO 8601 separator like "-" for date. (Closes: #226840)
  * Removed reference to old filename restriction. (Closes: #193485)
  * Better wording for -l switch. (Closes: #234383)
  * Added Files section in manpage.

 -- Todd Troxell <ttroxell@debian.org>  Friday, 23 Apr 2004 20:04:21 +0000

logcheck (1.2.17) unstable; urgency=low

  * Allow rules in ignore.d.violations to run regardless of filename
    prefix.  (Closes: #241236)  Patch from maximilian attems
  * Allow mail subjects to optionally qualify the reporting machines
    hostname.  (FQDN=[01])  (Closes: #241216)
  * Strip leading and trailing whitespace from log entries before
    processing them.  (Closes: #238513)
  * Added NTP rules.  (Closes: #222944)
  * Updated su rules. (Closes: #226838)

 -- Steve Kemp <skx@debian.org>  Wednesday, 01 Apr 2004 11:04:21 +0000

logcheck (1.2.16) unstable; urgency=low

  * Penultimate upload before the new perl revision homed at:
  		http://alioth.debian.org/projects/logcheck
    Volunteers and co-maintainers welcome, many thanks for the
    recent bug triaging by many people.
  * Suggest syslog-summery in the control file.
    (Closes: #210753) Thanks to Julien Noel.
  * Warn if syslog-summery isn't installed.
    (Closes: #192167) and  (Closes: #185788) Thanks to Julien Noel.
  * Updated the matching pattern for su.
    (Closes: #230587) Thanks to Bengt Thure.
  * Use 'logcheck' in the license files instead of 'foobar'.
    (Closes: #212147) Thanks to Marc Haber.
  * Updated dependencies to include exim4 instead of exim.
    (Closes: #228584) Thanks to Marc Haber.
  * Make all rule files readable to the world.
    (Closes: #224026) Thanks to Marc Haber.

 -- Steve Kemp <skx@debian.org>  Wednesday, 03 Mar 2004 17:31:27 +0000

logcheck (1.2.15) unstable; urgency=low

  * Clarified copyright, thanks to Javier <jfs@computer.org>
    (Closes: #196433)
  * Incorpated improved patern for 'su'.
  * Updated the header/footer usage, thanks to Santiago Vila <sanvila@unex.es>
    (Closes: #191891)
  * Fixed typo in template, thanks to Christian <cts@debian.org>
    (Closes: #191340)
  * Fixed more typos in templates, thanks to Jens <jens@kubieziel.de>
    (Closes: #201628)
  * Create working directory on install, thanks to Peter Rose
    (Closes: #198922)

 -- Steve Kemp <skx@debian.org>  Thursday, 07 Aug 2003 11:08:45 +0000

logcheck (1.2.14) unstable; urgency=low

  * Improved lockfile handling, thanks to Nicholas Francois
    (Closes: #189867)
  * Call logfile via it's complete path, thanks to Mark Ballinger
    (Closes: #190395)
  * Updated the rules for dhclient, thanks to Mark Brown
    (Closes: #190872)
  * Don't complain about failing removal of checkfile, thanks to Christian
    Hammers (Closes: #186365)
  * Allow the use of configuration header and footer text, thanks to Jon Marler
    (Closes: #177227)
  * Added minimal new file for removing USB debugging messages from the mails.
  * Added minimal configuration file for ignoring sudo messages.

 -- Steve Kemp <skx@debian.org>  Mon, 07 Apr 2003 10:17:20 +0000

logcheck (1.2.13) unstable; urgency=low

  * New maintainer.

 -- Steve Kemp <skx@debian.org>  Mon, 07 Apr 2003 10:17:20 +0000

logcheck (1.2.12) unstable; urgency=low

  * Add the /etc/logcheck/cracking.ignore.d directory to
    logcheck-database.
  * Changes to PATH handling.
    - Set PATH in the crontab
    - No longer set PATH in logcheck.
  * Some cleanups to the depends.
  * Add a description comment to the crontab.
  * Cleanups to the introduction message disabling code
    - Change logcheck.conf to be INTRO=1 instead of INTRO="yes"
    - Check for old style INTRO settings in logcheck.conf and correct.
  * Updates to the regression tests to set the PATH, so it finds the
    correct version of logtail.
  * Changes to the Introduction message.
  * Flag a @reboot run of logcheck in the subject line.
  * Use debian/compat instead setting DH_COMPAT=4 in debian/rules.
  * Some improvements to the following rulefiles:
    - /etc/logcheck/ignore.d.paranoid/cron
    - /etc/logcheck/ignore.d.server/innd

 -- Jon Middleton <jjm@debian.org>  Wed, 19 Mar 2003 21:34:29 +0000

logcheck (1.2.11) unstable; urgency=low

  * Add an configuration option to run syslog-summary over each sections
    log messages. (closes: #87439)

 -- Jon Middleton <jjm@debian.org>  Sat,  1 Mar 2003 22:52:55 +0000

logcheck (1.2.10) unstable; urgency=low

  * Added ignore rules for courier-pop-ssl.
    (/etc/logcheck/ignore.d.server/pop3d-ssl)
  * Added ignore rules for courier-imap-ssl.
    (/etc/logcheck/ignore.d.server/imapd-ssl)
  * Reduced the imap ignores to cover only courier-imap.
    (/etc/logcheck/ignore.d.server/imap)
  * Yet more rulefile improvements:
    - /etc/logcheck/violations.ignore.d/logcheck-postfix
    - /etc/logcheck/ignore.d.paranoid/postfix
    - /etc/logcheck/ignore.d.server/ssh
    - /etc/logcheck/ignore.d.server/postfix
    - /etc/logcheck/ignore.d.server/innd
    - /etc/logcheck/ignore.d.server/ucd-snmp (closes: #182441)
    - /etc/logcheck/ignore.d.server/automount (closes: #182271)

 -- Jon Middleton <jjm@debian.org>  Sat,  1 Mar 2003 19:03:46 +0000

logcheck (1.2.9) unstable; urgency=low

  * Use the replacement subject options from logcheck.conf to set the
    section headers.
  * Yet more fixes to violations.ignore.d/logcheck-innd.
  * Some improvements to the following rulefiles:
    - /etc/logcheck/ignore.d.paranoid/cron
    - /etc/logcheck/ignore.d.paranoid/postfix
    - /etc/logcheck/ignore.d.server/imap

 -- Jon Middleton <jjm@debian.org>  Sun, 23 Feb 2003 10:37:56 +0000

logcheck (1.2.8) unstable; urgency=low

  * Added ERROR to violations.d/logcheck. (closes: #182011)
  * Correct typo in violations.ignore.d/logcheck-innd.
    (closes: #181847, #182025)
  * Ignore pam session open and close messages for a user in
    violations.ignore.d/su.  (closes: #180844)
  * Some fixes and improvements to the following rulefiles:
    - /etc/logcheck/cracking.d/logcheck
    - /etc/logcheck/violations.ignore.d/logcheck-innd
    - /etc/logcheck/ignore.d.paranoid/cron
    - /etc/logcheck/ignore.d.paranoid/ssh
    - /etc/logcheck/ignore.d.server/cron
    - /etc/logcheck/ignore.d.server/imap
    - /etc/logcheck/ignore.d.server/innd (closes: #181137)
    - /etc/logcheck/ignore.d.server/logcheck
    - /etc/logcheck/ignore.d.server/postfix
    - /etc/logcheck/ignore.d.workstation/ppp
    - /etc/logcheck/ignore.d.workstation/logcheck

 -- Jon Middleton <jjm@debian.org>  Sat, 22 Feb 2003 18:47:49 +0000

logcheck (1.2.7) unstable; urgency=low

  * Update README.Maintainer to be a bit clearer. (closes: #178664)
  * Add missing \]'s to ignore.d.server/postfix. (closes: #180533)
  * Do not show upgrade messages on initial install (closes: #180667)
  * Rename violations.ignore.d/innd to violations.ignore.d/logcheck-innd.
  * Document setting $RULEDIR in the config file (closes: #181420)
  * Replaced [[:digit:]]+ with [0-9]+ as it's makes lots of lines shorter.
  * Fixes and improvements to the following rulefiles:
    - /etc/logcheck/violations.ignore.d/logcheck-postfix.
    - /etc/logcheck/violations.ignore.d/logcheck-innd.
    - /etc/logcheck/ignore.d.server/dhcpd. (closes: #181137)
    - /etc/logcheck/ignore.d.server/innd. (closes: #180792)
    - /etc/logcheck/ignore.d.server/imap. (closes: #181263)
    - /etc/logcheck/ignore.d.server/dhclient.
    - /etc/logcheck/ignore.d.server/squid.
    - /etc/logcheck/ignore.d.paranoid/postfix.
    - /etc/locgecck/ignore.d.paranoid/imap.
    - /etc/locgecck/ignore.d.paranoid/ppp.

 -- Jon Middleton <jjm@debian.org>  Wed, 19 Feb 2003 22:18:38 +0000

logcheck (1.2.6) unstable; urgency=low

  * The "Mutli-Megabyte mails are good for you" release.
    This release improves the matching of *most* rulefiles, but there
    are an number of services that I do not run. Patches to any
    incorrectly anchored lines (with example syslog messages) would be
    welcomed.
  * Cleanup the rulefiles
    - Remove duplicate rules from workstation, server and paranoid.
    - Remove .* where possible (closes: #165950).
    - Anchor all lines with ^ and $ (closes: #166029).
    - Remove obsolete and badly written rules.
  * Indent Build-Depends-Indep in the control file.
  * Only display the debconf standard-rename-note note if upgrading for a
    version less than 1.2.1
  * Prompt with debconf about the removal of old conffiles.

 -- Jon Middleton <jjm@debian.org>  Sun,  9 Feb 2003 16:41:41 +0000

logcheck (1.2.5) unstable; urgency=low

  * Renamed old README to CHANGES, now logs changes.
  * Documentation updates from Justin B Rye. (closes: #177320)
    - Updates to CHANGES
    - New READMEs for logcheck, logcheck-database, logtail
    - Updates to logtail manpage.
  * Rulefile ignore.d.paranoid/bind is now left-anchored.
    (Thanks to Justin B. Rye).
  * Updated to debhelper v4.
    - Updated Build-Depends-Indep
    - Use ${misc:Depends} to generate debconf depends.
  * Add a versioned build-dep for debianutils, as the regression
    tests require run-parts with the --list option. (closes: #177987)
  * Improvements to violations.ignore.d/su from Elmar Hoffmann.
    (closes: #178421)
  * Improvements to ignore.d.server/dhclient from Jonas Smedegaard.
    (closes: #178540)
  * Remove ignore.d.workstation/dhclient and ignore.d.workstation/dhcp as
    there the same as files that are in ignore.d.server.

 -- Jon Middleton <jjm@debian.org>  Mon, 27 Jan 2003 11:40:06 +0000

logcheck (1.2.4) unstable; urgency=low

  * No longer use echo -e, as it's not available under dash.
    (closes: #176700)
  * Add violations.ignore.d/su to ignore some common cases.
  * Improved regex's for su and sudo violations rulefiles.
  * Improved regex for innd violations.ignore rulefile.

 -- Jon Middleton <jjm@debian.org>  Tue, 14 Jan 2003 23:04:37 +0000

logcheck (1.2.3) unstable; urgency=low

  * Update to Standards-Version 3.5.8
  * Doc's now mention egrep not grep (closes: #52096)
  * Move su and sudo into there own violations files. (closes: #176532)
  * Enable (and note) changes to ignore.d directory behaviour.

 -- Jon Middleton <jjm@debian.org>  Sun, 12 Jan 2003 23:48:13 +0000

logcheck (1.2.2) unstable; urgency=low

  * Reduce memory use in logtail by calling the file handle from a
    while loop. (closes: #175546).
  * Include manpage for logcheck. (closes: #169197)
  * Make sure that all rulefiles have new line before EOF.
    (closes: #166015, #175985)
  * Sort logcheck rulefiles.
  * Remove duplicates from cracking and violations logcheck rulefiles.

 -- Jon Middleton <jjm@debian.org>  Sat, 11 Jan 2003 21:12:34 +0000

logcheck (1.2.1) unstable; urgency=low

  * Use lockfile-progs instead of dotlockfile as it works.
  * Some more Getopts tweaks from Justin B Rye.
  * Rename the standard files to logcheck, as it's a better name.
  * Send error mail only when only in STDOUT mode.
  * Rename standard.postfix to logcheck-postfix, so that run-parts will
    list it. (closes: #175300).
  * Correct typo in README.Debian.(closes: #175402)
  * Support local-* file in violations.ignore.d for local ignores.
    (closes: #175302)

 -- Jon Middleton <jjm@debian.org>  Sun,  5 Jan 2003 19:52:32 +0000

logcheck (1.2.0) unstable; urgency=low

  * Removed the uploaders field from the control file.
  * Fix cracking ignore support (Thanks to David James McClurkin)
  * Make use of run-parts --list for the cleaning of rulefiles and depend
    on debianutils >= 1.16.9, this also removes error messages about
    ignored file types. (closes: #166901, #166044)
  * Corrections to debian/logcheck.templates. (closes: #173749)
  * Removed ignore.d.workstation/exim and ignore.d.paranoid/exim as these
    messages are covered by the cron ignore file.  (closes: #166097)
  * Set the REPORTLEVEL to paranoid if not set in the conf file.
  * Added commandline options.
  * Improved the introduction message (closes: #174329)
  * Removed ignore files for non-free packages (portsentry and qmail)
  * Improved Bind ignores from Jonas Smedegaard (closes: #171362, #171362)
  * No longer use hardcoded paths (closes: #174972, #175044)
  * Documentation updates (Thanks to Justin B Rye)
    - Spelling and grammar fixes to debug and comments
    - Improvements, spelling and grammar fixes to debconf templates
    - Improvements, spelling and grammar fixes to README.Debain
    - Usage text for logcheck -h
    - Improvements to /etc/logcheck/logcheck.conf
  * Added code (not yet enabled) to allow the ignore directories to also
    include the files from lower levels i.e.

       workstation  = workstation + server + paranoid
       server       = server + paranoid
       paranoid     = paranoid

 -- Jon Middleton <jjm@debian.org>  Thu,  2 Jan 2003 20:02:35 +0000

logcheck (1.1.9.8) unstable; urgency=low

  * Packages can now to apply ignore rules to the standard violations
    file. (closes: #155594, #155596)
  * Added more bind ignores for to ignore.d.server. (closes: #164859)
  * Added ignores for gconf to ignore.d.workstation.
  * Added ignores for squid to ignore.d.server.
  * Added a lockfile so that only one instance can run (closes: #144118)
  * Added violations.ignore.d/standard.postfix with common messages.
  * Added failure to violations.d/standard.
  * Support old and new style of pam syslog messages.
  * Fix errors reported by linda.
    - Use set -e in all Maintainer scripts instead of /bin/sh -e.
    - Remove unused dh_testversion.
    - Install undocumented man page for logcheck.

 -- Jon Middleton <jjm@debian.org>  Sun, 20 Oct 2002 17:26:55 +0100

logcheck (1.1.9.7) unstable; urgency=low

  * Do not mask some real errors from dhcp (closes: #164794)
  * Ignore crontab edit and replace for server and workstation
    (closes: #97407)

 -- Jon Middleton <jjm@debian.org>  Tue, 15 Oct 2002 09:17:56 +0100

logcheck (1.1.9.6) unstable; urgency=low

  * Added ignore rules for dhclient and chronyd (closes: #161247, #92101)
  * Added innd stats message to violations.ignore.d/standard (closes: #91734)
  * Added ucd-snmp Connections to ignore.d.server/standard
    (closes: #100721, #95682)
  * Added promisc to violations.d/standard (closes: #113572, #114616)
  * Added ignore rules for pppd (closes: #137228)
  * Added rules for dhcp3-server to ignore.d.server/dhcp (closes: #141973)
  * Added lame server ignore rule for bind9 (closes: #146150)
  * Added local oidentd lookup to ignore.d.server/standard (closes: #92272)
  * Added some imapd ignore rules to ignore.d.server/imap (closes: #136699)
  * Added ignore for bind NOTIFYs to ignore.d.server/bind (closes: #128901)
  * Updated workstation and server ignore entries for new pam (closes: #164168)
  * More robust handling of non-existent logfiles (closes: #164003)
  * Added ignore rules to server and workstation for nntpcache
    (closes: 164534)

 -- Jon Middleton <jjm@debian.org>  Thu, 10 Oct 2002 19:58:30 +0100

logcheck (1.1.9.5) unstable; urgency=low

  * The default reportlevel was not changed in the last release.
  * Fix logtails postinst for upgrade from versions between 1.1.9.2
    and 1.1.9.4.
  * Change logcheck.logfiles to only be a union of *.* this should finally
    fix the long standing problem of lines being logged multiple times in
    one email message.

 -- Jon Middleton <jjm@debian.org>  Wed, 11 Sep 2002 20:27:47 +0100

logcheck (1.1.9.4) unstable; urgency=high

  * Urgency set to high, as this version needs to get into testing.
  * Make the test for the logtail manpage divert silent.
  * Change default reportlevel to paranoid
  * Change Conffile handling (closes: #156945, 156942)
    - Do not update logcheck.logfiles with syslogd-listfiles.
    - Temporarily do not ask some debconf questions.
    - Do updated logcheck.conf with debconf values.
  * Start to overhaul the documentation (closes: #156758)
    - Removed out of date upstream 1.1.1 docs from the package.
    - Link logcheck manpage to undocumented until it has been updated.
    - Moved maintainers information into README.Maintainer
    - Replaced the old upstream README with updated version.
    - Changed README.Debian to only cover setup.

 -- Jon Middleton <jjm@debian.org>  Mon, 19 Aug 2002 21:36:04 +0100

logcheck (1.1.9.3) unstable; urgency=low

  * Fix logtails postinst for upgrade from versions prior to 1.1.1-13.1
    (closes: #156772, 156727)

 -- Jon Middleton <jjm@debian.org>  Thu, 15 Aug 2002 18:37:22 +0100

logcheck (1.1.9.2) unstable; urgency=low

  * Added Rene Mayrhofer and myself to the Uploaders field.
  * Logheck postinsts:
    - Do not exit if confiles not writable (closes: #121123)
    - Do not exit if logcheck.logfiles has no comments (closes: 155398)
  * Fix typo's in the debconf messages (closes: #155486)
  * Change logtail to only depend on perl-base (closes: 156416)
  * Improve error checking of cleanrules function (closes: 156387)
  * Try to make warning about rulefile symlink's more meaningful.
  * Ack Chris Boyle's NMU (closes: 133108)

 -- Jon Middleton <jjm@debian.org>  Mon, 12 Aug 2002 21:47:17 +0100

logcheck (1.1.9.1) unstable; urgency=low

  * Change the maintainer to be myself.
  * Increase the version number as this version has undergone a complete
    rewrite (and make it a Debian native package). (closes: #121923)
  * Set LC_CTYPE="" for utf-8 locels. (closes: #136508)
  * Add cracking ignore suppport.
    (closes: #114573, #123898, #131934, #131934)
  * Security violation mails now have a different subject.
    (closes: #119465)
  * Comments are now allowed in rulefiles. (closes: #148964)
  * Really fix the the directory problem. (closes: #151239, #136015)
  * We now use functions for common code. (closes: #127864)
  * All greps are now case sensitive. (closes: #112128, #94351)
  * Try to reduce the number duplicate lines.
    (closes: #129700, #122133, #126326)
  * Lines logged in one section will not appear in any others.
  * If there is no reportlevel set, exit with an error.
  * Added options in logcheck.conf for
    - debug information with timestamps.
    - use sort -u instead of -k 1,3 -s (closes: #122133)
    - overriding the default date
    - set subject lines for emails.
    - set the reportlevel (instead of with an symlink).
    - disable newbie message (closes: #142655)
  * Reduced the length of the e-mail subject lines.
  * Standard rulefiles are now stored in the .d directory's.
  * Move standard rulefiles to there new location on upgrade.
  * Rewrote main Makefile and use that in debian/rules.
  * Depend on the Source version of logtail and logcheck-database.
  * Versioned depends on debian-utils. (closes: #153668)
  * Manpages now in right packages.
  * Do not create symlinks for files in ignore.d's (closes: #135053, #151453)
  * Issue warning if symlink found in /etc/logcheck/*.d
  * Added Debconf question about not managing logcheck.conf (closes: #136772)
  * We do use a stable sort (closes: #111597)
  * Added logrotate support from Oohara Yuuma (closes: #153669)
  * Close the bugs from my NMU's (closes: #139666, #134294, #144390,
    #137043, #136890, #55970, #136890, #134286, #143851, #132254, #149740,
    #149767, #146896, #120894, 136015, #122158, #149134, #131923, #131076,
    #149990)

 -- Jon Middleton <jjm@debian.org>  Sat, 20 Jul 2002 15:56:24 +0100

logcheck (1.1.9.0) experimental; urgency=low

  * Experimental version
  * Not released.
  * Now a Debian Native package as the diffeneces to 1.1.1 are so vast.

 -- Jon Middleton <jjm@debian.org>  Sat, 29 Jun 2002 21:42:12 +0100

logcheck (1.1.1-13.5) unstable; urgency=low

  * NMU with maintainer's permission.
  * Use full path to mktemp.
  * Run mktemp after we get the e-mail address.

 -- Jon Middleton <jjm@debian.org>  Mon,  1 Jul 2002 20:38:49 +0100

logcheck (1.1.1-13.4) unstable; urgency=low

  * NMU with maintainer's permission.
  * Optimize performance (closes: #131923)
  * Identification lines can now be disabled. (closes: #131076)
  * Fix typo in TMPDIR variable (closes: #149990)
  * Removed PATH and hard coded command locations.
  * Only run /usr/sbin/syslogd-listfiles in the postinst if it is
    executable.

 -- Jon Middleton <jjm@debian.org>  Sat, 15 Jun 2002 19:24:32 +0100

logcheck (1.1.1-13.3) unstable; urgency=low

  * NMU with maintainer's permission.
  * Removed bashism (closes: #149740)
  * Exit if there's nothing to do (closes: #149767)
  * Ignore dpkg backups and editor saves. (closes: #146896)
  * Added --directories=skip to egrep. (closes: #120894, 136015)
  * Use --text option to grep (closes: #122158, 149134)

 -- Jon Middleton <jjm@debian.org>  Wed, 12 Jun 2002 18:14:29 +0100

logcheck (1.1.1-13.2) unstable; urgency=low

  * NMU with maintainer's permission.
    (fix install errors and close some long standing bugs)
  * Create temporary directory with mktemp -d and cleanup after every run.
    (closes: #139666,  #134294)
  * Remove /var/tmp/logcheck from package.
  * Move cleaned rulefiles to the temporary directory.
    (Fixes half of #148964)
  * Do not remove /var/lib/logcheck in postinst.
    (closes: #144390, #137043, #136890)
  * Install manpages for logcheck not logcheck.sh (closes: #55970)
  * Move logtail manpage into the logtail package (closes: #136890)
  * Remove Non-English character from package description. (closes: #134286)
  * Fix ssh excludes for newer versions (closes: #143851, #132254)

 -- Jon Middleton <jjm@debian.org>  Sun,  9 Jun 2002 17:16:31 +0100

logcheck (1.1.1-13.1) unstable; urgency=medium

  * NMU.
    (trying to get back into woody)
  * Moved state files to /var/lib/logcheck (and /var/lib/logcheck/cleaned),
    to be FHS-compliant, but left actual temporary stuff (TMPDIR) in
    /var/tmp/logcheck).
    Closes: #133108
  * Added chmod to ensure logtail is 755, as nothing else was making it
    so. I guess Rene just kept his dir lying around with logtail as 755.

 -- Chris Boyle <cmb@debian.org>  Thu, 21 Feb 2002 19:00:22 +0000

logcheck (1.1.1-13) unstable; urgency=HIGH

  This upload fixes a security bug, therfore uploading with urgency HIGH.
  * Fixed usage of uniq for filtering out duplicate lines. This has been
    introduced by a patch I got. In the future, I will have to proof-read
    patches very closely.....
    Closes: #127400
    (Might also fix #129700, but please tell me if it really does.)
  * Also get rid of /var/state/logcheck, /var/cache/logcheck and
    /var/lib/logcheck (that one might get re-introduced in the future, but
    is not needed at the moment). Move everything under /var/tmp/logcheck
    to be FHS-compliant.
    Closes: #128541

 -- Rene Mayrhofer <rmayr@debian.org>  Mon, 21 Jan 2002 10:55:09 +0100

logcheck (1.1.1-12) unstable; urgency=medium

  * Hopefully fixed the upgrade from logcheck <= 1.1.1-9 now by adding a
    versioned Replaces line for logcheck-database and logtail.
    Closes: #120761, #120762, #120852
  * Now the auto-generation of /etc/logcheck/logcheck.logfiles works as
    expected. Reactivaed it in the config and postinst scripts.
    This works by using syslogd-listfiles from sysklogd.

 -- Rene Mayrhofer <rene@mercury.vianoa.at>  Sun, 25 Nov 2001 14:07:11 +0100

logcheck (1.1.1-11) unstable; urgency=high

  FTP maintainers: please decide on your own if this should go into stable. It
  might be a good idea because it fixes some possible security bugs and also
  has some features that I keep getting bug reports about (the current version
  in stable is ancient).

  This release fixes a serious bug (FHS problem) and also fixes A LOT of old
  bug reports. I am sorry for being inactive on this package for such a long
  time, but now I am going back to active development. If you want any feature,
  then simply file a bug report.
  I am now going through bug reports and mails asking for the addition of
  ignore rules to logcheck and I will reassign those bugs to the appropriate
  packages. Now that logcheck has a stable mechanism for package specific
  rules files, please use it. Those rules will be definitely more up-to-date
  when they come with the package that generates the log messages to be
  filtered. If you have any rules that you would like to be added to the
  default installation and they clearly belong to a single package, then
  please ask the maintainer of this package.
  I would really like to see this package going from optional to standard
  priority, but I need quite some help from others to achieve this. The goal
  should be that - on workstation logging level - the user only gets an email
  when seomthing goes terribly wrong. This way, logcheck can be installed on
  all new Debian installations without causing inconvenience for users, but
  offering them a notification tool if something is really broken (or better:
  before something gets broken). And with the current size of the logcheck
  package, space should be no problem....
  * Moved offset data from /var/state/logcheck to /var/lib/logcheck to comply
    with FHS.
    Closes: #108227
  * Incorporated a shell snippet from Markus Gutschke for reading configured
    logfiles from /etc/syslog.conf. This way, logcheck can automatically
    fill /etc/logcheck/logcheck.logfiles with correct values.
    Update: Disabled the code for now because the sed expression does not
    take log file names starting with a "-" in account. If anybody wants to
    correct this sed expression in the logcheck postinst, please let me know.
    I just want to get this release out, finally.....
  * Changed maintainer to rmayr@debian.org.
  * Updated policy version to 3.5.6.0 (this really was a warp jump....).
  * Remove empty lines from rules files before using them. This fixes a
    security problem, because empty lines act as wildcards. Therefore
    one single rule file with an empty line would prevent all log entries
    from being displayed.
    (Idea and one line of shell snippet borrowed from Steve Smith.)
    Closes: #50966
  * Split logtail in its own package.
  * Split the logcheck rules database in an own package logcheck-database.
    Closes: #117537
  * Change naming of offset files in /var/lib/logcheck so that watching
    /var/log/nmessages and /var/log/local/someapp/messages will work.
    Closes: #94234, #108720
  * Fixed a small typo in logcheck.sh.
    Closes: #99619
  * Removed /etc/logcheck/ignore.d.paranoid/sendmail, since it is now
    included in the sendmail package.
    Closes: #113305, #118423, #111549, #110010, #111915
  * The removal problems should now be fixed (now not printing anything in
    postrm anymore - this seemed to be a problem with the debhelper-generated
    debconf cleanup stuff).
    Closes: #90836, #110412
  * Fixed handling of ignore greppings.
    Closes: #95592, #87225
  * Fixed another small bug with grepping ignore files.
    Closes: #118494
  * Do not install the INSTALL file anymore.
  * Corrected spelling errors.
    Closes: #90862, #99106
  * Renamed /etc/logcheck/*hacking* to /etc/logcheck/*cracking*
    Closes: #96319
  * Corrected the sorting of lines in logcheck.sh so that lines with the same
    timestamp get their order preserved.
    Cloeses: #111597
  * Changed string "Security Violations" to "Possible Security Violations" in
    sent mails.
    Closes: #113185
  * Do not use logtail.c from the original logcheck package anymore, but a
    perl version by Paul Slootman. This makes the package architecture
    independent.
    Closes: #89614
  * Run logcheck on reboot (using a line with @reboot in /etc/cron.d/logcheck).
    Closes: #97172
  * Make symbolic links in /etc/logcheck relative.
    Closes: #108370
  * Allow comments in /etc/logcheck/logfiles
    Closes: #111198
  * Renamed logcheck.sh to logcheck.
    Closes: #113842
  * Finally fixed the problem with logrotation.
    Closes: #70926, #79836, #118800

  This is from 1.1.1-10 (never uploaded, only internal testing), but repeated
  here because of the closed bug report.
  * There should be no more problems with duplicate entries in
    logcheck.ignore.workstation, because now this file is quite minimal and
    not generated from diffs to logcheck.ignore.paranoid anymore.
    Closes: #86726

  * Users, please use the newest logcheck version, 1.1.1-4 is ancient. Those
    bugs have been closed quite some time ago:
    Closes: #103397

 -- Rene Mayrhofer <rene.mayrhofer@debian.org>  Fri,  9 Nov 2001 15:59:14 +0100

logcheck (1.1.1-10) unstable; urgency=medium

  * There should be no more problems with duplicate entries in
    logcheck.ignore.workstation, because now this file is quite minimal and
    not generated from diffs to logcheck.ignore.paranoid anymore.
    Closes: #86726

 -- Rene Mayrhofer <rmayr@debian.org>  S1t, 25 Aug 2001 13:17:45 +0200

logcheck (1.1.1-9) unstable; urgency=low

  * Split the logcheck.ignore.* files into smaller pieces, one for each
    package that generates the log messages. Now there are directories
    /etc/logcheck/ignore.d.(workstation|server|paranoid) and
    /etc/logcheck/ignore.d will be a link to one of those equivalent to the
    handling of /etc/logcheck/logcheck.ignore. This is only the default
    configuration, you can of course remove the link and create your own
    directory.
  * Fixed a stupid bug in logcheck.sh that caused logcheck to mail some
    messages to the admin even if the last file in ignore.d or
    violations.ignore.d should have filtered it out.
    Closes: #87225
  * Now use debhelper version 3.
  * This bug (using '\(' and '\)' instead of '(' and ')' for automount rules)
    has been fixed as of version 1.1.1-7.
    Closes: #86678
  * There should be no more problems with duplicate entries in
    logcheck.ignore.workstation, because now this file is quite minimal and
    not generated from diffs to logcheck.ignore.paranoid anymore.
    Closes: #86726

 -- Rene Mayrhofer <rene.mayrhofer@vianova.at>  Wed, 21 Feb 2001 11:03:57 +0100

logcheck (1.1.1-8) unstable; urgency=medium

  * Added the directories /etc/logcheck/*.d so that other packages can drop
    their rules files into them. Therefore logcheck will only include basic
    rules in the future and will expect other packages to include their own.
    Please read README.Debian for details about this new feature.
    Closes: #80581
  * Fixed typo in mail message
    Closes: #80870, #85768
  * This bug has been fixed by 1.1.1-7.
    Closes: #81078
  * Fixed bug in 'conffiles' in the Debian directory. The path names were
    relative, but should be absolute.
    Closes: #81498
  * Added more rules for logcheck.ignore.server for leafnode and uptimed. This
    is a temporary solution, the next version of logcheck will have the rules
    files split on a per-package basis, so that these rules files can be
    integrated easily in the corresponding Debian packages. But I don't want
    to make all those changes at once, so this is a release featuring the
    logcheck.sh enhancements, the next one will change the config files.
    Closes: #80580
  * Added more rules for logcheck.ignore.workstation for pppd.
    Closes: #79974

 -- Rene Mayrhofer <rene.mayrhofer@vianova.at>  Thu, 28 Dec 2000 12:06:53 +0100

logcheck (1.1.1-7.3) unstable; urgency=medium

  * Yet another upload due to problems with orig.tar.gz.
    I am really sorry about this (hmh@debian.org, sponsor).

 -- Rene Mayrhofer <rene.mayrhofer@vianova.at>  Mon, 19 Dec 2000 18:52:00 -0200

logcheck (1.1.1-7.1) unstable; urgency=low

  * Reupload due to broken orig.tar.gz file.

 -- Rene Mayrhofer <rene.mayrhofer@vianova.at>  Mon, 18 Dec 2000 17:58:14 -0200

logcheck (1.1.1-7) unstable; urgency=low

  This release can be considered a major release. Since I did not hear
  anything from the upstream maintainer in the last 6 months, I am fixing all
  those little bug reports (that the upstream author promised to fix with his
  version 2.0) now in the Debian package. Not very nice, when the new upstream
  version actually is released, but it has been too long now......
  * Added more rules and fixed some rules in logcheck.ignore
    (every time the same dumb "(" to "\(" translations....)
  * Changed 'BAD' to '\bBAD\b' in logcheck.violations
    Closes: #78969
  * Fixed the Makefile, because the creation of the ignore files did not work
    with current woody (the default behaviour of patch for creating backup
    files seems to have changed).
  * Fixed a bug in postinst - it was possible that it could overwrite a
    manually created .ignore file (a missing return statement - the check for
    this case was already in the script).
    Closes: #77615, #77002
  * Changed the postfix so that either the config directory /etc/logcheck is
    deleted when purging or a message is given that it is not empty.
    Closes: #69554
  * Changed the Depends line to have sysklogd | system-log-daemon since syslogd-ng
    now conflicts with sysklogd.
    Closes: #76657
  * The list of logfiles the logcheck checks ( :-) ) is now configurable in a
    file /etc/logcheck/logcheck.logfiles - so logcheck.sh should not need to
    be modified anymore. Thanks to Jeremy Hankins for that idea.
    Closes: #66686, #67728, #47339, #59899, #51302
  * The input of grepping the logfiles is now run through sort first, thus
    eliminating duplicate log entries caused by checking multiple log files
    with the same log messages in them. Additionally this should reduce the
    resource usage of the grep runs as suggested by KORN Andras.
    Closes: #59559, #74410, #51333
  * The config file /etc/logcheck/logcheck.conf is now sourced later in the
    logcheck.sh script, thus all of the configuration variables can be
    overridden in the config file. I placed it a bit later than suggested by
    Chris Fearnley (thanks for the hint), because this way it is also possible
    to change the DATE variable, setting another date format string with it
    (as suggested by jbr@datacash.com). Now there is a new default for the
    DATE variable in logcheck.conf.
    Closes: #71880, #63894, #74330
  * The offset files for logtail are now stored in logcheck's private
    directory instead of /var/log (thanks to Marco d'Itri).
    Closes: #59899
  * The bugreport regarding segfaults with mailx has been fixed by mailx as
    far as I know (at least it does not seem to be an issue now). Mabye in the
    next version I will try to do without mailx, but at the moment I do not
    have the time to experiment with various mailers and there sendmail
    interface emulation (therefore bug 68793 is still open).
  * I am closing bug report #50994 now, because it turned out (at least for
    me) that escaping the brackets automatically would not be beneficial.
    Since I started using egrep's features with grouping, etc. the ignore
    files got significantly shorter.
    Closes: #50994
  * Now logcheck identifies itself with each mail so that new users don't get
    confused by getting that much mails.
    Closes: #57751

 -- Rene Mayrhofer <rene.mayrhofer@vianova.at>  Thu, 24 Nov 2000 19:14:11 +0200

logcheck (1.1.1-6) unstable; urgency=low

  * Made default configuration files configurable with logcheck:
    security levels are "workstation", "server" and "paranoid"
  * Ask for email address in debconf.
  * Only display debconf note when upgrading from a version < "1.1.1-3" .
    Thanks to Martin Bialasinski for the hint.
    (closes: bug #63490)
  * Depend on mail-transport-agent, cron and syslogd
  * Changed '(' and ')' in logcheck.ignore to '\(' and '\)'
    (closes: bug #59160)
  * Added more rules in logcheck.ignore for "server" and "workstation"
    (closes: bug #61449, bug #56358, bug #50734)
  * Made logcheck.ignore aware of the changed log message of openssh vs. ssh
    (closes: bug #65679)
  * Made it depend on mailx (since logcheck.sh uses /usr/bin/mail)
    (closes: bug #66088)

 -- Rene Mayrhofer <rene.mayrhofer@vianova.at>  Sun,  7 May 2000 20:36:33 +0200

logcheck (1.1.1-5) frozen unstable; urgency=low

  * Added more rules in logcheck.ignore (closes: #56358)

 -- Rene Mayrhofer <rene.mayrhofer@vianova.at>  Tue, 11 Jan 2000 20:25:19 +0100

logcheck (1.1.1-4) unstable; urgency=low

  * Changed '[' and ']' in config files to '\[' and '\]'
    (closes: bug #52097, bug #51291).
  * Run logcheck from the cron.d file only if it is installed
    (closes: bug #51748, bug #51342).
  * Added a note in the postinstall that the config file
    /etc/cron.d/logcheck should be overwritten by dpkg (Thanks to Andrew
    Stribblehill for the hint).

 -- Rene Mayrhofer <rmayr@vianova.at>  Tue,  7 Dec 1999 11:09:28 +0100

logcheck (1.1.1-3) unstable; urgency=low

  * Moved binaries to /usr/sbin and changed permissions to 755 (closes:
    bug #50696)
  * Added some rules to logcheck.ignore so that false alarms are
    prevented.

 -- Rene Mayrhofer <rmayr@vianova.at>  Sat, 20 Nov 1999 18:21:28 +0100

logcheck (1.1.1-2) unstable; urgency=low

  * Made manpages for the executables point to undocumented
  * Moved /var/tmp/logcheck to /var/state/logcheck

 -- Rene Mayrhofer <rmayr@vianova.at>  Wed, 17 Nov 1999 20:43:05 +0100

logcheck (1.1.1-1) unstable; urgency=low

  * New upstream release
  * Now it is distributed under the GPL, moving it back to main.

 -- Rene Mayrhofer <rmayr@vianova.at>  Mon,  1 Nov 1999 01:51:22 +0100

logcheck (1.1-2) unstable; urgency=low

  * Made it /usr/share/doc compliant
  * Moved to non-free/admin

 -- Rene Mayrhofer <rmayr@vianova.at>  Wed, 29 Sep 1999 14:06:27 +0200

logcheck (1.1-1) unstable; urgency=low

  * Initial Release.

 -- Rene Mayrhofer <rmayr@vianova.at>  Mon, 10 May 1999 23:13:20 +0200