File: changelog

package info (click to toggle)
apache 1.3.3-7
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,508 kB
  • ctags: 6,595
  • sloc: ansic: 50,060; sh: 3,776; perl: 1,354; makefile: 234; cpp: 55
file content (1099 lines) | stat: -rw-r--r-- 49,102 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
apache (1.3.3-7) frozen; urgency=low

  * Corrected apache dependency (needed wrong version of apache-common).

 -- Johnie Ingram <johnie@debian.org>  Sat, 13 Feb 1999 17:22:45 -0500

apache (1.3.3-6) frozen; urgency=low

  * User directories no longer allow symlinks by default (config patches
    from Ben Collins and Torsten Landschoff, closes: #32204, important);
    updated docs.
  * Includes packaging fixes from 1.3.3-5, closes: #31503, #31762, #30670,
    #31600, #23696, #28200, #29830, #28566, #30403, #27234.

 -- Johnie Ingram <johnie@debian.org>  Thu, 11 Feb 1999 13:45:17 -0500

apache (1.3.4-4) unstable; urgency=low

  * Removed exit 0 from cron.daily, closes: #32893.
  * User directories no longer allow symlinks by default (config patches
    from Ben Collins and Torsten Landschoff, closes: #32204, important);
    updated docs.

 -- Johnie Ingram <johnie@debian.org>  Thu, 11 Feb 1999 12:26:44 -0500

apache (1.3.4-3) unstable; urgency=low

  * The apache-dev package depends on apache, closes: #28202.
  * Accept-Language: * bug fixed upstream, closes: #29895.
  * Includes os-linline.c (since 1.3.4-1), closes: #31375.
  * FTP proxy response fixed upstream, closes: #27958.
  * Eliminated more lintian warnings.

 -- Johnie Ingram <johnie@debian.org>  Tue,  2 Feb 1999 14:37:18 -0500

apache (1.3.4-2) unstable; urgency=low

  * Removed the apache-1.3.4/o file, noticed by Daniel Jacobowitz.
  * Closes Accept-Language: * bug (#29895).
  * Bugs in 1.3.4-1 prerelease that were fixed by the 1.3.4-1 real upload
    but unfortunately left undocumented as being fixed: #31735 #31848.

 -- Johnie Ingram <johnie@debian.org>  Wed, 13 Jan 1999 04:12:57 -0500

apache (1.3.4-1) unstable; urgency=low

  * New upstream version, fixing Accept-Language: * bug (#29895).
  * The apache-dev package now includes os-inline.c (#31735).
  * Removed possible bashism from apache postinst.

 -- Johnie Ingram <johnie@debian.org>  Tue, 12 Jan 1999 18:15:09 -0500

apache (1.3.3-5) frozen unstable; urgency=low

  * Tweaked init script to understand comments when checking ServerType
    (#31503, important).
  * Tweaked dbmmanage to remove `-' deprecation warning (#31762).
  * Hardcoded server limit set to 512 (#30670).
  * The apacheconfig program now waits for apache to terminate before
    starting it again (#31600).
  * Install script now adds the magic LoadModule line to httpd.conf if for
    some reason it is completely deleted (#23696).
  * Cron script intercepts the truly ancient "#-1" User/Group before
    giving it to savelog (#28200).
  * Closes #29830 and #28566, rotation of logs in Included files.
  * Included db1/db.h fix from Sparc upload (#30403).
  * Closes #27234, feature Options +NoSuExec (patch withdrawn by author
    via IRC).
  * Bugs fixed in previous releases, or non-bugs: #23755 (RTLD_NOW),
    #26318 (suidness of suexec), #25987 #25991 (dbmmanage, reported
    working in 31762 above).

 -- Johnie Ingram <johnie@debian.org>  Tue, 12 Jan 1999 16:20:02 -0500

apache (1.3.3-4) frozen unstable; urgency=low

  * Linked with libc6 2.0.7u-6.
  * Stripped debugging symbols from loadable modules in apache-common.
  * Included patch to cron.daily from Jason Gunthorpe so it also rotates
    logfiles in configuration files added by the "Include" directive
    (#29830), fixing #28566.

 -- Johnie Ingram <johnie@debian.org>  Thu, 26 Nov 1998 14:49:09 -0500

apache (1.3.3-3.1) frozen unstable; urgency=low

  * non maintainer, sparc only upload
  * ndbm.h has moved to db1/ndbm.h with glibc2.1

 -- Christian Meder <meder@isr.uni-stuttgart.de>  Sat, 28 Nov 1998 03:00:34 +0

apache (1.3.3-3) unstable; urgency=low

  * Suppressed "futile" error during fresh install (#25690).
  * Config program does hard restart instead of graceful, so modules are
    reloaded (#23251, also fixes #22443).
  * Removed erroneous Meta tags from example srm.conf (#24623).
  * Brian White confirms that removing "application/x-compress" and
    "application/x-gzip" from mime.types was correct (20809).
  * Bugs fixed in previous versions, or non-bugs: #22546 (DirectoryIndex
    doesn't work), #24776 (mod_rewrite possibly broken).
  * The apache-common package correctly overwrites htpasswd from apache
    (#22695).

 -- Johnie Ingram <johnie@debian.org>  Mon, 12 Oct 1998 20:46:47 -0400

apache (1.3.3-2) unstable; urgency=low

  * Fixed syntax error in debian/rules (#26942).
  * Config programs configures ServerName on initial install again
    (#25161, also fixes #22870).
  * Bugs fixed prior to this release: #23573, #26127 (suidregistration of
    htpasswd), #24415 (suexec and conf.h), #23461 (usr/tmp, fixed in
    1.2.1), #22410 (apachectl non-Linux portability, fixed in 1.3.1).
  * Build process tweaked to be compatible with debhelper from hamm.
  * Modified example mime.types so compressed PS files are correctly sent
    as "application/postscript, encoding x-gzip" instead of merely
    gzipped data (20809, forwarded to mime-support for final resolution).

 -- Johnie Ingram <johnie@debian.org>  Mon, 12 Oct 1998 14:45:50 -0400

apache (1.3.3-1) unstable; urgency=low

  * New upstream version.
  * Closes t1k bug by IRC request (#25641).

 -- Johnie Ingram <johnie@debian.org>  Wed,  7 Oct 1998 15:31:29 -0400

apache (1.3.2-3) unstable; urgency=low, closes=27316

  * Added -O2 at Daniel Jacobowitz's behest.
  * Compiled with libc6 2.0.7t-1 because 2.0.7u of slink blows chunks
    (#27316).

 -- Johnie Ingram <johnie@debian.org>  Thu,  1 Oct 1998 20:44:21 -0400

apache (1.3.2-2) unstable; urgency=low, closes=27143 27167 25095 26151

  * Depends on apache-common (>= 1.3.2) (#27143, #27167) and conflicts
    with older versions of php3 and libapache-mod-perl (#25095).
  * Applied patch from Julian Gilbey so the APACHE_CHOWN_LOGFILES option
    in cron.conf is documented (#26151).

 -- Johnie Ingram <johnie@debian.org>  Mon, 28 Sep 1998 12:42:31 -0400

apache (1.3.2-1) unstable; urgency=low

  * Use dh_clean in clean-comon target.
  * Enabled SHARED_CHAIN for more proper linking of the shared modules.
  * Remove --enable-rule=STATUS; it's no longer applicable.
  * Clean up the http_protocol.c.{orig,rej} mess and remove the no longer
    needed debian/Configuration.
  * Use uudecode instead of munpack; egcs has some scheduling issues with
    compiling munpack at the moment.
  * Remove the hack in 1.3.1-3 in favor of the Apache Group's solution.
  * Non-maintainer upload; -1 by request of Johnie Ingram.
  * New upstream release.

 -- Daniel Jacobowitz <dan@debian.org>  Tue, 22 Sep 1998 16:05:21 -0400

apache (1.3.1-3) unstable; urgency=high

  * Patched against denial of service vulnerability discovered by
    Dag-Erling Smrgrav, where repeated, identical headers consumes O(n^2)
    memory.

 -- Johnie Ingram <johnie@debian.org>  Fri,  7 Aug 1998 22:03:24 -0400

apache (1.3.1-2) unstable; urgency=low, closes=19497 25125 25016

  * Common files split off into separate apache-common package (#19497),
    at the behest of the Policy Manager and apache-ssl maintainer.
  * Conflicts with php3 (<= 3.0-2) (#25125, cf. 25079, 25080) and
    libapache-mod-perl (<< 1.15).
  * Made clean target more aggressive, and removed docs on Bugs now fixed
    upstream, making debian diff (somewhat) smaller.
  * Fixed autodetection of need for mod_mime_magic.
  * Removed duplicate manpage htdigest.8 and obsolete binaries unescape
    and inc2shtml.
  * Default srm.conf now handles more languages (#25016).
  * Fixed version reply.

 -- Johnie Ingram <johnie@debian.org>  Wed,  5 Aug 1998 04:18:47 -0400

apache (1.3.1-1) unstable; urgency=low

  * New upstream version.

 -- Johnie Ingram <johnie@debian.org>  Wed, 22 Jul 1998 18:03:21 -0400

apache (1.3.0-4) unstable; urgency=low, closes=23753 23534 23361

  * Fixed suid unregistration of htpasswd in postinst (#23753).
  * Added patch from Dan Jacobowitz for mod_perl shared library support.
  * The apacheconfig program no longer considers mod_perl obsolete.
  * Closes #23534 and #23361, fixed in 1.3.0-3.

 -- Johnie Ingram <johnie@debian.org>  Sun, 21 Jun 1998 14:58:54 -0400

apache (1.3.0-3) unstable; urgency=low, closes=23534

  * The apacheconfig program no longer indirectly depends on gcc (#23534).

 -- Johnie Ingram <johnie@debian.org>  Mon, 15 Jun 1998 14:55:30 -0400

apache (1.3.0-2) frozen unstable; urgency=low, closes=23221 23277 22066 22609 16623 22174 22771 22858 23109 23361

  * The apxs program has the correct perl path (#23221, important).
  * Conflicts with php (<= 3.0rc4-2) (#23277, important).
  * The config program asks about mod_proxy again, since it now works.
  * CustomLog nicknames finally work inside VirtualHost containers
    thanks to patch from Christof Damian (#22066) and the Apache Group.
  * Added patch to apxs from Gergely Madarasz so PHP can build (23361).
  * This fixes all (2) release-critical bugs, 8 packaging bugs, an
    upstream bug in mod_log_config and a buffer overflow in the ftp proxy.
    It also works with PHP 3.0 without needing a -HUP ever 30 minutes.    :-) 

 -- Johnie Ingram <johnie@debian.org>  Thu, 11 Jun 1998 10:40:45 -0400

apache (1.3.0-1) frozen unstable; urgency=low, closes=22609 16623 22174 22771 22858 23109

  * New upstream version (#22858, #23109).
  * Merged patch from Alpha non-maintainer upload by Paul Slootman
    (#22609).
  * Closes #16623, fixed with apacheconfig savviness added at 1.3b6-2.
  * Fixed user and group in default httpd.conf (again) (#22174).
  * Includes fix from Jules Bean so loadable modules are found in the
    correct order, and apxs uses correct include directory.
  * Doesn't configure in the non-existent mod_rewrite on sparc.
  * Removed dependency on base-passwd (>=2.0.3.2), which guaranteed
    nothing about the existence of www-data user and group.
  * Added FollowSymLinks option to /usr/lib/cgi-bin parameters.
  * The apxs program is now fully configured (#22771).
  * Added mod_throttle 1.0.

 -- Johnie Ingram <johnie@debian.org>  Fri,  5 Jun 1998 00:54:37 -0400

apache (1.3b7-0) local; urgency=low, closes=22609 16623 22174 22771

  * New upstream version: Apache development version 19980523070028.

 -- Johnie Ingram <johnie@debian.org>  Sat, 23 May 1998 08:15:13 -0400

apache (1.3b6-3.1) frozen unstable; urgency=low

  * Non-maintainer upload for Alpha
  * don't build module unique_id, as that code is (self-admittedly) broken
    for 64-bit architectures.

 -- Paul Slootman <paul@debian.org>;  Mon, 18 May 1998 23:16:32 +0200

apache (1.3b6-3) frozen unstable; urgency=low, closes=22074 21525 21532 21708 21778 21893

  * Closed huge gaping suexec security hole with patch from Gergely
    Madarasz (#21525).
  * Fixed typo in apaci build file (#22074), correcting version replies.
  * The config program now asks only the questions it needs to during
    upgrades, avoiding the more lengthier queries, as recommended by
    Andreas Jellinghaus.
  * Added Options Indexes for /usr/doc in access.conf (#21708).
  * Fixed typo in postinst (#21532).
  * Improved cron script so it can rotate the apache logfile just once a
    month, or even only once a year, by popular demand (#21893).
  * Closed #21778, as mod_log_referer (sic) is replaced by mod_log_config.

 -- Johnie Ingram <johnie@debian.org>  Wed,  6 May 1998 08:35:03 -0400

apache (1.3b6-2) frozen unstable; urgency=low, closes=20438 20569 18187 18768 18188 17350 15344 17517 18310 16146 15693 19169 18098 18553 19616

  * New upstream version, release candidate for 1.3.0.
       * The dynamic loading that Debian has done for years is now
         officially supported.
       * Better support for HTTP/1.1-style virtual hosts.
       * A number of bugfixes and internal performance enhancements.
  * Changes from 1.3b6-1 release candidate of Tuesday:
       * Added APACI configuration fixes from Scott K. Ellis.
       * Linked shared modules against libc6 as per policy.
       * The init.d script uses apachectl internally.
       * The proxy module appears broken, so activation is no longer
         attempted.
       * Updated provided conf files, adding highperformance.conf example. 
       * Fixed Powered-by-Apache graphic in /usr/doc/apache/icons/.
  * The configuration program now adds all features with LoadModule
    directives, and in the order recommended for Debian by Lars Eilebrecht
    of the Apache Group (fixing mystifying stuff like #19169).
  * Install scripts no longer attempt to edit /etc/passwd directly,
    which wasn't reliable anyway (#18588).
  * Added text to make it clearer that "corrected" paths are not
    saved to the config files until the very end (#18187).
  * Standard configuration no longer stores icons in /usr/doc (#18188,
    #15344), but asks before correcting icon directory Alias and cgi-bin
    ScriptAlias (#18187).
  * The apachectl script now uses correct paths (#19616).
  * Uses better regular expression in init.d from Nicholas Lichtmaier.
  * It is now possible to backspace during the selection of Y or N
    within apacheconfig (#18310), which also fixes operation on sparc.
  * Configuration program no longer attempts to reconfigure a
    correctly-configured configuration during an upgrade (#17350, #18768,
    #18187).
  * Binds to port 80 even without an explicit Port directive (#18553).
  * The cron.daily script now correctly parses the obsolete and insecure
    Group number "#-1" in httpd.conf (#16146, #15693).
  * Fixed details of logfile locations in apache manpage (#20438).
  * The init.d script now uses the "graceful restart" reload method.
  * Closes #20569: log files listed multiple times are only aged once.
  * Updated initial site webpage.
  * Added yet more debhelperization, eliminating lintian errors.
  * Updated to Standards-Version 2.4.1.0.
  * Closes #18098 -- there is no demand for a 1.2.6 package, and only
    this 1.3.x has been tested in hamm).
  * Closes #18128 -- the postinst should not offer an inetd option, as the
    Apache Group has made it clear this "does not work propery -- avoid if
    at all possible.".
  * Demotes #20655 to severity fixed (apache no longer needs the non-free
    msql.h header to compile, mod_so replaces mod_dl, and dpkg-dev
    1.4.0.22 can extract the source package).
  * Released as -2 because a derivative of a -1 test release somehow found
    its way into Incoming.

 -- Johnie Ingram <johnie@debian.org>  Fri, 24 Apr 1998 12:53:42 -0400

apache (1.3b5-3) frozen unstable; urgency=low

  * Log files listed multiple times are only aged once (#20569).

 -- Johnie Ingram <johnie@debian.org>  Sun, 22 Feb 1998 01:48:41 -0500

apache (1.3b5-2) unstable; urgency=low, closes=18487 18459

  * Fixed regex for detection of ServerType inetd configuration (#18487,
    #18459).

 -- Johnie Ingram <johnie@debian.org>  Sun, 22 Feb 1998 01:24:27 -0500

apache (1.3b5-1) unstable; urgency=low, closes=15285 16503 16952 18176

  * New upstream version: fixes mod_speling, (#16952), works with inetd
    (#15285).
  * Final fix of no2slash() bug: was O(n^2) in the length of the input,
    now O(n), fixing flakiness of 1.3b3-9 (#16503).
  * Applied cosmetic patch to init.d messages from David Rocher (#18176).
  * Added mod_so for testing, to eventually replace mod_dlopen.
  * Init script will not attempt to start apache if it is configured to
    run from inetd (15285).

 -- Johnie Ingram <johnie@debian.org>  Thu, 19 Feb 1998 22:03:34 -0500

apache (1.3b3-13) unstable; urgency=low

  * Added coypright file to apache-doc, and added apachectl manpage, to
    make lintian happier.

 -- Johnie Ingram <johnie@debian.org>  Tue, 10 Feb 1998 01:50:30 -0500

apache (1.3b3-12) unstable; urgency=low, closes=15950 16123 16129 17902 15056

  * Added restart and force-reload targets to init.d script.
  * Module mod_auth_dbm is now included as a shared library (#15950,
    #16123, #16129).
  * The apachectl program now uses correct paths (#17902), and uses a
    fully-qualified domain name instead of "localhost" to appease squid
    proxies (#15056).
  * Included htdigest binary (cf. 17902).
  * No longer uses the deprecated dh_installdebfiles debhelper command.
  * Updated to Standards-Version 2.4.0.0.

 -- Johnie Ingram <johnie@debian.org>  Mon,  9 Feb 1998 10:43:29 -0500

apache (1.3b3-11) unstable; urgency=low

  * The install script now runs suidregister before starting apache
    instead of after (#17078).
  * Cron script now exits with status 0 (#16699, #16829).
  * Config program now understands that the MimeMagicFile directive
    indicates the need for mod_mime_magic (#16616).
  * Removed src/buildmark.c.rej from patch.
  
 -- Johnie Ingram <johnie@debian.org>  Mon, 19 Jan 1998 02:31:11 -0500

apache (1.3b3-10) unstable; urgency=low, closes=16468

  * Updated patch to prevent denial-of-service vulnerability (#16468) --
    previous patch could cause malloc-related problems.

 -- Johnie Ingram <johnie@debian.org>  Fri,  2 Jan 1998 09:48:20 -0500

apache (1.3b3-9) unstable; urgency=low, closes=8924 12022 15000 15053 15270 15299 15470 15737 15958 15988 16073 16176

  * Removed versioned dependency on perl, no longer necessary (now
    installs without forcing on sparc).
  * Applied patch for compliance with policy 2.3.0.1 section 3.6 (#15958).
  * Removed bashisms from cron daily script (#16073) and apachconfig
    program (#15988).
  * Now installs link to shutdown apache at sequence 20 instead of 91
    (#15737).
  * Closed Bug #15470, fixed in 1.3b3-3.
  * Logfile directory now owned by root.root (#12022, cf. 15053), and cron
    script does not chown the logfiles by default.
  * Closed #15053, as the point of running apache as www-data instead of
    nobody is so parts of the site can be safely writable by the server.
  * Install program now uses interactive copy to avoid overwriting
    index.html (#15000, #16176).
  * Tweaked mod_include description in apacheconfig to make it clearer
    that this module must be loaded for XBitHack to work in .htaccess
    files (#15299).
  * Closed #15270, as mod_browser is replaced by the more flexible module
    mod_setenvif (and the appropriate config file automatically changed).
  * Added link to Debian Documentation site in default index.html (#8924).
  * Config program now defaults to fully automagic configuration.
  * Happy new year.
  
 -- Johnie Ingram <johnie@debian.org>  Thu,  1 Jan 1998 03:32:04 -0500

apache (1.3b3-8) unstable; urgency=high

  * Added patch to prevent denial-of-service vulnerability.

 -- Johnie Ingram <johnie@debian.org>  Wed, 31 Dec 1997 18:24:10 -0500

apache (1.3b3-7) unstable; urgency=low, closes=15930

  * Removed unofficial sparc tweak.
  * Added official tweak to conf.h from Dean Gaudet for multiple
    architecture support (os-linux/1542, fixed in 1.3b4).
  * Added temporary fix from Jason Gunthorpe (#15930) for incorrect
    logging of "critical memmap failure" errors (this will be fixed in
    1.3b4).
  
 -- Johnie Ingram <johnie@debian.org>  Fri, 19 Dec 1997 08:54:38 -0500

apache (1.3b3-6) unstable; urgency=low

  * Corrected broken link which occured if apache-doc is not installed.
  * Fixed packaging bugs discovered on powerpc architecture.

 -- Johnie Ingram <johnie@debian.org>  Thu, 11 Dec 1997 14:25:03 -0500

apache (1.3b3-5) unstable; urgency=low

  * Tweaked to autocompile on sparc architecture (mod_auth_db disabled on
    arch due to db.h from the twilight zone, sparc patch sent upstream).

 -- Johnie Ingram <johnie@debian.org>  Wed, 10 Dec 1997 11:25:04 -0500

apache (1.3b3-4) unstable; urgency=low, closes=11736 12042 12091 12093 12101 12600 12988 14895 15602

  * Replaces the obsolete apache-modules package, removed from
    ftp.debian.org by the archive manager (#14982), closing #11736,
    #12042, #12091, #12093, #12101, #12600, #12988, and #14895.
  * Outdated apache package no longer in project/experimental (#15602,
    cf. 14981).

 -- Johnie Ingram <johnie@debian.org>  Thu,  4 Dec 1997 06:01:26 -0500

apache (1.3b3-3) unstable; urgency=low

  * Corrected code typo in log rotation cron script.

 -- Johnie Ingram <johnie@debian.org>  Thu, 27 Nov 1997 17:37:55 -0500

apache (1.3b3-2) unstable; urgency=low

  * Added ability to quit out of the manual module configuration and
    proceed with autoconfig, at the request of Joey Hess on IRC.

 -- Johnie Ingram <johnie@debian.org>  Thu, 27 Nov 1997 15:09:16 -0500

apache (1.3b3-1) unstable; urgency=low, closes=11880 12190

  * New upstream version.
  * Init script no longer uses killall (#12190).
  * Closed #11880 (apache stops responding), fixed in upstream version.

 -- Johnie Ingram <johnie@debian.org>  Thu, 27 Nov 1997 11:56:37 -0500

apache (1.3b2-5) unstable; urgency=low, closes=10352 14829 14888 11834

  * Debian makefile garnished with debhelper commands.
  * All manpages are now compressed (#14888).
  * Logfile rotation time and frequency is now fully customizable, thanks
    to code from Craig Sanders of the temporary autonomous zone (#14829),
    also fixing #10352.
  * Added patch so cron script parsing of apache config files is not as
    fragile (#11834).

 -- Johnie Ingram <johnie@debian.org>  Mon, 24 Nov 1997 22:41:15 -0500

apache (1.3b2-4) unstable; urgency=low, closes=13465 14811 14880 14887 15191 15175

  * Missing www-data user no longer crashes the preinst (#13465).
  * Cron script calls reload to reload the daemon (#14811).
  * The suexec utility is no longer a conffile (#14880, #15191).
  * Development package includes os.h (#15136).
  * Config program detects and corrects obsolete directory name
    /var/log/apache-httpd (#15139), and old modules: mod_browser (#14887)
    and mod_perl (#15175).

 -- Johnie Ingram <johnie@debian.org>  Mon, 24 Nov 1997 15:29:45 -0500

apache (1.3b2-3) unstable; urgency=low, closes=9905

  * Cron script uses #!/bin/sh again -- you just can't win (#9905).

 -- Johnie Ingram <johnie@debian.org>  Wed, 12 Nov 1997 16:22:52 -0500

apache (1.3b2-2) unstable; urgency=low, closes=14806

  * Fixed default configuration files so new installations will succeed
    (#14806).
  * Corrected GIF link in new-installation webpage.
  * Restored obsolete modules mod_log_referer and mod_log_agent.
  * Fixed bug in detection of necessity for loading mod_rewrite module.

 -- Johnie Ingram <johnie@debian.org>  Wed, 12 Nov 1997 14:40:42 -0500

apache (1.3b2-1) unstable; urgency=low, closes=6778 8649 9818 9851 11510 11511 11563 11635 12981 12040 12188 12189 12200 12728 13106 13935 13954 14656

  * New stabler upstream version, now in beta test.
  * Module mod_rewrite no longer out of date (#9993) -- it is now
    officially part of apache.
  * Module mod_browser replaced with mod_envif.
  * Added new modules mod_speling [sic] and mod_mime_magic.
  * Corrected location of CGI logfile in suexec utility (#12040).
  * Configuration files now default to historic locations in
    ServerRoot/conf to ease FrontPage 98 and multi-server configurations
    (#12189), as recommeded by James Chan.
  * Cron script calls /etc/init.d/apache instead of killall (#12200), and
    is no longer confused by multiple User or Group directives in
    httpd.conf (#13741).
  * MIME types file for apache can now differ from systemwide file, as
    recommended by Robert Stone.
  * Installation script no longer fails if /usr/lib/httpd/cgi-bin/ exists
    but is empty (#9818).
  * Support for the SuppressHTMLPreamble is now standard with apache (it
    was a Debian patch in 1.1.3 packages) (#12728, #13954, #11563).
  * Registered suexec with the suidmanager program, so permissions will
    persist across upgrades if it is activated (#13935).
  * Modified init.d script to maintain compliance with Standard for
    Console Messages even if suexec is activated (#13935), and suexec is
    now a conffile.
  * Improved apacheconfig detection of incompatible existing configuration
    (#11510, #12728).
  * Debian patch adds a debian_apache.h header (with correct DOC_LOCATION)
    instead of editing httpd.h, making it easier to rebuild (#9851).
  * Removed apache_monitor, third-party module mod_perl (#14656, #11635,
    #12188), obsolete modules mod_log_agent and mod_log_referer (and
    mod_browser), and mod_auth_dbm (#7516); linked in mod_auth_db.
  * Timestamps now preserved wherever possible during package build.
  * Fixed bug in http_core.c introduced by debian dynamic-modules patching
    and discovered by Dean Gaudet of the Apache Group.
  * Harcoded default user now nobody.nogroup instead of -1.-1 (#12981).
  * Moved pre-permed proxy cache directory from /var/spool to /var/cache.
  * Closed #13106 (RFC 2068 requires errcode 301 instead of 302), fixed
    upstream with HTTP/1.1 support.
  * Closed #11511 (apache complains if max servers is set to over 256) as
    this recommended value is enough for most webserver situations.
  * Closed #6778 (SIGSEGV if virtual server not defined), fixed upstream.
  * Tweaked default index.html page to reflect file locations (#8649).
  * Added SHELL=/bin/bash to debian/rules.
  * Package now conflicts with "apache-modules" package for apache 1.1.3.
  * Cron daily script now uses #!/bin/bash (#9905).
  * Updated to Standards-Version 2.3.0.1.

 -- Johnie Ingram <johnie@debian.org>  Wed, 12 Nov 1997 04:25:50 -0500

apache (1.2.4-2) unstable; urgency=low

  * Corrected potentially confusing reference to invalid logfile location
    in default httpd.conf (#12095).
  * Updated to Standards-Version 2.3.0.0.
  * No longer uses the --verbose option to mkdir, which apparently does
    not work on all systems (#12090).
  * Config files now relative to ServerRoot (#12189).
  * Configuration program now waits for newline asking questions (#12999,
    #12662).
  * Ensured htpasswd program is in /usr/bin (#12356).
  * Fixed erroneous chown to user "www" (#12656).
  * Closed #9354, as no more references to /home/www-data/webspace remain.
  * Tweaked packaging for better multiple-architecture support.
  
 -- Johnie Ingram <johnie@debian.org>  Sun, 14 Sep 1997 23:36:40 -0400

apache (1.3a1-3) unstable; urgency=low

  * Corrected potentially confusing reference to invalid logfile location
    in default httpd.conf (#12095).
  * Updated to Standards-Version 2.3.0.0.

 -- Johnie Ingram <johnie@debian.org>  Sun, 14 Sep 1997 22:44:50 -0400

apache (1.2.4-1) unstable; urgency=low

  * New upstream version.
  
 -- Johnie Ingram <johnie@debian.org>  Sat, 23 Aug 1997 12:52:43 -0400

apache (1.2.3-1) unstable; urgency=low

  * New upstream version.

 -- Johnie Ingram <johnie@debian.org>  Wed, 20 Aug 1997 15:00:48 -0400

apache (1.2.1-8) unstable; urgency=low

  * Fixed name of httpd.conf config file in apache(8) man page.

 -- Johnie Ingram <johnie@debian.org>  Wed, 20 Aug 1997 12:03:59 -0400

apache (1.2.1-7) unstable; urgency=low

  * Added patches from Jordan Hrycaj which fix dynamic module loading.
  * Removed inadvertent architecture dependence in rules file (#12112).
  * Source code to suexec now included in package (#12081), and suexec now
    uses correct logfile path (#12040, #12081).
  * Configuration files made relative to ServerRoot (#10812).
  * Made mod_proxy, mod_rewrite, mod_auth_dbm and mod_auth_db dynamic.
  * Updated mod_perl to version 1.00.
  * Closed #11510, failure of 1.2 to run with untouched 1.1.3 config file.
  * Closed #11511 since something within apache does indeed check and warn
    when a MaxClient directive exceeds HARD_SERVER_LIMIT.
  * Added cgi-bin examples.
  
 -- Johnie Ingram <johnie@debian.org>  Tue, 19 Aug 1997 23:40:41 -0400

apache (1.3a1-2) experimental; urgency=low

  * Removed inadvertent architecture dependence in rules file (#12112).
  * Added patches from Jordan Hrycaj which fix dynamic module loading.

 -- Johnie Ingram <johnie@debian.org>  Tue, 19 Aug 1997 00:05:32 -0400

apache (1.2.1-6) unstable; urgency=low

  * Corrected mod_proxy data so it can be detected automatically.
  * Made apacheconfig load mod_expires by default, so it can be used in
    .htaccess.

 -- Johnie Ingram <johnie@debian.org>  Wed, 13 Aug 1997 13:34:15 -0400

apache (1.2.1-5.1) unstable; urgency=low

  * Fixed mod_dlopen.
  * Fixed variable mismatch total_modules/num_modules.
  * Updated *.info files and the module config.
  * Added load order feature to apacheconfig.
  * Added (temporary) support for mod_perl-1.00 for perl-5.004.

 -- Jordan Hrycaj <jordan@mjh.teddy-net.com>  Wed, 13 Aug 1997 19:27:02 -0200

apache (1.2.1-5) unstable; urgency=low

  * Fixed apacheconfig autodetection of the need for mod_expires.
  * Deleted optional module mod_msql, since with this support apache
    would require libmsql1 and libmsql1-dev to build, a violation of new
    Debian policy.
  * Apache executable and mod-perl libraries are now stripped (#11635).
  * Removed unnecessary Apache-SSL targets from Debian makefile.
  * Switched to pristine upstream tar archive.
  * Updated to Standards-Version: 2.2.0.0.

 -- Johnie Ingram <johnie@debian.org>  Mon, 11 Aug 1997 07:12:51 -0400

apache (1.3a1-1) experimental; urgency=low

  * New upstream version (pristine source).
  * Deleted optional module mod_msql, since with this support apache
    would require libmsql1 and libmsql1-dev to build.
  * Fixed apacheconfig autodetection of the need to activate mod_expires.
  * Apache executable and mod-perl libraries are now stripped (#11635).
  * Updated to Standards-Version: 2.2.0.0.

 -- Johnie Ingram <johnie@debian.org>  Mon, 11 Aug 1997 07:00:42 -0400

 apache (1.2.1-4) unstable; urgency=low

  * Config program no longer asks twice whether mod_dlopen should be
    activated (thanks to Alex Apke for catchy bug number, #11223).
  * Closed #10441, another manifestation of #10856, the lack of mod_proxy.
  * Added debian copyright stanza to copyright file (#8208).
  * Added check so Authoritative can never be misspelled again (#9767).
  * Enabled mod_auth_dbm again, linked with libgdbmg (#7516).
  * Closed #9081, since the new location of the CGI bin is now Policy.
  * DocumentRoot can now be a symlink (#9790).

 -- Johnie Ingram <johnie@debian.org>  Tue, 15 Jul 1997 00:07:07 -0400

apache (1.2.1-3) unstable; urgency=low

  * Added files ABOUT_APACHE and KEYS to package.
  * Restored mod_proxy, by popular demand (#10856).

 -- Johnie Ingram <johnie@debian.org>  Sun, 13 Jul 1997 01:16:38 -0400

apache (1.2.1-2) unstable; urgency=low

  * Fixed spelling of Anonymous_Authoritative in the mod_auth_anon
    and mod_auth_msql data file, since Apache itself now uses the correct
    spelling.
  * Corrected more references to /home/www-data/webspace to /var/www in
    intro.html (#8649, #9354).
  * Closed #7290, since this is a bug in bash 2.0 that is fixed in 2.01.
  * Closed #9818, the failure to install if /usr/lib/httpd/cgi-bin/
    exists but is empty.
  * Closed #7159, the incompatibility of apacheconfig with bash-2.0,
    since apacheconfig has been perl since 1.1.3-3.
  * Closed #7478, the confusion of apacheconfig, fixed in 1.1.3-6.
  * Closed #8945 and #9905, other manifestations of #10714 (fixed in
    1.2.1-1).
  * Closed #10603, which was fixed by the patch from Christoph Martin.

 -- Johnie Ingram <johnie@debian.org>  Sat, 12 Jul 1997 15:34:39 -0400

apache (1.2.1-1) unstable; urgency=low

  * New upstream version.
  * Added patch from Christoph Martin so /etc/cron.daily/apache can handle
    relative logfile paths (#10670).
  * Ensured that scripts trap 1 instead of SIGHUP, which breaks ash
    (#10714).
  * Corrected apacheconfig lookups of user www to www-data (#10669).
  * Vastly simplified the process used to build mod_perl, since
    dpkg-source can indeed create new subdirectories.
  * Updated to debian-policy 2.1.3.3.

 -- Johnie Ingram <johnie@debian.org>  Fri, 11 Jul 1997 05:38:21 -0400

apache (1.2.0-1) experimental; urgency=low

  * New upstream version.

 -- Johnie Ingram <johnie@debian.org>  Sat,  7 Jun 1997 12:12:46 -0400

apache (1.2b11-2) experimental; urgency=low

  * Added mod_perl, by popular demand.

 -- Johnie Ingram <johnie@debian.org>  Wed,  4 Jun 1997 01:29:01 -0400

apache (1.2b11-1) experimental; urgency=low

  * New upstream version.
  * Added www.apacheweek.com to resources in intro.html (Peter Kleinmann).
  * Fixed default location of conffile for apache_monitor (Bug #9787).

 -- Johnie Ingram <johnie@debian.org>  Mon,  2 Jun 1997 22:20:42 -0400

apache (1.2b10-1) experimental; urgency=low

  * New upstream version.
  * Updated to debian-policy 2.1.3.2, linked against libc6.
  * No longer uses debmake for package build.
  * Install no longer fails if /usr/lib/httpd/cgi-bin exists, but is
    empty (Bug #9818).
  * Debian changes modified so they do not conflict with Apache-SSL.
  * Modules mod_auth_db and mod_auth_dbm now included modules (Bug
    #7516).
  * Fixed Bugs #7190, #7478, #7543, #8030, #7927, #8208, #6619, and #7544.

 -- Johnie Ingram <johnie@debian.org>  Wed, 21 May 1997 23:14:20 -0400

apache (1.1.3-6) frozen unstable; urgency=low

  * Config program no longer confused by ServerName directives inside
    VirtualHost sections (Bugs #7190, #7478).
  * Compiled apache_monitor with -DDEBIAN, which fixes the default
    location of the config file (Bug #7543), and corrected typo in its
    manpage.
  * Reduced webmaster address strangeness (Bug #7928).
  * Fixed typo in apacheconfig discovered by Tony Finch (Bug #8359).
  * Config program always asks before restarting apache, and can now
    detect when the restart fails (Bug #7927).
  * Registered htpasswd with suidregister, making it easier for the
    administrator to make it suid (request #8030).  The default
    permissions and umask have not changed, however.
  * Corrected mispositioned set -e in apache-dev preinst script, and added
    set -e to preinst and postinst scripts (Bug #8208).
  * Added dependency on checkroot to binary-arch rules target, and added
    removal of substvars and files files to clean target (Bug #8208).
  * Added language to the apache manpage to make it clear that the Debian
    apache has FSSTND file location defaults (Bug #6619).
  * Changed control file so dependencies are no longer hardcoded,
    a quirk pointed out by Dermot Bradley.
  * Removed deep debmake magic from install scripts, to facilitate porting
    to non-debmake environments.
  * Corrected name of program in apache_monitor.8 manpage (Bug #7544).
  * Closed Bug #5601, since the need to use nph- filename to disable
    buffering of CGI program output is not a bug, but a feature.
  * Closed Bug #7132, which was fixed by the new apacheconfig in 1.1.3-3.
  * Closed Bug #7277, since undocumented.7.gz is now correct.
  * Closed Bug #7302, the mod_info bug incorrectly listed as 7017 below.
  * Closed Bug #7740 (posted against apache 3.0) (!), which was another
    manifestation of the bug located by Manoj Srivastava (Bug #6524)
    and fixed in 1.1.2-1.
  * Closed Bug #7744, since the apache 1.1.1-5 file permissions bug has
    long been fixed.
  * Package now includes file checksums (debmake 3.2.4).
  * Updated to Standards-Version 2.1.3.0.

 -- Johnie Ingram <johnie@debian.org>  Mon, 7 Apr 1997 14:19:04 -0400

apache (1.1.3-5) unstable; urgency=low

  * Restored -DSTATUS to Makefile.modules for mod_info (Bug #7017).
  * Fixed Bug #7297, where apacheconfig doesn't restart apache because the
    init.d script inadvertently kills itself.
  * Changed recommended DocumentRoot to /var/www (Bug #7318).
  * Removed empty /usr/doc/apache/modules directory.
  * Fixed some links from undocumented.7.gz to undocumented.7.
  * Config program now understands numerical IDs better, a deficiency
    pointed out by Dermot Bradley (bradley@mourne.gpl.net).  It isn't
    perfect, though, because chown doesn't understand, e.g., "-1".
  * Now validates installation scripts during package build using bash
    2.0.

 -- Johnie Ingram <johnie@debian.org>  Mon, 17 Feb 1997 23:03:13 -0500

apache (1.2b6-3) experimental; urgency=low

  * Added missing new-installation homepage file intro.html.
  * Fixed Bug #7297, where apacheconfig doesn't restart apache because the
    init.d script inadvertently kills itself.
  * Changed recommended DocumentRoot to /var/www (Bug #7318).
  * Fixed some links from undocumented.7.gz to undocumented.7.
  * Config program now understands numerical IDs better, a deficiency
    pointed out by Dermot Bradley (bradley@mourne.gpl.net).

 -- Johnie Ingram <johnie@debian.org>  Mon, 17 Feb 1997 22:08:30 -0500

apache (1.2b6-2) experimental; urgency=low

  * Synchronized with 1.1.3-4 (Webstandard 3.0, apacheconfig, the works).

 -- Johnie Ingram <johnie@debian.org>  Mon, 10 Feb 1997 13:25:30 -0500

apache (1.1.3-4) stable unstable; urgency=medium

  * Webstandard 3.0 savvy.
  * The /usr/lib/httpd directory is no more.
  * Moved icon directory to /usr/doc/apache/icons, cgi-bin directory to
    /usr/lib/cgi-bin, and created Alias /doc for /usr/doc, for compliance
    with Webstandard 3.0 at long last (Bug #6942); added checks and
    automagic config conversion code.
  * Closed bug #3470, since compliance with the webstandard means apache
    can coexist with the other web servers.
  * Added fallback to smail "mkaliases" command (Bug), and removed stop of
    apache before upgrade, by suggestion of Joey Hess (joey@kite.ml.org).
  * Added --force, --force-modules, --serveradmin, --serverroot,
    --servername, --port, and --update options (back) to apacheconfig.
  * Closed bug #4817, as CGI scripts are now required to be in /usr.
  * Source package can actually be unpacked with dpkg-source -x.
  * Updated default homepage, and fixed filename used for installation.
  * Minor tweaks to text formatting in apacheconfig and init.d scripts.
  * Removed apachemodname and install-apachemod programs, these having
    been superceded by new apacheconfig.
  * Closed Bug #7107, since the package now uses world-readable
    permissions on the icons (and does not use /usr/lib/httpd anyway).
  * Added dependency on perl.
  * Removed obsolete modules-descr and modules-doc targes from
    Makefile.modules.
  * Module mod_auth now loaded by default, because its necessity cannot
    always be determined from the standard ocnfig files.
  * Did I mention it was Webstandard 3.0 savvy?

 -- Johnie Ingram <johnie@debian.org>  Mon, 10 Feb 1997 02:48:53 -0500

apache (1.1.3-3) unstable; urgency=low

  * Config program, rewritten in perl, now does an exhaustive check to
    decide which modules are needed, taking all provided mime types,
    handlers, and directives into account (Bug #4601).
  * Config program now supports both Apache 1.1 and 1.2, automatically
    detecting whether LoadModule or AddModule commands should be used.
  * Installation script no longer asks to make unnecessary changes (Bug
    #6945), and the configuration can be skipped if the files look good.
  * Default homepage is not installed if index.cgi already exists there
    (Bug #6973).
  * Config program now prefers the config_log_module over the
    common_log_module, knows the difference between the two (Bug #4683),
    and ignores commented-out directives (Bug #6780).
  * Corrected logfile pathname for the log modules from Apache to
    Debian default (Bug #6800).
  * First tentative step toward Webstandard 3.0: /usr/lib/cgi-bin
    included.
  * Diff no longer contains extraneous temporary directories (Bug #6803).
  * Source package updated to use debmake 3.0.11 flat directory structure.
  * Corrected spelling of "unprivileged" in configuration question.
  * Closed Bug #7031 (posted against 1.1.1-5), since the reference to
    /var/web/webspace has long been removed from the new-install homepage. 
  * Ran e2fsck -c on stupid /var partition, eliminating garbage from
    created diff files (Bug #6561).
  * Simplified /etc/init.d/apache script, and suppressed spurious error
    message from kill.
  * Config file backups are now rotated, so apacheconfig can be run
    multiple times without potential loss of data.
  * Closed Bug #7094 (posted against apache 3.1-8) (!), which was another
    manifestation of the bug located by Manoj Srivastava (#6524)
    and fixed in 1.1.2-1.
  * Closed Bug #7095, since the package can now repair broken 1.1.1-5
    permissions on the (obsolecent) /usr/lib/httpd directory.

 -- Johnie Ingram <johnie@debian.org>  Tue, 4 Feb 1997 11:55:55 -0500

apache (1.2b6-1) experimental; urgency=low

  * Experimental release of Apache beta, sans autoconfig scripts.
    ("LoadModule" lines should be replaced with "ClearModuleList,
    AddModule...").

 -- Johnie Ingram <johnie@debian.org>  Thu, 30 Jan 1997 00:20:23 -0500

apache (1.1.3-2) unstable; urgency=low

  * Cron script now recognizes indented logfile directives (Bug #6784).
  * Fixed a problem with recognizing and correcting some PidFile
    directives which was reported by Jeff Noxon (jeff@planetfall.com).

 -- Johnie Ingram <johnie@debian.org>  Tue, 28 Jan 1997 12:36:22 -0500

apache (1.1.3-1) unstable; urgency=low

  * New upstream version which fixes the new bugs introduced by
    security release 1.1.2 (sigh).
  * Added SuppressHTMLPreamble option to mod_dir IndexOptions with
    patch by Roy T. Fielding.
  * Hacked mod_info so it correctly shows current configuration from
    config files with absolute pathnames.
  * Modified mod_dir to recognize PHP/FI and server-parsed documents as
    HTML code (so it can extract the title from these as a description),
    and to increase the maximum size of the generated description.
  * Added SuppressHTMLPreamble and ScanHTMLTitles to IndexOptions in
    example srm.conf.
  * Added module mod_rewrite.
  * Package now suggests installing the (new) apache-modules package.

 -- Johnie Ingram <johnie@debian.org>  Sun, 19 Jan 1997 22:00:22 -0500

apache (1.1.2-1) unstable; urgency=high

  * New upstream version which fixes security holes in mod_cookies and
    mod_dir (APACHE_MOD.advisory.1.13.97, Bug #6576).
  * Post-installation script can now find and install the sample
    access.conf and srm.conf files (Bug #6522).
  * Corrected Document Root in example access.conf (Bug #6523), startup
    script, and initial homepage, which removes the last vestiges of the
    "silly," (Bug #2802), "abominable" (Bug #3470) /var/web directory.
  * Fixed a typo in apacheconfig located by Manoj Srivastava (Bug #6524),
    which also fixes detection of the existing webmaster alias (Bug #5693)
    and eliminates the need to type Control-D during install (Bug #4724).
  * Post-installation script now asks for a "publiziced" name instead of
    an alternate name (Bug #3470).
  * Webmaster address default is now guessed from /etc/mailname instead
    of the local hostname (Bug #3470).
  * File listing in apache.8 corrected to reflect current practice.
  * Debian/GNU product token added to SERVER_VERSION.
  * Bug #5062 closed, since any further stripping of the modules would
    make them unloadable by apache.

 -- Johnie Ingram <johnie@debian.org>  Tue, 14 Jan 1997 17:39:26 -0500

apache (1.1.1-9) unstable; urgency=low

  * Daily cron script no longer inadvertently HUPs itself (Bug #6509).
  * Officially closes Bugs #4694, #5234, #5842, #5843, and #6509.
  * Moved apache-dev from "devel" to new section, "web".

 -- Johnie Ingram <johnie@debian.org>  Sun, 12 Jan 1997 22:41:22 -0500

apache (1.1.1-8) unstable; urgency=low

  * Fixed errant "set -x" in cron.daily script.

 -- Johnie Ingram <johnie@debian.org>  Wed, 8 Jan 1997 02:12:34 -0500

apache (1.1.1-7) unstable; urgency=high

  * New maintainer.
  * Updated to Standards-Version 2.1.2.2 with debmake 2.53.
  * Fixed bad permissions on apache files and directores under /usr/lib;
    everything now world-readable (Bug #5234).
  * Document root changed to /home/www-data/webspace in default srm.conf
    (Bug #4694)
  * Symbols stripped from /usr/sbin/unescape (Bug #5062).
  * Source code and Debian scripts changed to use /var/run/apache.pid
    throughout (Bug #5842, FSSTND 5.10).
  * Cron script changed to automatically determine which logs need
    to be rotated (Bug #5843), and can now handle virtual webserver
    logs.
  * Sequence code changed so Apache starts up after the automounter and
    any database daemons.
  * Compiled with -DSTATUS for more complete reports from from
    info_module.
  * Default savelog time extended to one month.
  * Startup script changed to comply with proposed Standard for Console
    Messages.
  * Moved from "net" to new section "web".
  * Source code changelog now included in documentation.
  * Headers, source code, and API documentation now in separate package.
  * Minor changes to text formatting in apacheconfig and post-install
    script.

 -- Johnie Ingram <johnie@debian.org>  Tue, 7 Jan 1997 17:25:45 -0500

apache (1.1.1-6) unstable; urgency=low

  * This space intentionally left blank.

 -- Johnie Ingram <johnie@debian.org>  Wed, 1 Jan 1997 09:07:08 -0500

apache (1.1.1-5) unstable; urgency=LOW

  * Changed Configure, mod_dl.c and mod_dld.c to arrange for storing the
    names of dynamically loaded modules. Then changed mod_info.c so that
    it uses the names correctly instead of making a SIGSEGV.
  * The default document root is really found by first looking for an
      existent www-data passwd entry (it will anyway default to
      /home/www-data/webspace, but previously only the server was looking
      for ~www-data).
  * Corrected typos in the default homepage, home.html, changed default
      locations to reflect changes made in 1.1.1-4, and added some
      documentation in this page.
  * Corrected typos in my manual pages.
  * Added the install-apachemod(8) script to let other packages install or
      remove dynamically loadable modules by just calling this script,
      without having to know how things are done.
  * New modules are added at the end of the LoadModule block rather than
      at the beginning, just after the magic.
  * The apacheconfig(8) script now looks in .htaccess files under the
      directories listed in access.srm to determine the authentication
      modules that are needed.
  * Corrected the compilation of the db and msql authentication modules so
      that the .so files include the necessary libraries dependencies.
  * Removed the gdbm1 dependency from Apache because the dependency is
      only useful when loading the dbm authentication module. Added
      Suggests: entry for all libraries that modules may need.

 -- Yves Arrouye <Yves.Arrouye@marin.fdn.fr>  Mon, 30 Sep 1996 00:44:34 +0200

apache (1.1.1-4) unstable; urgency=LOW

  * Fixed the getting of some paths in the config files.
  * Changed permissions to use root.www-data.
  * Corrected bug in mod_mime.c that made Content-type and
      Content-encoding be the same. I hope I didn't introduce other
      bugs...
  * Put the package back in net.
  * Built-in document root is /home/www-data/webspace. This is ugly
      but consistent with the wu-ftpd package, and should be overriden
      by the installer anyway.
  * None of the /etc/apache/*.conf files are listed in conffiles as
      apacheconfig(8) or the postinst may edit them.
  * Added option --serverroot to apacheconfig(8) and commented out the
      default ServerRoot in httpd.conf-dist so that apacheconfig(8)
      will ask for the value to use.
  * No CGI scripts are found in this package.
  
 -- Yves Arrouye <Yves.Arrouye@marin.fdn.fr>  Tue, 24 Sep 1996 11:34:53 +0200

apache (1.1.1-3) non-free; urgency=LOW

  * Fixed mod_info.c: SIGSEGV bug (reported by Joey Hess
      <joey@kite.preferred.com>) and bad construction of configuration
      files paths. Note that the SIGSEGV bug comes from the fact that
      dynamically loaded modules do not have a name registered in the
      modules_names table, which means the information page will list
      modules as dyn_module_1, dyn_module_2, etc. instead of giving their
      exact names. (The problem has been reported to the Apache group.)
  * Put conffiles back in the package (omitted accidentally when moving
      to the new package format).

 -- Yves Arrouye <Yves.Arrouye@marin.fdn.fr>  Mon, 16 Sep 1996 11:32:05 +0200

apache (1.1.1-2) non-free; urgency=LOW

  * Switched to new source format.
  * Removed contributed CGI scripts from the package.
  * Wrote manual pages for utilities included from the support directory.
  * Moved the package to the non-free section.

 -- Yves Arrouye <arrouye@marin.sevy.fr>  Mon, 9 Sep 1996 11:09:33 +0200

apache (1.1.1-1) unstable; urgency=LOW

 * New release by Yves Arrouye <Yves.Arrouye@debian.org>.
 * Moved some stuff again: things that were named apache-httpd are just
     named apache.
 * Made /var/run/apache and put things there.
 * Created /var/spool/apache for proxy caching.
 * Wrote mod_dl.c and created /usr/lib/apache filled with modules.
 * Many many changes to the package configuration system, including
     an apcheconfig script that determines which modules to load at
     startup.
 * Fixed bugs reported against previous packages.

 -- Yves Arrouye <arrouye@marin.sevy.fr>  Sat, 24 Aug 1996 11:22:56 +0200
  
Local Variables:
mode: debian-changelog
add-log-mailing-address: "johnie@debian.org"
End: