Processed: [bts-link] source package apache2

2007-06-08 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> #
> # bts-link upstream status pull for source package apache2
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #414855
> #  * http://issues.apache.org/bugzilla/show_bug.cgi?id=37911
> #  * remote status changed: RESOLVED -> REOPENED
> #  * remote resolution changed: FIXED -> (?)
> #  * reopen upstream
> tags 414855 - fixed-upstream
Bug#414855: wildcard cert not working in apache 2.2
Tags were: fixed-upstream patch
Tags removed: fixed-upstream

> usertags 414855 - status-RESOLVED resolution-FIXED
Bug#414855: wildcard cert not working in apache 2.2
Usertags were: resolution-FIXED status-RESOLVED.
Usertags are now: .
> usertags 414855 + status-REOPENED
Bug#414855: wildcard cert not working in apache 2.2
There were no usertags set.
Usertags are now: status-REOPENED.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 423653

2007-06-09 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> tags 423653 pending
Bug#423653: apache2.2-common: mod_disk_cache fills /var after etch upgrade
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: [bts-link] source package apache2

2007-06-09 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> #
> # bts-link upstream status pull for source package apache2
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #414855
> #  * http://issues.apache.org/bugzilla/show_bug.cgi?id=37911
> #  * remote status changed: REOPENED -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 414855 + fixed-upstream
Bug#414855: wildcard cert not working in apache 2.2
Tags were: patch
Tags added: fixed-upstream

> usertags 414855 - status-REOPENED
Bug#414855: wildcard cert not working in apache 2.2
Usertags were: status-REOPENED.
Usertags are now: .
> usertags 414855 + status-RESOLVED resolution-FIXED
Bug#414855: wildcard cert not working in apache 2.2
There were no usertags set.
Usertags are now: resolution-FIXED status-RESOLVED.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#396162: marked as done (/etc/init.d/apache2 still has wrong logic in PID detection)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#396162: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.2.3-2
Severity: important
Tags: patch

In /etc/init.d/apache2 (my comments are after # sign):

pidof_apache() {
...
# This loop returns from procedure with first PID it encounters in 
# existing .pid file no matter PidFile is from the right source or not.
# So what if the .pid file is stalled and PidFile source is wrong?
for PFILE in `grep ^PidFile /etc/apache2/* -r | awk '{print $2}'`; do
if [ -e $PFILE ]; then
cat $PFILE
return 0
fi
done
...
for i in $PIDS; do
# $PID is always empty string, it was never used before. This matter 
with
# useless REALPID initialization make impression that the file was 
published
# in the middle of development process ;)
if [ "$i" = "$PID" ]; then

My patch fixes these issues trying to follow the orginal thought. Though 
again, it is not the most proper (but rather fastest) way to do the thing. ;)

--- apache2.orig	2006-10-08 12:38:25.0 +0800
+++ apache2	2006-10-30 11:53:50.0 +0700
@@ -36,29 +36,32 @@ pidof_apache() {
 # classified as good/unknown feature
 PIDS=`pidof apache2` || true
 
-PID=""
-
 # let's try to find the pid file
-# apache2 allows more than PidFile entry in the config but only
-# the last found in the config is used
+# apache2 allows more than PidFile entry
+# most simple way is to check all of them
+
+PIDS2=""
+
 for PFILE in `grep ^PidFile /etc/apache2/* -r | awk '{print $2}'`; do
-	if [ -e $PFILE ]; then
-cat $PFILE
-return 0
-	fi
+	[ -e $PFILE ] && PIDS2="$PIDS2 `cat $PFILE`"
 done
-REALPID=0
+
 # if there is a pid we need to verify that belongs to apache2
 # for real
 for i in $PIDS; do
-if [ "$i" = "$PID" ]; then
+	# may be it is not the right way to make second dimension
+	# for really huge setups with hundreds of apache processes
+	# and tons of garbage in /etc/apache2... or is it?
+	for j in $PIDS2; do
+	if [ "$i" = "$j" ]; then
 	# in this case the pid stored in the
 	# pidfile matches one of the pidof apache
 	# so a simple kill will make it
-echo $PID
+	echo $i
 return 0
 fi
 done
+done
 return 1
 }
 
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please 

Bug#419552: marked as done (Documentation: README.Debian is needed)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#419552: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: wishlist

It was not easy for me to find

apache2ctl(man: yes, script)
httxt2dbm (man: no,  binary)
a2dismod  (man: yes, script)
a2ensite  (man: no,  script)
a2enmod   (man: yes, script)
a2dissite (man: no,  script)

Some commands do not have manpages.  

apache2-doc package was too big for me to find pointer to these.

So I suggest to include README.Debian with few lines such as:

---
Use a2ensite/a2dissite for site management
Use a2enmod/a2dismod for module management
Read these scripts in /usr/sbin for details
--

That makes new commer easy timeto start their life :-)

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-4utility programs for webservers
ii  libmagic1 4.20-4 File type determination library us
ii  lsb-base  3.1-23.1   Linux Standard Base 3.1 init scrip
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit
ii  procps1:3.2.7-3  /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threa

Bug#428058: marked as done (apache2.2-common: a2enmod's cgi/cgid cleverness does not work with apache2-mpm-itk)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#428058: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: normal

The logic that a2enmod uses to decide whether to replace 'cgi' with
'cgid' is not sufficient to handle cases where the MPM in use is
prefork-based, but is not actually named prefork.c.

With the ITK MPM, 'apache2 -l' outputs 'itk.c'.

Ok, so a2enmod can't be expected to recognise the name of every
alternative MPM in use; but it should at least print something out to
stderr like this:

  You do not appear to be using the preform MPM. Replacing mod_cgi with
  mod_cgid.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (540, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages apache2.2-common depends on:
ii  apache2-utils2.2.3-4 utility programs for webservers
ii  libmagic14.17-5etch1 File type determination library us
ii  lsb-base 3.1-23.1Linux Standard Base 3.1 init scrip
ii  mime-support 3.39-1  MIME files 'mime.types' & 'mailcap
ii  net-tools1.60-17 The NET-3 networking toolkit
ii  procps   1:3.2.7-3   /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 

Bug#423436: marked as done (unsuitable file-permission/-ownership for DAV-lockfile)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#420101: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-4

Hi there,

I've stumbled upon a problem when activating Apache's DAV-module which
is availabe with the apache2-base-package.

After enabling the dav-module using "a2enmod dav" and setting up a usual
DAV-directory everything seemed to work fine.
Files could be viewed and downloaded from the DAV-directory.
However, write-access wasn't possible. (Strange error messages came up
when trying to upload a file.)

I found out that the module-configuration ("dav_fs.conf") located in
/etc/apache2/mods-enabled had the following entry:

 DAVLockDB /var/lock/apache2/DAVLock

That "DAVLock"-file in /var/lock/apache2 was owned exclusively by
"root:root".

 -rw-r--r-- 1 root root 12288 2007-05-10 15:02 DAVLock

Since the Apache2-server is run by "www-data" a more suitable ownership
and/or different file access permission should be applied.

Changing the above to

 -rw-rw-r-- 1 root www-data 12288 2007-05-10 15:02 DAVLock

worked just fine.

I'm using Debian 4.0 (Etch); Kernel 2.6.18-4-686.

Thanks a lot and keep on maintaining such a wonderful system like Debian!

Achim

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
4073

Bug#312385: marked as done (apache2-common: suexec fails to open log file after a cgi error)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#312385: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.0.54-4
Severity: normal
Tags: patch


This bug was already reported for apache1 (and is fixed with the patch
018 in the debian source of apache) at
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=153528 ("suEXEC can't
reopen error log when exec() fails").

The same problem occurs with apache2, but the patch can easily be
ported/applied from apache1 (attached).

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.9-ck3
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apache2-common depends on:
ii  apache2-utils   2.0.54-4 utility programs for webservers
ii  debconf 1.4.50   Debian configuration management sy
ii  debianutils 2.13.2   Miscellaneous utilities specific t
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-18Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.8-3 XML parsing C library - runtime li
ii  libgcc1 1:3.4.3-13   GCC support library
ii  libmagic1   4.12-1   File type determination library us
ii  mime-support3.34-1   MIME files 'mime.types' & 'mailcap
ii  net-tools   1.60-13  The NET-3 networking toolkit
ii  openssl 0.9.7g-1 Secure Socket Layer (SSL) binary a
ii  ssl-cert1.0-11   Simple debconf wrapper for openssl

-- no debconf information
--- build-tree/apache2/support/suexec.c.orig2005-06-07 21:43:27.193421580 +0200
+++ build-tree/apache2/support/suexec.c 2005-06-07 21:48:50.471585901 +0200
@@ -42,6 +42,8 @@
 #if APR_HAVE_UNISTD_H
 #include 
 #endif
+/* for fcntl(fileno(log), F_SETFD, FD_CLOEXEC); */
+#include 
 
 #include 
 #include 
@@ -156,6 +158,8 @@
 perror("fopen");
 exit(1);
 }
+		/* Set the close-on-exec flag -- Liyang HU <[EMAIL PROTECTED]> */
+		fcntl(fileno(log), F_SETFD, FD_CLOEXEC);
 }
 
 time(&timevar);
@@ -578,20 +582,6 @@
 umask(AP_SUEXEC_UMASK);
 #endif /* AP_SUEXEC_UMASK */
 
-/* 
- * Be sure to close the log file so the CGI can't
- * mess with it.  If the exec fails, it will be reopened 
- * automatically when log_err is called.  Note that the log
- * might not actually be open if AP_LOG_EXEC isn't defined.
- * However, the "log" cell isn't ifdef'd so let's be defensive
- * and assume someone might have done something with it
- * outside an ifdef'd AP_LOG_EXEC block.
- */
-if (log != NULL) {
-fclose(log);
-log = NULL;
-}
-
 /*
  * Execute the command, replacing our image with its own.
  */
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_al

Bug#390348: marked as done (apache2-common: help message in init script)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#390348: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.2.3-1~exp.r170
Severity: minor
Tags: experimental patch

Hello,

IMHO the init script output doesn't reflect Policy §9.4 [1], at least
on a terminal:
=
[EMAIL PROTECTED]:~$ sudo invoke-rc.d apache2 start
Starting web server (apache2)
[EMAIL PROTECTED]:~$
=

The attached patch uses log_daemon_msg instead of log_begin_msg.

Thx, bye,
Gismo / Luca

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages apache2-common depends on:
ii  apache2-utils   2.2.3-1~exp.r170 utility programs for webservers
ii  libmagic1   4.17-4   File type determination library us
ii  lsb-base3.1-17   Linux Standard Base 3.1 init scrip
ii  mime-support3.37-1   MIME files 'mime.types' & 'mailcap
ii  net-tools   1.60-17  The NET-3 networking toolkit

apache2-common recommends no packages.

-- no debconf information

Footnotes: 
[1] http://www.debian.org/doc/debian-policy/ch-opersys.html#s9.4



apache2_log-daemon-msg_gismo-20060930.patch.gz
Description: use log_daemon_msg in the init script


pgpwKs7qQvIbf.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - devel

Bug#423653: marked as done (apache2.2-common: mod_disk_cache fills /var after etch upgrade)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#423653: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: critical
Justification: breaks unrelated software

After an upgrade to etch, mod_disk_cache started storing things in 
/var/cache/apache2/mod_disk_cache, without any apparently limit on size. 
This caused /var to fill up, which had bad effects on the entire system.

I am not sure if mod_disk_cache was enabled or not before the upgrade to 
etch (from sarge), but it was certainly not using disk space in the same 
way.

The problem appears to be related to having mod_proxy enabled at upgrade 
time, according to bug #407171
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407171)

It is not entirely clear to me from that bug description whether 
mod_disk_cache was previously enabled but in a different way, or if it 
is newly enabled by the upgrade.

mod_disk_cache appears to be experimental 
(http://httpd.apache.org/docs/2.0/mod/mod_disk_cache.html), and also the 
"garbage collection" features that would be necesary to keep the disk 
cache to a fixed bound are not yet implemented. Disabling it seems not 
to have caused any problems, even for mod_proxy.

Someone else seems to have noticed this problem too:
http://tumbleweed.org.za/2007/05/04/sarge-etch-upgrade-and-apache2/



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (600, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages apache2.2-common depends on:
ii  apache2-utils2.2.3-4 utility programs for webservers
ii  libmagic14.17-5etch1 File type determination library us
ii  lsb-base 3.1-23.1Linux Standard Base 3.1 init scrip
ii  mime-support 3.39-1  MIME files 'mime.types' & 'mailcap
ii  net-tools1.60-17 The NET-3 networking toolkit
ii  procps   1:3.2.7-3   /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apa

Bug#416322: marked as done (apache2 returns a .bz2 file as plaintext)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#416322: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-3.3
Severity: wishlist
Tags: patch

When apache serves a .bz2 it uses text/plain as the MIME type, causing 
it to be rendered by the browser. The following patch treats bz2 files 
similar to .gz's.

-8<
--- apache2.conf.old2007-03-26 17:37:58.0 -0400
+++ apache2.conf2007-03-26 17:38:37.0 -0400
@@ -356,6 +356,7 @@
 #
 AddType application/x-compress .Z
 AddType application/x-gzip .gz .tgz
+AddType application/x-bzip2 .bz2
 
 #
 # DefaultLanguage and AddLanguage allows you to specify the language of 
--->8--


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.2.3-3.3  Traditional model for Apache HTTPD

apache2 recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307 412407 412580 412602 413727 416322 418464 419552 420101 422589 423653 
428058
Changes: 
 apache2 (2.2.3-5) unstab

Bug#412580: marked as done (Apache reporting incorrect header values for error 500 documents)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#412580: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3.3
Severity: important

The version of Apache which ships with Etch sends back the document
specified in the ErrorDocument directive with a Content-length header of
0 and a Content-type header with a value other than text/html, which
causes the browser to either display an empty document or offer to
download the (empty) document to the file system on the client machine.
 Apache on earlier versions of Debian did not exhibit this behavior,
though I'm not sure when it was introduced (hadn't used Debian for a
while, and I'm in the process of building a new Debian server).

This bug prevents the server from informing the user what went wrong and
whom to contact when a script fails unexpectedly.

This is probably related to Apache bug 39710
(http://issues.apache.org/bugzilla/show_bug.cgi?id=39710).

To reproduce:

1. Install the following script as barf.py in the /cgi-bin directory:

#!/usr/bin/python
raise Exception("barfing")

2. Make sure the ErrorDocument 500 directive points to a real document.

3. Invoke the URL for the script:

$ curl -i http://localhost/cgi-bin/barf.py
HTTP/1.1 500 Internal Server Error
Date: Mon, 26 Feb 2007 21:16:17 GMT
Server: Apache/2.2.3 (Debian)
Content-Length: 0
Connection: close
Content-Type: text/x-python

On all my other servers, Content-length is non-zero and Content-type is
text/html.

-- 
Bob Kline
http://www.rksystems.com
mailto:[EMAIL PROTECTED]

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2

Bug#400981: marked as done (apache2: MPM-s described as for Apache 2.1)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#400981: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-3.1
Severity: minor

The short description of the MPM-s reads that they are "
for Apache HTTPD 2.1", which is outdated.
Please s/Apache HTTPD 2.1/Apache 2/

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307 412407 412580 412602 413727 416322 418464 419552 420101 422589 423653 
428058
Changes: 
 apache2 (2.2.3-5) unstable; urgency=low
 .
   [ Tollef Fog Heen ]
   * Fix up apache2-src so the .tar.gz contains an apache2 top level
 directory.
   * Make apache2 MPMs provide and conflict with apache2-mpm so other
 packages can provide MPMs too.
   * Get rid of 2.1 references from descriptions.  (Closes: #400981)
 .
   [ Thom May ]
   * Let the init script cope with multiple pid files correctly. Probably we
 shouldn't be doing this at all, but we might as well do it properly!
 (Closes: #396162)
   * Add a sensible autoindex default config
   * Add patch from upstream to ensure that mod_cgi 500 responses aren't
 truncated (Closes: #412580)
   * Use graceful-stop to shutdown apache to ensure we cope nicely with long
 running or blocked children
 .
   [ Peter Samuelson ]
   * Ship apache2 manpage in apache2.2-common.  (Closes: #391813)
   * Rearrange

Bug#403682: marked as done (apache2.2: FTBFS: /bin/sh: mawk: command not found)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#403682: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-3.2
Severity: serious
Justification: no longer builds from source

>From my build log:

| Automatic build of apache2_2.2.3-3.2 on shockley by sbuild/kfreebsd-amd64 85
| Build started at 20061218-1408
| **
| Checking available source versions...
| Fetching source files...
| Reading package lists...
| Building dependency tree...
| Need to get 6451kB of source archives.
| Get:1 http://debian.aurel32.net unstable/main apache2 2.2.3-3.2 (dsc) [1026B]
| Get:2 http://debian.aurel32.net unstable/main apache2 2.2.3-3.2 (tar) [6342kB]
| Get:3 http://debian.aurel32.net unstable/main apache2 2.2.3-3.2 (diff) [107kB]
| Fetched 6451kB in 0s (8053kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: debhelper (>= 4.1.16), dpatch, lsb-release, libaprutil1-dev, 
libapr1-dev (>= 1.2.7-6), openssl, libpcre3-dev, libtool
| Checking for already installed source dependencies...
| debhelper: missing
| Using default version 5.0.42
| dpatch: missing
| lsb-release: missing
| libaprutil1-dev: missing
| libapr1-dev: missing
| Using default version 1.2.7-7
| openssl: missing
| libpcre3-dev: missing
| libtool: missing
| Checking for source dependency conflicts...
|   /usr/bin/sudo /usr/bin/apt-get --purge $CHROOT_OPTIONS -q -y install 
debhelper dpatch lsb-release libaprutil1-dev libapr1-dev openssl libpcre3-dev 
libtool
| Reading package lists...
| Building dependency tree...
| The following extra packages will be installed:
|   autotools-dev comerr-dev file gettext gettext-base html2text intltool-debian
|   libapr1 libaprutil1 libdb4.4-dev libexpat1-dev libkadm55 libkrb5-dev
|   libkrb53 libldap2-dev libmagic1 libpcrecpp0 libpq-dev libpq4 libsqlite3-0
|   libsqlite3-dev libssl-dev mime-support po-debconf python python-minimal
|   python2.4 python2.4-minimal uuid-dev zlib1g-dev
| Suggested packages:
|   doc-base dh-make curl cvs gettext-doc db4.4-doc krb5-doc krb5-user
|   postgresql-doc-8.1 sqlite3-doc libtool-doc autoconf automaken g77
|   fortran77-compiler gcj ca-certificates python-doc python-tk python-profiler
|   python2.4-doc
| Recommended packages:
|   patchutils libltdl3-dev lsb libmail-sendmail-perl libcompress-zlib-perl
| The following NEW packages will be installed:
|   autotools-dev comerr-dev debhelper dpatch file gettext gettext-base
|   html2text intltool-debian libapr1 libapr1-dev libaprutil1 libaprutil1-dev
|   libdb4.4-dev libexpat1-dev libkadm55 libkrb5-dev libkrb53 libldap2-dev
|   libmagic1 libpcre3-dev libpcrecpp0 libpq-dev libpq4 libsqlite3-0
|   libsqlite3-dev libssl-dev libtool lsb-release mime-support openssl
|   po-debconf python python-minimal python2.4 python2.4-minimal uuid-dev
|   zlib1g-dev
| 0 upgraded, 38 newly installed, 0 to remove and 3 not upgraded.
| Need to get 655kB/16.3MB of archives.
| After unpacking 49.6MB of additional disk space will be used.
 
[snip]
 
|   done; \
|   for dir in /usr/include/apr-1.0 /usr/include/apr-1.0; do \
|   (ls $dir/ap[ru].h $dir/ap[ru]_*.h >> $tmp 2>/dev/null); \
|   done; \
|   sort -u $tmp > export_files; \
|   rm -f $tmp
| mawk -f /build/buildd/apache2-2.2.3/build/make_exports.awk `cat export_files` 
> exports.c
| /bin/sh: mawk: command not found
| make[3]: *** [exports.c] Error 127
| make[3]: Leaving directory 
`/build/buildd/apache2-2.2.3/debian/build-tree/worker/server'
| make[2]: *** [all-recursive] Error 1
| make[2]: Leaving directory 
`/build/buildd/apache2-2.2.3/debian/build-tree/worker/server'
| make[1]: *** [all-recursive] Error 1
| make[1]: Leaving directory 
`/build/buildd/apache2-2.2.3/debian/build-tree/worker'
| make: *** [mpm-worker] Error 2
| **
| Build finished at 20061218-1410
| FAILED [dpkg-buildpackage died]
| Purging chroot-unstable/build/buildd/apache2-2.2.3
| --

The build log is for kfreebsd-amd64, but the same happens in a pbuilder
on amd64. The build system is calling mawk, but either gawk or mawk can 
be installed on the system. It should either call awk, or the package 
should b

Bug#422589: marked as done (a2enmod not foolproof)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#422589: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4+b1
Tags: patch

finlandia!root(tty2):/var/tmp/work> a2enmod
Which module would you like to enable?
Your choices are: actions alias asis auth_basic auth_digest authn_alias 
authn_anon authn_dbd authn_dbm authn_default authn_file authnz_ldap authz_dbm 
authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache 
cern_meta cgi cgid charset_lite dav dav_fs dav_lock dbd deflate dir disk_cache 
dump_io env expires ext_filter file_cache filter headers ident imagemap include 
info ldap log_forensic mem_cache mime mime_magic negotiation proxy proxy_ajp 
proxy_balancer proxy_connect proxy_ftp proxy_http rewrite setenvif speling ssl 
status suexec unique_id userdir usertrack version vhost_alias
Module name?
/usr/sbin/a2enmod: line 21: [: =: unary operator expected
This module does not exist!
finlandia!root(tty2):/var/tmp/work>

This error does not need to exist and is caused by missing quotes,
patch below:

--- /usr/sbin/a2enmod   2007-04-15 16:42:24.0 +0200
+++ /tmp/work/a2enmod   2007-05-07 11:06:51.0 +0200
@@ -18,7 +18,7 @@ if [ -x /usr/sbin/apache2 ]; then
PREFORK=`/usr/sbin/apache2 -l | grep prefork || true`
 fi
 
-if [ $MODNAME = "cgi" ] && [ -z $PREFORK ]; then
+if [ "$MODNAME" = "cgi" ] && [ -z $PREFORK ]; then
MODNAME="cgid"
 fi
 

Regards,

Joey

-- 
There are lies, statistics and benchmarks.

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apach

Bug#401053: marked as done (apache2: force-reload doesn't take 'runlevels' into account)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#401053: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Severity: normal

Hi,

I disabled apache2 in all runlevels with sysv-rc-conf. Start and restart work 
fine, force-reload doesn't. And since php5 uses force-reload...

debian:~# invoke-rc.d apache2 start
debian:~# invoke-rc.d apache2 start
debian:~# invoke-rc.d apache2 restart
debian:~# invoke-rc.d apache2 force-reload
Forcing reload of web server (apache2)...apache2: Could not reliably determine 
the server's fully qualified domain name, using 127.0.1.1 for ServerName
httpd (no pid file) not running
apache2: Could not reliably determine the server's fully qualified domain name, 
using 127.0.1.1 for ServerName
.
debian:~# invoke-rc.d apache2 stop
Stopping web server (apache2)...apache2: Could not reliably determine the 
server's fully qualified domain name, using 127.0.1.1 for ServerName
.
debian:~# 

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307

Bug#391813: marked as done (apache2.2-common: man page for apache2 missing in apache2.2-common)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#391813: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Subject: man page for apache2 missing in apache2.2-common
Package: apache2.2-common
Version: 2.2.3-2
Severity: normal

*** Please type your report below this line ***

While apache2-common contained the apache2 man page, apache2.2-common
lacks that man page.

man pages for suexec2 and apache2ctl are in apache2.2-common though.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.33.2-1-dphys-k8-smp-64gb
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-2utility programs for webservers
ii  libmagic1 4.17-4 File type determination library us
ii  lsb-base  3.1-17 Linux Standard Base 3.1 init scrip
ii  mime-support  3.37-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307 412407 412580 412602 413727 416322 418

Bug#399043: marked as done (apache 2.2.3 building rules misses zlib development library)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#399043: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3

To build apache2, the zlib development library is needed but is missing
in the required rules.

dpkg-buildpackage will fail when this packages is missing because
configure can't find th library.

Suggested Fix: Add zlib as a build dependency.

kind regards

Torsten


smime.p7s
Description: S/MIME cryptographic signature
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307 412407 412580 412602 413727 416322 418464 419552 420101 422589 423653 
428058
Changes: 
 apache2 (2.2.3-5) unstable; urgency=low
 .
   [ Tollef Fog Heen ]
   * Fix up apache2-src so the .tar.gz contains an apache2 top level
 directory.
   * Make apache2 MPMs provide and conflict with apache2-mpm so other
 packages can provide MPMs too.
   * Get rid of 2.1 references from descriptions.  (Closes: #400981)
 .
   [ Thom May ]
   * Let the init script cope with multiple pid files correctly. Probably we
 shouldn't be doing this at all, but we might as well do it properly!
 (Closes: #396162)
   * Add a sensible autoindex default config
   * Add patch from upstream to ensure that mod_cgi 500 responses aren't
 truncated (Closes: #412580)
   * Use graceful-stop to shutdown apache to ensure we c

Bug#420101: marked as done (mod_dav fails to open the lock database because ownership of /var/lock/apache2 fails to set properly)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#420101: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2.2-common
Version: 2.2.3-4


With the modules dav and dav_fs enabled, trying to write a file to a webdav 
resource fails with this error:

[Fri Apr 20 11:15:40 2007] [notice] Apache/2.2.3 (Debian) DAV/2 configured -- 
resuming normal operations
[Fri Apr 20 11:16:30 2007] [error] [client 192.168.12.1] The locks could not be queried 
for verification against a possible "If:" header.  [500, #0]
[Fri Apr 20 11:16:30 2007] [error] [client 192.168.12.1] Could not open the 
lock database.  [500, #400]
[Fri Apr 20 11:16:30 2007] [error] [client 192.168.12.1] (13)Permission denied: 
Could not open property database.  [500, #1]



It fails because, after installing the apache2.2-common package, the ownership 
of the /var/lock/apache2/ directory is:

drwxr-xr-x 2 root root 4096 Apr 20 11:54 /var/lock/apache2/

whereas, according to its postinst script, the ownership should be:

drwxr-xr-x 2 www-data root 4096 Apr 20 11:54 /var/lock/apache2/


Inside postinst, we see this:

# Make sure /var/lock/apache2 has the correct permissions
if [ -d /var/lock/apache2 ]; then
chown www-data /var/lock/apache2
fi

but I'm not sure why it doesn't execute properly at installation time.


Suggested workarounds:

(1) run "chown www-data /var/lock/apache2" manually. Or,

(2) run "dpkg-reconfigure apache2.2-common", which sets the ownership properly.


apache2.2-common depends on:

apache2-utils, net-tools, libmagic1, mime-support, lsb-base, procps


I'm using:

Linux debian 2.6.18-4-486 #1 Mon Mar 26 16:39:10 UTC 2007 i686 GNU/Linux

and:

libc-2.3.6.so


--
Darren Paul Griffith, IT Systems Administrator
www.exoweb.net, +86 135 2262 5129

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-m

Bug#322385: marked as done (Missing manpages)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#322385: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Severity: normal

The commands a2dissite, a2ensite ,update-apache2-modules and
apache2-ssl-certificate do not have manpages


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307 412407 412580 412602 413727 416322 418464 419552 420101 422589 423653 
428058
Changes: 
 apache2 (2.2.3-5) unstable; urgency=low
 .
   [ Tollef Fog Heen ]
   * Fix up apache2-src so the .tar.gz contains an apache2 top level
 directory.
   * Make apache2 MPMs provide and conflict with apache2-mpm so other
 packages can provide MPMs too.
   * Get rid of 2.1 references from descriptions.  (Closes: #400981)
 .
   [ Thom May ]
   * Let the init script cope with multiple pid files correctly. Probably we
 shouldn't be doing this at all, but we might as well do it properly!
 (Closes: #396162)
   * Add a sensible autoindex default config
   * Add patch from upstream to ensure that mod_cgi 500 responses aren't
 truncated (Closes: #412580)
   * Use graceful-stop to shutdown apache to ensure we cope nicely with long
 running or blocked children
 .
   [

Bug#412407: marked as done (apache2.2-common: init script doesn't report error when being called with unknown parameter)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#412407: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: apache2.2-common
Version: 2.2.3-3.3
Severity: minor
Tags: patch

Hi *!

The apache2 init script should use log_failure_msg instead of
log_success_msg to report the usage. With its current usage of
log_success_msg, bad misinterpretions can happen:

[EMAIL PROTECTED]:~$ sudo /etc/init.d/apache2 status
Usage: /etc/init.d/apache2 {start|stop|restart|reload|force-reload}
[EMAIL PROTECTED]:~$ echo $?
0
[EMAIL PROTECTED]:~$ 



Regards, David

- -- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-vserver-686
Locale: LANG=C, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-3.3  utility programs for webservers
ii  libmagic1 4.19-1 File type determination library 
us
ii  lsb-base  3.1-23 Linux Standard Base 3.1 init 
scrip
ii  mime-support  3.39-1 MIME files 'mime.types' 
& 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit
ii  procps1:3.2.7-3  /proc file system utilities

apache2.2-common recommends no packages.

- -- no debconf information

- -- 
- - hallo... wie gehts heute?
- - *hust* gut *rotz* *keuch*
- - gott sei dank kommunizieren wir über ein septisches medium ;)
 -- Matthias Leeb, Uni f. angewandte Kunst, 2005-02-15
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFF4gF//Pp1N6Uzh0URAhVQAKCYuOv6HGF9SsUcu/CxiVnynEJlCACeMUA5
khtXWLzIRMSmjpdt7jCjCt8=
=N7VR
-END PGP SIGNATURE-

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2

Bug#341041: marked as done (apache2-common: no man page for a2ensite)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#322385: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.0.54-5
Severity: wishlist

I just noticed that there is no man page for a2ensite. Since a brief man 
page exists for a2enmod and a2dismod, it seems like consistency would 
dictate that similar pages exist for a2ensite and a2dissite.

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.8-11-amd64-generic
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages apache2-common depends on:
ii  apache2-utils 2.0.54-5   utility programs for webservers
ii  debconf   1.4.30.13  Debian configuration management sy
ii  debianutils   2.8.4  Miscellaneous utilities specific t
ii  libc6 2.3.2.ds1-22   GNU C Library: Shared libraries an
ii  libdb4.2  4.2.52-18  Berkeley v4.2 Database Libraries [
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
ii  libgcc1   1:3.4.3-13 GCC support library
ii  libmagic1 4.12-1 File type determination library us
ii  mime-support  3.28-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-10The NET-3 networking toolkit
ii  openssl   0.9.7e-3sarge1 Secure Socket Layer (SSL) binary a
ii  ssl-cert  1.0-11 Simple debconf wrapper for openssl

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apac

Bug#341043: marked as done (apache2-common: no man page for a2dissite)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#322385: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.0.54-5
Severity: wishlist


I just noticed that there is no man page for a2ensite. Since a brief man 
page exists for a2enmod and a2dismod, it seems like consistency would 
dictate that similar pages exist for a2ensite and a2dissite.

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.8-11-amd64-generic
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages apache2-common depends on:
ii  apache2-utils 2.0.54-5   utility programs for webservers
ii  debconf   1.4.30.13  Debian configuration management sy
ii  debianutils   2.8.4  Miscellaneous utilities specific t
ii  libc6 2.3.2.ds1-22   GNU C Library: Shared libraries an
ii  libdb4.2  4.2.52-18  Berkeley v4.2 Database Libraries [
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
ii  libgcc1   1:3.4.3-13 GCC support library
ii  libmagic1 4.12-1 File type determination library us
ii  mime-support  3.28-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-10The NET-3 networking toolkit
ii  openssl   0.9.7e-3sarge1 Secure Socket Layer (SSL) binary a
ii  ssl-cert  1.0-11 Simple debconf wrapper for openssl

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apac

Bug#397789: marked as done (apache2.2-common: /etc/apache2/ is still present after having purged the package)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#397789: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3
Severity: normal

Hello,

when purging apache2.2-common, its files and folders in /etc/apache2/
are not removed.  Here the situation on a Debian unstable (installed
under QEMU):
=
[EMAIL PROTECTED]:~$ ls -l /mnt/tmp/etc/apache2/*
-rw-r--r-- 1 root root0 2006-11-09 15:16 /mnt/tmp/etc/apache2/httpd.conf
-rw-r--r-- 1 root root   10 2006-11-09 15:16 /mnt/tmp/etc/apache2/ports.conf

/mnt/tmp/etc/apache2/conf.d:
total 1
-rw-r--r-- 1 root root 24 2006-11-09 15:16 charset

/mnt/tmp/etc/apache2/mods-enabled:
total 0
lrwxrwxrwx 1 root root 28 2006-11-09 15:16 alias.load -> 
../mods-available/alias.load
lrwxrwxrwx 1 root root 33 2006-11-09 15:16 auth_basic.load -> 
../mods-available/auth_basic.load
lrwxrwxrwx 1 root root 33 2006-11-09 15:16 authn_file.load -> 
../mods-available/authn_file.load
lrwxrwxrwx 1 root root 36 2006-11-09 15:16 authz_default.load -> 
../mods-available/authz_default.load
lrwxrwxrwx 1 root root 38 2006-11-09 15:16 authz_groupfile.load -> 
../mods-available/authz_groupfile.load
lrwxrwxrwx 1 root root 33 2006-11-09 15:16 authz_host.load -> 
../mods-available/authz_host.load
lrwxrwxrwx 1 root root 32 2006-11-09 15:16 autoindex.load -> 
../mods-available/autoindex.load
lrwxrwxrwx 1 root root 26 2006-11-09 15:16 cgi.load -> 
../mods-available/cgi.load
lrwxrwxrwx 1 root root 26 2006-11-09 15:16 dir.conf -> 
../mods-available/dir.conf
lrwxrwxrwx 1 root root 26 2006-11-09 15:16 dir.load -> 
../mods-available/dir.load
lrwxrwxrwx 1 root root 26 2006-11-09 15:16 env.load -> 
../mods-available/env.load
lrwxrwxrwx 1 root root 27 2006-11-09 15:16 mime.load -> 
../mods-available/mime.load
lrwxrwxrwx 1 root root 34 2006-11-09 15:16 negotiation.load -> 
../mods-available/negotiation.load
lrwxrwxrwx 1 root root 31 2006-11-09 15:16 setenvif.load -> 
../mods-available/setenvif.load
lrwxrwxrwx 1 root root 29 2006-11-09 15:16 status.load -> 
../mods-available/status.load

/mnt/tmp/etc/apache2/sites-enabled:
total 0
lrwxrwxrwx 1 root root 36 2006-11-09 15:16 000-default -> 
/etc/apache2/sites-available/default
[EMAIL PROTECTED]:~$ 
=

IIUC, when purging no config files or conffiles should be left on the
system.

Thx, bye,
Gismo / Luca

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-3utility programs for webservers
ii  libmagic1 4.17-4 File type determination library us
ii  lsb-base  3.1-19 Linux Standard Base 3.1 init scrip
ii  mime-support  3.37-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit

apache2.2-common recommends no packages.

-- no debconf information


pgp1LTA9S1nnK.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2

Bug#418605: marked as done (purging does not clean up /etc/apache2)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#397789: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-4
Severity: important


Heya,

installing apache2 on an empty system and purging all installed packages
again leaves /etc/apache2 on the system.
To reproduce (tested on sid):

apt-get install apache2 apache2-mpm-worker apache2-utils
apache2.2-common libapr1 libaprutil1 libexpat1 libkrb53 libmagic1
libpcre3 libpq4 libsqlite3-0 mime-support

dpkg -P apache2 apache2-mpm-worker apache2-utils apache2.2-common
libapr1 libaprutil1 libexpat1 libkrb53 libmagic1 libpcre3 libpq4
libsqlite3-0 mime-support

[EMAIL PROTECTED]:/etc/apache2# find
.
./mods-enabled
./mods-enabled/alias.load
./mods-enabled/autoindex.load
./mods-enabled/dir.conf
./mods-enabled/dir.load
./mods-enabled/env.load
./mods-enabled/mime.load
./mods-enabled/negotiation.load
./mods-enabled/setenvif.load
./mods-enabled/status.load
./mods-enabled/auth_basic.load
./mods-enabled/authz_default.load
./mods-enabled/authz_user.load
./mods-enabled/authz_groupfile.load
./mods-enabled/authn_file.load
./mods-enabled/authz_host.load
./mods-enabled/cgid.conf
./mods-enabled/cgid.load
./sites-enabled
./sites-enabled/000-default
./conf.d
./conf.d/charset
./ports.conf


Cheers,

-- 
Bernd Zeimetz
<[EMAIL PROTECTED]> <http://bzed.de/>



--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Close

Bug#412602: marked as done (apache2.2-common: a2enmod doesn't know about apache2-mpm-itk -- breaks mod_cgi by default)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#412602: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3.3
Severity: important
Tags: patch

Hi,

a2enmod has the following snippet:

  #figure out if we're on a prefork or threaded mpm
  if [ -x /usr/sbin/apache2 ]; then
  PREFORK=`/usr/sbin/apache2 -l | grep prefork || true`
  fi

This assumes that anything that isn't prefork is threaded; among other
things, it enables mod_cgid instead of mod_cgi. However, mpm-itk also
isn't threaded, and it definitely can't handle mod_cgid (any CGI script
fails with a permission denied on the CGI socket). The correct snippet
would be

  #figure out if we're on a prefork or threaded mpm
  if [ -x /usr/sbin/apache2 ]; then
  PREFORK=`/usr/sbin/apache2 -l | grep -E 'prefork|itk' || true`
  fi

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-3.3  utility programs for webservers
ii  libmagic1 4.17-5 File type determination library us
ii  lsb-base  3.1-23 Linux Standard Base 3.1 init scrip
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit
ii  procps1:3.2.7-3  /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-pref

Bug#407307: marked as done (Apache2 - missing mod_includes causes unknown filter errors)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#407307: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2
Version: 2.2.3-3.2

This is probably known but I didn't see it in the bug list.

The line in apache2.conf:

AddOutputFilter INCLUDES .shtml

causes many errors in log:

[error] an unknown filter was not added: includes

because, I think, the module mod_includes is not loaded in the default 
configuration.


Dick


--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307 412407 412580 412602 413727 416322 418464 419552 420101 422589 423653 
428058
Changes: 
 apache2 (2.2.3-5) unstable; urgency=low
 .
   [ Tollef Fog Heen ]
   * Fix up apache2-src so the .tar.gz contains an apache2 top level
 directory.
   * Make apache2 MPMs provide and conflict with apache2-mpm so other
 packages can provide MPMs too.
   * Get rid of 2.1 references from descriptions.  (Closes: #400981)
 .
   [ Thom May ]
   * Let the init script cope with multiple pid files correctly. Probably we
 shouldn't be doing this at all, but we might as well do it properly!
 (Closes: #396162)
   * Add a sensible autoindex default config
   * Add patch from upstream to ensure that mod_cgi 500 responses aren't
 truncated (Closes: #412580)
   * Use graceful-stop to shutdown apache to ensure we cope nicely with long

Bug#413727: marked as done (apache2.2-common: mod_proxy_ftp segfaults (NULL deref.) when FTP server sends back no spaces)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#413727: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Subject: apache-common: mod_proxy segfaults (NULL deref.) when FTP server sends 
back no spaces
Package: apache-common
Version: 1.3.34-4
Severity: important
Tags: patch

Hello,

I have found a NULL dereferencing bug in mod_proxy. If there is a malicious 
remote
FTP server and someone uses Apache and mod_proxy to connect to that FTP server,
the server can reply to "LIST" with a directory listing showing directories or
ordinary files with no spaces whatsoever in the line. There is a strrchr(3) call
with no check if it returns NULL, and the code afterwards crashes the Apache 
child
when the server sends back such lines without spaces.

The bug both affects the 1.3.x and 2.x branches of Apache.

I do not see any security implications to this bug, despite the remote 
crashing, as
it only seems possible to use it to crash the Apache child and not the main 
process,
no matter what MPM you use.

This was reported to upstream a few months ago:

  o  http://issues.apache.org/bugzilla/show_bug.cgi?id=40733

// Ulf Harnhammar


metaur:~# fgrep ftpspecial /etc/services
ftpspecial  1096/tcp
ftpspecial  1096/udp
metaur:~# tail -n2 /etc/inetd.conf
ftp stream  tcp nowait  root  /usr/bin/perl perl /root/apache-crasher.pl
ftpspecial  stream  tcp nowait  root/usr/bin/perl perl 
/root/apache-crasher2.pl
metaur:~# fgrep -A33 'mod_proxy' /etc/apache/httpd.conf

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
ProxyRequests On


Order deny,allow
Deny from all
Allow from 127.0.0.1



#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: 
headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On

#
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
#
#CacheRoot "/var/cache/apache"
#CacheSize 5
#CacheGcInterval 4
#CacheMaxExpire 24
#CacheLastModifiedFactor 0.1
#CacheDefaultExpire 1
#NoCache a_domain.com another_domain.edu joes.garage_sale.com


metaur:~# nc localhost 80
GET ftp://localhost/ HTTP/1.0

metaur:~# cd /var/log/apache
metaur:/var/log/apache# cat access.log
metaur:/var/log/apache# cat error.log
[Sat Dec 23 00:11:53 2006] [notice] Apache configured -- resuming normal 
operations
[Sat Dec 23 00:11:53 2006] [notice] Accept mutex: sysvsem (Default: sysvsem)
[Sat Dec 23 00:13:25 2006] [notice] child pid 20656 exit signal Segmentation 
fault (11)
metaur:/var/log/apache# cd
metaur:~#


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-3-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages apache-common depends on:
ii  apache2-utils 2.2.3-3.2  utility programs for webservers
ii  debconf [debconf-2.0] 1.5.8  Debian configuration management sy
ii  dillo [www-browser]   0.8.5-4Small and fast web browser
ii  elinks [www-browser]  0.11.1-1.2 advanced text-mode WWW browser
ii  epiphany-browser [www 2.14.3-3   Intuitive GNOME web browser
ii  firefox [www-browser] 1.5.dfsg+1.5.0.7-2 lightweight web browser based on M
ii  galeon [www-browser]  2.0.2-4GNOME web browser for advanced use
ii  konqueror [www-browse 4:3.5.5a.dfsg.1-2  KDE's advanced file manager, web b
ii  libc6 2.3.6.ds1-8GNU C Library: Shared libraries
ii  libdb4.4  4.4.20-8   Berkeley v4.4 Database Libraries [
ii  libexpat1 1.95.8-3.3 XML parsing C library - runtime li
ii  links2 [www-browser]  2.1pre26-4 Web browser running in both graphi
ii  lynx [www-browser]2.8.5-2sarge2.2Text-mode WWW Browser
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 
ii  sed   4.1.5-1The GNU sed stream editor
ii  ucf   2.0017 Update Configuration Fil

Bug#418464: marked as done (Missing file /etc/apache2/conf.d/apache2-doc)

2007-06-10 Thread Debian Bug Tracking System
Your message dated Sun, 10 Jun 2007 17:47:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#418464: fixed in apache2 2.2.3-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-doc
Version: 2.2.3-4
Severity: important

It looks like the file /etc/apache2/conf.d/apache2-doc has been left out of 
apache2-doc_2.2.3-4_all.deb in the recent etch release.  The file seems 
to be present in the previous (sarge) package, but not (according to 'dpkg -c') 
in the later version.  Without it, browsing the manual content 
does not work.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-5

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-5_all.deb
apache2-mpm-event_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-5_i386.deb
apache2-mpm-perchild_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-5_all.deb
apache2-mpm-prefork_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-5_i386.deb
apache2-mpm-worker_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-5_i386.deb
apache2-prefork-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-5_i386.deb
apache2-src_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-5_all.deb
apache2-threaded-dev_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-5_i386.deb
apache2-utils_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-5_i386.deb
apache2.2-common_2.2.3-5_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-5_i386.deb
apache2_2.2.3-5.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-5.diff.gz
apache2_2.2.3-5.dsc
  to pool/main/a/apache2/apache2_2.2.3-5.dsc
apache2_2.2.3-5_all.deb
  to pool/main/a/apache2/apache2_2.2.3-5_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 10 Jun 2007 18:54:29 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 312385 322385 390348 391813 396162 397789 399043 400981 401053 403682 
407307 412407 412580 412602 413727 416322 418464 419552 420101 422589 423653 
428058
Changes: 
 apache2 (2.2.3-5) unstable; urgency=low
 .
   [ Tollef Fog Heen ]
   * Fix up apache2-src so the .tar.gz contains an apache2 top level
 directory.
   * Make apache2 MPMs provide and conflict with apache2-mpm so other
 packages can provide MPMs too.
   * Get rid of 2.1 references from descriptions.  (Closes: #400981)
 .
   [ Thom May ]
   * Let the init script cope with multiple pid files cor

Processed: reopening 412580, found 412580 in 2.2.3-5

2007-06-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> reopen 412580
Bug#412580: Apache reporting incorrect header values for error 500 documents
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.

> found 412580 2.2.3-5
Bug#412580: Apache reporting incorrect header values for error 500 documents
Bug marked as found in version 2.2.3-5.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: severity of 298689 is grave

2007-06-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> severity 298689 grave
Bug#298689: apache2: logrotate script and new init script break ssl 
certificates with passphrase
Bug#301702: apache2 start failed during restart when logs rotated
Bug#314878: apache2-common: Do 'reload' instead of 'restart' in 
logrotate.d/apache2
Bug#334824: logrotate: Postrotate documentation - Why restart?
Bug#398223: apache2: "[notice] caught SIGTERM, shutting down"
Bug#400455: apache2.2-common: "/etc/init.d/apache2 restart" can kill apache
Bug#425248: apache2.2-common: apache2 may be killed by logrotate job
Severity set to `grave' from `important'

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: merging 429319 429320

2007-06-17 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> merge 429319 429320
Bug#429319: sid - apache2 segmentation fault(negotiation.load)
Bug#429320: sid - apache2 segmentation fault (negotiation.load)
Merged 429319 429320.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#408430: marked as done (apache2: not start at boot)

2007-06-17 Thread Debian Bug Tracking System
Your message dated Sun, 17 Jun 2007 22:38:25 +0200
with message-id <[EMAIL PROTECTED]>
and subject line bug #408430 apache2: not start at boot
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-3.2
Severity: wishlist

I recall in rcconf I had apache2 not start at boot. Now after the
apache2 upgrade I have to go back into rcconf again to tell apache2
not to start at boot.

Also it seems you wiped out my previous setup where php was activated.
Now raw php comes out.

OK in /etc/apache2/httpd.conf I put
Include /etc/apache2/mods-available/php5.load
Include /etc/apache2/mods-available/php5.conf
now it works.

Hmmm, maybe all this is because I did apt-get --purge dist-upgrade.
Who knows.

--- End Message ---
--- Begin Message ---
Version: 2.2.3-4

This was fixed in 2.2.3-4
--- End Message ---


Processed: reassign 429516 to apache2-common

2007-06-18 Thread Debian Bug Tracking System
nknown package 'reload'
Warning: Unknown package 'dev'
Warning: Unknown package 'fi'
Warning: Unknown package 'endscript'
Bug reassigned from package `apache2-commonversion: 2.0.54-5sarge1package: 
apache2.2-commonversion: 2.2.3-4in the logrotate config file for apache 
(/etc/logrotate.d/apache2), the "restart" command is used to tell apache to use 
the new logfiles after they have been rotated. this is kind of harsh since it's 
a full stop & start of the server. it also causes problems for people using ssl 
certificates for which the key is encrypted, and thus needs a passphrase to be 
typed in everytime apache starts.here's the relevant part of 
/etc/logrotate.d/apache2 :postrotateif [ -f 
/var/run/apache2.pid ]; then/etc/init.d/apache2 restart 
> /dev/nullfi endscriptmay i suggest that "restart" be 
changed for "reload", which has the same effect regarding logfile rotation, 
does not require the passphrase to be re-entered, and is less harsh overall.
postrotateif [ -f /var/run/apache2.pid ]; then  
  /etc/init.d/apache2 reload > /dev/nullfi
endscript' to `apache2-common'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#287726: marked as done (apache2-common: mem_cache module not working properly)

2007-06-18 Thread Debian Bug Tracking System
Your message dated Mon, 18 Jun 2007 22:05:03 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2-common: mem_cache module not working properly
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.0.52-3
Severity: important

I have a tomcat installation behind a caching apache 2. At first it seems to 
work:

~$ sudo /etc/init.d/apache2 restart
Restarting web server: Apache2.
~$ wget -q -O- -s http://michiel.omroep.nl/mm18/ | head -12
HTTP/1.1 200 OK
Date: Wed, 29 Dec 2004 18:02:45 GMT
Server: Apache-Coyote/1.1
Expires: Wed, 29 Dec 2004 18:03:45 GMT
Cache-Control: public
Content-Type: text/html;charset=UTF-8
Content-Language: nl
Content-Length: 3350
Via: 1.0 michiel.omroep.nl
Connection: close


~$ wget -q -O- -s http://michiel.omroep.nl/mm18/ | head -12
HTTP/1.1 200 OK
Date: Wed, 29 Dec 2004 18:02:48 GMT
Server: Apache/2.0.52 (Debian GNU/Linux) mod_ssl/2.0.52 OpenSSL/0.9.7b
Expires: Wed, 29 Dec 2004 18:03:45 GMT
Cache-Control: public
Content-Type: text/html;charset=UTF-8
Content-Language: nl
Content-Length: 3350
Via: 1.0 michiel.omroep.nl
Age: 3
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
~$ 


As you see, the second hit is cached.

Now, we wait a minute (until the page expires).


~$ wget -q -O- -s http://michiel.omroep.nl/mm18/ | head -12
HTTP/1.1 200 OK
Date: Wed, 29 Dec 2004 18:03:47 GMT
Server: Apache-Coyote/1.1
Expires: Wed, 29 Dec 2004 18:04:47 GMT
Cache-Control: public
Content-Type: text/html;charset=UTF-8
Content-Language: nl
Content-Length: 3350
Via: 1.0 michiel.omroep.nl
Connection: close


~$ wget -q -O- -s http://michiel.omroep.nl/mm18/ | head -12
HTTP/1.1 200 OK
Date: Wed, 29 Dec 2004 18:03:50 GMT
Server: Apache-Coyote/1.1
Expires: Wed, 29 Dec 2004 18:04:50 GMT
Cache-Control: public
Content-Type: text/html;charset=UTF-8
Content-Language: nl
Content-Length: 3350
Via: 1.0 michiel.omroep.nl
Connection: close


~$ 


Now it's not cached any more, and none of the subsequent hits will be, so 
effectively caching is not
working.



Perhaps you may need this:
/etc/apache2/mods-enabled$ ls -l
total 4
lrwxr-xr-x1 root root   28 2004-12-29 17:48 00-proxy.load -> 
../mods-available/proxy.load
lrwxr-xr-x1 root root   37 2004-12-29 18:26 asis.load -> 
/etc/apache2/mods-available/asis.load
lrwxr-xr-x1 root root   37 2004-12-29 17:44 cgid.conf -> 
/etc/apache2/mods-available/cgid.conf
lrwxr-xr-x1 root root   37 2004-12-29 17:44 cgid.load -> 
/etc/apache2/mods-available/cgid.load
lrwxr-xr-x1 root root   36 2004-12-29 18:11 cgi.load -> 
/etc/apache2/mods-available/cgi.load
lrwxr-xr-x1 root root   30 2004-12-29 17:45 headers.load -> 
../mods-available/headers.load
lrwxr-xr-x1 root root   32 2004-12-29 17:45 mem_cache.load -> 
../mods-available/mem_cache.load
lrwxr-xr-x1 root root   33 2004-12-29 17:46 mime_magic.load -> 
../mods-available/mime_magic.load
-rw-r--r--1 root root  290 2004-12-29 18:18 proxy.conf
lrwxr-xr-x1 root root   26 2004-12-29 17:48 ssl.load -> 
../mods-available/ssl.load
lrwxr-xr-x1 root root   40 2004-12-29 17:44 userdir.conf -> 
/etc/apache2/mods-available/userdir.conf
lrwxr-xr-x1 root root   40 2004-12-29 17:44 userdir.load -> 
/etc/apache2/mods-available/userdir.load
/etc/apache2/mods-enabled$ cat proxy.conf 
# see mowgli:/e/fp/../conf

#cache   
CacheDefaultExpire 5
CacheMaxExpire 30
CacheIgnoreNoLastMod Off
CacheIgnoreCacheControl Off

#mem cache 
CacheEnable mem /
MCacheSize 262144
MCacheMaxStreamingBuffer 1048576
MCacheMaxObjectCount 13001
MCacheMaxObjectSize 4194304
MCacheMinObjectSize 1

The proxy is configured like this in apache2/sites-enabled:

ProxyVia on
ProxyPass/mm18  http://michiel.omroep.nl:8070/mm18
ProxyPassReverse /mm18  http://michiel.omroep.nl:8070/mm18




-- System Information:
Debian Release: 3.0
  APT prefers unstable
  APT policy: (1001, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.utf8)

Versions of packages apache2-common depends on:
ii  debconf 1.4.22   Debian configuration management sy
ii  debianutils 1.16 Miscellaneous utilities specific t
ii  libapr0 2.0.52-3 The Apache Portable Runtime
ii  libc6

Bug#403134: marked as done (apache2: does not work with CGI, PHP, Perl, mySQL, etc.)

2007-06-18 Thread Debian Bug Tracking System
Your message dated Mon, 18 Jun 2007 22:22:28 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2: does not work with CGI, PHP, Perl, mySQL, etc.
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Subject: apache2: does not work with CGI, PHP, Perl, mySQL, etc.
Package: apache2
Version: 2.0.55-4
Severity: critical
Justification: breaks unrelated software

*** Please type your report below this line ***

I tested apache2 and the 3 apache1 versions on both KNOPPIX-5.02-CD and
my working machine with Debian testing.  None worked with CGI, PHP,
Perl, mySQL, phpmyadmin, and many other things.  Apache2 was the worst
by denying even access to http://localhost.  Changing the configuration
did not heall the system.

I could correct the whole mess by using XAMPP of
http://www.apachefriends.org/.  This is a combination of working
versions of Apache2, PHP, mySQL, and ftp such that the CGI, PHP , Perl,
and phpmyadmin really work.  I tested XAMPP both on KNOPPIX (with
permanent saving) and Debian testing - with full success.  After the
former torture with the Debian Apache* I am really happy to have found
this free software product.

I propose that you either change towards XAMPP or at least try to learn
from these guys.  The actual trash of Debian's Apache and related
software is not usable.

Bernd Warken

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /UNIONFS/bin/bash
Kernel: Linux 2.6.17
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.0.55-4   traditional model for Apache2

apache2 recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
I am closing this bug report since it is not reproducible and no 
information has been received in some months.

On why not using XAMPP: It may be nice for a developement machine, but 
it is not useful for  a production system. From the XAMPP homepage:

"The default configuration is not good from a securtiy point of view 
and it's not secure enough for a production environment - please 
don't use XAMPP in such environment."
--- End Message ---


Processed: i should read *all* my email and give the BTS some time to catch up first.

2007-06-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 429015 libapache-mod-perl
Bug#429015: please remove libapache-request-perl
Bug reassigned from package `ftp.debian.org' to `libapache-mod-perl'.

> retitle 429015 libapache-request-perl: uninstallable (unmet deb on 
> libapache-mod-perl)
Bug#429015: please remove libapache-request-perl
Changed Bug title to `libapache-request-perl: uninstallable (unmet deb on 
libapache-mod-perl)' from `please remove libapache-request-perl'.
(By the way, that Bug is currently marked as done.)

> severity 429015 serious
Bug#429015: libapache-request-perl: uninstallable (unmet deb on 
libapache-mod-perl)
Severity set to `serious' from `normal'

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: reassign 429516 to apache2.2-common, forcibly merging 298689 429516, tagging 298689, tagging 428887 ... ... ...

2007-06-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> reassign 429516 apache2.2-common
Bug#429516: apache2-common & logrotate : could reload be used instead of 
restart ?
Bug reassigned from package `apache2-common' to `apache2.2-common'.

> forcemerge 298689 429516
Bug#298689: apache2: logrotate script and new init script break ssl 
certificates with passphrase
Bug#429516: apache2-common & logrotate : could reload be used instead of 
restart ?
Bug#301702: apache2 start failed during restart when logs rotated
Bug#314878: apache2-common: Do 'reload' instead of 'restart' in 
logrotate.d/apache2
Bug#334824: logrotate: Postrotate documentation - Why restart?
Bug#398223: apache2: "[notice] caught SIGTERM, shutting down"
Bug#400455: apache2.2-common: "/etc/init.d/apache2 restart" can kill apache
Bug#425248: apache2.2-common: apache2 may be killed by logrotate job
Forcibly Merged 298689 301702 314878 334824 398223 400455 425248 429516.

> tags 298689 pending
Bug#298689: apache2: logrotate script and new init script break ssl 
certificates with passphrase
Tags were: patch
Bug#301702: apache2 start failed during restart when logs rotated
Bug#314878: apache2-common: Do 'reload' instead of 'restart' in 
logrotate.d/apache2
Bug#334824: logrotate: Postrotate documentation - Why restart?
Bug#398223: apache2: "[notice] caught SIGTERM, shutting down"
Bug#400455: apache2.2-common: "/etc/init.d/apache2 restart" can kill apache
Bug#425248: apache2.2-common: apache2 may be killed by logrotate job
Bug#429516: apache2-common & logrotate : could reload be used instead of 
restart ?
Tags added: pending

> tags 428887 pending
Bug#428887: apache2.2-common: files left upon purge
There were no tags set.
Tags added: pending

> tags 415698 pending
Bug#415698: apache2.2-common: does not create /usr/lib/cgi-bin common anymore.
There were no tags set.
Tags added: pending

> tags 427050 pending
Bug#427050: apache2: New upstream: 2.2.4
There were no tags set.
Tags added: pending

> tags 410331 pending
Bug#410331: "proxy: error reading status line from remote server" using Apache2 
mod_proxy against IIS
Tags were: patch
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed (with 1 errors): reopening 429015, retitle 429015 to RM: libapache-request-perl --RoM; obsolete (apache1 removal) ...

2007-06-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> reopen 429015
Bug#429015: libapache-request-perl: uninstallable (unmet deb on 
libapache-mod-perl)
Bug reopened, originator not changed.

> retitle 429015 RM: libapache-request-perl --RoM; obsolete (apache1 removal)
Bug#429015: libapache-request-perl: uninstallable (unmet deb on 
libapache-mod-perl)
Changed Bug title to `RM: libapache-request-perl --RoM; obsolete (apache1 
removal)' from `libapache-request-perl: uninstallable (unmet deb on 
libapache-mod-perl)'.

> merge 429078 429015
Bug#429015: RM: libapache-request-perl --RoM; obsolete (apache1 removal)
Bug#429078: RM: libapache-request-perl -- RoM; obsolete (apache1 removal)
Mismatch - only Bugs in same state can be merged:
Values for `package' don't match:
 #429015 has `libapache-mod-perl';
 #429078 has `ftp.debian.org'
Values for `severity' don't match:
 #429015 has `serious';
 #429078 has `normal'

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: closing 429015

2007-06-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> # Gah, oops
> close 429015
Bug#429015: RM: libapache-request-perl --RoM; obsolete (apache1 removal)
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to Lucas Nussbaum <[EMAIL PROTECTED]>

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#423653: marked as done (apache2.2-common: mod_disk_cache fills /var after etch upgrade)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#423653: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: critical
Justification: breaks unrelated software

After an upgrade to etch, mod_disk_cache started storing things in 
/var/cache/apache2/mod_disk_cache, without any apparently limit on size. 
This caused /var to fill up, which had bad effects on the entire system.

I am not sure if mod_disk_cache was enabled or not before the upgrade to 
etch (from sarge), but it was certainly not using disk space in the same 
way.

The problem appears to be related to having mod_proxy enabled at upgrade 
time, according to bug #407171
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407171)

It is not entirely clear to me from that bug description whether 
mod_disk_cache was previously enabled but in a different way, or if it 
is newly enabled by the upgrade.

mod_disk_cache appears to be experimental 
(http://httpd.apache.org/docs/2.0/mod/mod_disk_cache.html), and also the 
"garbage collection" features that would be necesary to keep the disk 
cache to a fixed bound are not yet implemented. Disabling it seems not 
to have caused any problems, even for mod_proxy.

Someone else seems to have noticed this problem too:
http://tumbleweed.org.za/2007/05/04/sarge-etch-upgrade-and-apache2/



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (600, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages apache2.2-common depends on:
ii  apache2-utils2.2.3-4 utility programs for webservers
ii  libmagic14.17-5etch1 File type determination library us
ii  lsb-base 3.1-23.1Linux Standard Base 3.1 init scrip
ii  mime-support 3.39-1  MIME files 'mime.types' & 'mailcap
ii  net-tools1.60-17 The NET-3 networking toolkit
ii  procps   1:3.2.7-3   /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
So

Bug#400455: marked as done (apache2.2-common: "/etc/init.d/apache2 restart" can kill apache)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3.1
Severity: normal

*** Please type your report below this line ***

Today logrotate killed my apache. The last lines in error.log.1 are:

[Sun Nov 26 06:25:25 2006] [warn] child process 6244 still did not exit, 
sending a SIGTERM
[Sun Nov 26 06:25:27 2006] [warn] child process 6244 still did not exit, 
sending a SIGTERM
[Sun Nov 26 06:25:29 2006] [warn] child process 6244 still did not exit, 
sending a SIGTERM
[Sun Nov 26 06:25:31 2006] [error] child process 6244 still did not exit, 
sending a SIGKILL
[Sun Nov 26 06:25:32 2006] [notice] caught SIGTERM, shutting down

Apache did not come up again with a new error.log file. I could not reproduce
the problem because I don't know how I can force the apache children to not
exit on SIGTERM. Logrotate uses "/etc/init.d/apache2 restart" to restart
apache, perhaps the "sleep 10" delay in the initscript is too short in this
case. Why doesn't the initscript use "apache2ctl restart"? Perhaps logrotate
could be changed to use "/etc/init.d/apache2 reload", or the restart part of
the initscript could be made more reliable.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-amd64
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-3.1  utility programs for webservers
ii  libmagic1 4.17-4 File type determination library us
ii  lsb-base  3.1-15 Linux Standard Base 3.1 init scrip
ii  mime-support  3.37-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2

Bug#398223: marked as done (apache2: "[notice] caught SIGTERM, shutting down")

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-3
Severity: important


Twice in the past two weeks apache2 has shut down spontaneously for no 
apparent reason. The error log ends with the following:

[Sun Nov 12 06:29:15 2006] [warn] child process 13051 still did not exit, 
sending a SIGTERM
[Sun Nov 12 06:29:17 2006] [warn] child process 13051 still did not exit, 
sending a SIGTERM
[Sun Nov 12 06:29:19 2006] [warn] child process 13051 still did not exit, 
sending a SIGTERM
[Sun Nov 12 06:29:21 2006] [error] child process 13051 still did not exit, 
sending a SIGKILL
[Sun Nov 12 06:29:22 2006] [notice] caught SIGTERM, shutting down

And can see no other signs of problems, it just isn't running any more. The 
only thing that has changed recently is that I have add SSL to one of my 
websites.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-tp600e.2
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.2.3-3Traditional model for Apache HTTPD

apache2 recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-4+etch1
Distribution: stable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD 2.1
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD 2.1
 apache2-mpm-worker - High speed threaded model for Apache HTTPD 2.1
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threa

Bug#425248: marked as done (apache2.2-common: apache2 may be killed by logrotate job)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: normal

There are two differents problems, in /etc/init.d/apache2 restart 
function you use sleep 10 between start and stop, but 10 seconds is not 
enough in the case where some childs cannot be killed easily. So it tries 
to stop the server, and tries to start it before it is stopped so it is 
not able to start the server. This is not very important if no script are 
calling restart.

But /etc/logrotate.d/apache2 does. A good idea should be to use reload 
instead of restart. In the first case you may kill legitimate process and 
you do at least ten seconds of service outage (or more if the server 
doesn't restart...) which may be very bad on high availability services, 
in the second case you may loose some lines of logs and it's all.

(needless to say that this happened to me several times)

It may be an easy DOS attack, you just have to overload an apache server 
at 6:25 AM, with the overload it is going to take more than 10 seconds to 
stop and it will not restart, enjoy !

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.21.1-grsec
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages apache2.2-common depends on:
ii  apache2-utils2.2.3-4 utility programs for webservers
ii  libmagic14.17-5etch1 File type determination library us
ii  lsb-base 3.1-23.1Linux Standard Base 3.1 init scrip
ii  mime-support 3.39-1  MIME files 'mime.types' & 'mailcap
ii  net-tools1.60-17 The NET-3 networking toolkit
ii  procps   1:3.2.7-3   /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apa

Bug#429516: marked as done (apache2-common & logrotate : could reload be used instead of restart ?)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-commonVersion: 2.0.54-5sarge1Package: apache2.2-commonVersion: 
2.2.3-4In the logrotate config file for Apache (/etc/logrotate.d/apache2), the 
"restart" command is used to tell Apache to use the new logfiles after they 
have been rotated. This is kind of harsh since it's a full stop & start of the 
server. It also causes problems for people using SSL certificates for which the 
key is encrypted, and thus needs a passphrase to be typed in everytime Apache 
starts.Here's the relevant part of /etc/logrotate.d/apache2 :postrotate 
   if [ -f /var/run/apache2.pid ]; then
/etc/init.d/apache2 restart > /dev/nullfi endscriptMay 
I suggest that "restart" be changed for "reload", which has the same effect 
regarding logfile rotation, does not require the passphrase to be re-entered, 
and is less harsh overall.postrotateif [ -f 
/var/run/apache2.pid ]; then/etc/init.d/apache2 reload 
> /dev/nullfiendscript
I am using Debian 3.1 (sarge) with Apache2 and also Debian 4.0 (etch) with 
Apache 2.2.Thank you.
_
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-4+etch1
Distribution: stable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD 2.1
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD 2.1
 apache2-mpm-worker -

Bug#419552: marked as done (Documentation: README.Debian is needed)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#419552: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: wishlist

It was not easy for me to find

apache2ctl(man: yes, script)
httxt2dbm (man: no,  binary)
a2dismod  (man: yes, script)
a2ensite  (man: no,  script)
a2enmod   (man: yes, script)
a2dissite (man: no,  script)

Some commands do not have manpages.  

apache2-doc package was too big for me to find pointer to these.

So I suggest to include README.Debian with few lines such as:

---
Use a2ensite/a2dissite for site management
Use a2enmod/a2dismod for module management
Read these scripts in /usr/sbin for details
--

That makes new commer easy timeto start their life :-)

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-4utility programs for webservers
ii  libmagic1 4.20-4 File type determination library us
ii  lsb-base  3.1-23.1   Linux Standard Base 3.1 init scrip
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit
ii  procps1:3.2.7-3  /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-4+etch1
Distribution: stable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven m

Bug#301702: marked as done (apache2 start failed during restart when logs rotated)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2
Version: 2.0.53-5

apache stopped then started from logrotate postrotate script:
/etc/init.d/apache2 restart

When starting it can't bind to port 80 because "Address in use". It 
doesn't any errors to logs because no error.log exists (it's rotated you 
remember?).


So we and up with apache silently falling each week.

I suggest to use reload rather then restart for postrotate script.

I am using Debian GNU/Linux 3.1, custom kernel 2.4.26-1-686 and stock 
libc6 2.3.2.ds1-16.



--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-4+etch1
Distribution: stable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD 2.1
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD 2.1
 apache2-mpm-worker - High speed threaded model for Apache HTTPD 2.1
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 298689 419552 423653
Changes: 
 apache2 (2.2.3-4+etch1) stable; urgency=low
 .
   * Comment out CacheEnable by default, to prevent filling up /var.
 Document the problem in README.Debian and NEWS.Debian, point to
 htcacheclean and give a warning when doing a2enmod disk_cache
 (Closes: #423653).
   * Re-add README.Debian and describe
 - how to change "restart" to "reload" in the logrotate script
   when using SSL keys with passwords
 - the config dir layout (closes: #419552)
 - which files are ignor

Bug#298689: marked as done (apache2: logrotate script and new init script break ssl certificates with passphrase)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.0.53-5
Severity: important

the logrotate script for apache2 calls /etc/init.d/apache2 restart in
its postrotate command.
The old init-script called $APACHE2CTL restart and everything was
working.
The new init-script (provided by 2.0.53-5) has changed the restart
command to "apache stop" and "$APACHE2CTL startssl".
This breaks the logrotate postrotate for servers with ssl certificates
that have a passphrase set for them, as the restart command hangs and
noone can enter the passphrase.
A better solution would be to call the apache2 init script with the
reload command in the logrotate postrotate.

Greetings
Heiko

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.25
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.0.53-5   traditional model for Apache2

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-4+etch1
Distribution: stable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD 2.1
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD 2.1
 apache2-mpm-worker - High speed threaded model for Apache HTTPD 2.1
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 298689 419552 423653
Changes: 
 apache2 (2.2.3-4+etch1) sta

Bug#314878: marked as done (apache2-common: Do 'reload' instead of 'restart' in logrotate.d/apache2)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Severity: important
Version: 2.0.54-4

In /etc/logrotate.d/apache2, `/etc/init.d/apache2 restart` is
invoked to rotate Apache2 logs. `/etc/init.d/apachw2 restart`
stops and starts Apache2, not reloads.

There are 2 problems in this situation:

   1. Web service by Apache2 is stopped in a short time.
   2. Web service by Apache2 is NOT started if
  Apache2 configuration is broken.

Use `/etc/init.d/apache2 reload` in this situation.

-- 
-- Name: SATOH Fumiyasu  -- Home: http://www.sfo.jp (in Japanese only)
-- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ...

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-4+etch1
Distribution: stable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD 2.1
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD 2.1
 apache2-mpm-worker - High speed threaded model for Apache HTTPD 2.1
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 298689 419552 423653
Changes: 
 apache2 (2.2.3-4+etch1) stable; urgency=low
 .
   * Comment out CacheEnable by default, to prevent filling up /var.
 Document the problem in README.Debian and NEWS.Debian, point to
 htcacheclean and give a warning when doing a2enmod disk_cache
 (Closes: #423653).
   * Re-add README.Debian and describe
 - how to change "restart" to "reload" in the logrotate script
   when using SSL keys with 

Bug#334824: marked as done (logrotate: Postrotate documentation - Why restart?)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 07:52:15 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.3-4+etch1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: logrotate
Version: 3.7-5
Severity: wishlist

I don't understand why there is a need to restart the server in a postrotate
using apache2 as an example. 

Could you or rather docs explain this better? :)

I noticed this on RH machine for example:

postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true

Best wishes,


-- Package-specific info:
Contents of /etc/logrotate.d
total 7
-rw-r--r--  1 root root  240 2005-05-12 15:36 apache2
-rw-r--r--  1 root root   79 2004-09-29 04:44 aptitude
-rw-r--r--  1 root root  384 2005-02-18 03:59 base-config
-rw-r--r--  1 root root  170 2005-01-27 23:57 exim4-base
-rw-r--r--  1 root root 1116 2005-05-18 17:07 mysql-server
-rw-r--r--  1 root root   94 2004-12-31 03:26 ppp


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-386
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages logrotate depends on:
ii  base-passwd 3.5.9Debian base system master password
ii  cron3.0pl1-86management of regular background p
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libpopt01.7-5lib for parsing cmdline parameters

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.3-4+etch1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.3-4+etch1_all.deb
apache2-mpm-event_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.3-4+etch1_i386.deb
apache2-mpm-perchild_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.3-4+etch1_all.deb
apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.3-4+etch1_i386.deb
apache2-mpm-worker_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.3-4+etch1_i386.deb
apache2-prefork-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.3-4+etch1_i386.deb
apache2-src_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.3-4+etch1_all.deb
apache2-threaded-dev_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.3-4+etch1_i386.deb
apache2-utils_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.3-4+etch1_i386.deb
apache2.2-common_2.2.3-4+etch1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.3-4+etch1_i386.deb
apache2_2.2.3-4+etch1.diff.gz
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.diff.gz
apache2_2.2.3-4+etch1.dsc
  to pool/main/a/apache2/apache2_2.2.3-4+etch1.dsc
apache2_2.2.3-4+etch1_all.deb
  to pool/main/a/apache2/apache2_2.2.3-4+etch1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 13 Jun 2007 18:27:31 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.3-4+etch1
Distribution: stable
Urgency: low
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD 2.1
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD 2.1
 apache2-mpm-worker - High speed threaded model for Apache HTTPD 2.1
 apache2-prefork-

Processed: retitle 409970 to a2ensite/a2enmod need to check if an existing file/symlink in sites-enabled is correct

2007-06-19 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> retitle 409970 a2ensite/a2enmod need to check if an existing file/symlink in 
> sites-enabled is correct
Bug#409970: apache2: ignoring "sites-enabled"
Changed Bug title to `a2ensite/a2enmod need to check if an existing 
file/symlink in sites-enabled is correct' from `apache2: ignoring 
"sites-enabled"'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: [bts-link] source package apache2

2007-06-19 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> #
> # bts-link upstream status pull for source package apache2
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #353443
> #  * http://issues.apache.org/bugzilla/show_bug.cgi?id=12355
> #  * remote status changed: REOPENED -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 353443 + fixed-upstream
Bug#353443: Apache2 : SSLVerifyClient directive in location make post to PHP 
script impossible
Tags were: patch
Tags added: fixed-upstream

> usertags 353443 - status-REOPENED
Bug#353443: Apache2 : SSLVerifyClient directive in location make post to PHP 
script impossible
Usertags were: status-REOPENED.
Usertags are now: .
> usertags 353443 + status-RESOLVED resolution-FIXED
Bug#353443: Apache2 : SSLVerifyClient directive in location make post to PHP 
script impossible
There were no usertags set.
Usertags are now: resolution-FIXED status-RESOLVED.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#429401: marked as done (apache2: Doesn't execute PHP scripts)

2007-06-19 Thread Debian Bug Tracking System
Your message dated Tue, 19 Jun 2007 14:39:52 +0200 (CEST)
with message-id <[EMAIL PROTECTED]>
and subject line Bug#429401: apache2: Doesn't execute PHP scripts
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-5
Severity: important


The current version of apache2 won't run PHP files. It just sends the
source to the browser instead. I've checked all the config that I know
how to check. The php5.load and php5.conf files are correctly symlinked
from mods-available to mods-enabled and contain respectively:

LoadModule php5_module /usr/lib/apache2/modules/libphp5.so


  AddType application/x-httpd-php .php .phtml .php3
  AddType application/x-httpd-php-source .phps


/var/log/apache2/error.log contains nothing more informative than:
[Sun Jun 17 20:33:46 2007] [notice] Apache/2.2.3 (Debian) PHP/5.2.3-1
configured -- resuming normal operations

/etc/php5/apache2/php.ini contains:
engine = On

a2enmod php5 says "This module is already enabled!"

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21.1
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.2.3-5Traditional model for Apache HTTPD

apache2 recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---

On Tue, 19 Jun 2007, Tony Houghton wrote:

But now it is working. I think it must have been Firefox reusing a
cached copy from before I got PHP set up again. I completely failed to
think of that possibility until now otherwise I would have tried a
different browser. Sorry about the false report, I guess you can close
this.


OK. Thanks for the quick reply.

--- End Message ---


Bug#291841: marked as done (Wrong/unnecessary directory/file permissions /var/log/apache2)

2007-06-21 Thread Debian Bug Tracking System
Your message dated Fri, 22 Jun 2007 00:57:18 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Wrong/unnecessary directory/file permissions /var/log/apache2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.0.52-3
Severity: normal

Hi,

The /var/log/apache2 dir has permissions drwxr-xr-x (root:root)
Most log files have -rw-r- (root:adm)
but the oldest log files have -rw-r--r-- (root:root)

The o+rx on the directory isn't necessary and should thus be dropped.
The o+r on the oldest logs is wrong too.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-686-smp
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.0.52-3   Traditional model for Apache2

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 2.2.3-4

This bug has been fixed long ago (don't know when exactly, but 2.2.3-4 
is definitely fixed)
--- End Message ---


Bug#334575: marked as done (apache2-mpm-prefork: mod_rewrite and PHP5.1CVS display a blank page)

2007-06-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Jun 2007 14:24:24 +0200
with message-id <[EMAIL PROTECTED]>
and subject line mod_rewrite and PHP5.1CVS display a blank page
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-mpm-prefork
Version: 2.0.54-5
Severity: important



I have a blank page with PHP5.1 (snapshot from october 13, 2005) and
mod_rewrite. The rewrite engine is working cause even when I give a
wrong URL I get a code 200 in my logs but the size of the returned page
still 0.

Using a .htaccess file or putting the rewrite rules inside the
httpd.conf does the same.

If I rewrite everything to a .php file I get a blank page.
If I rewrite everything to a .html file it works as expected.
If I have the rewrite engine off, the PHP page displays.

First I thought it was a PHP bug, so I filled a bug report on the PHP
website :
http://bugs.php.net/bug.php?id=34846

I worked with a Zend developper and we find out that using the source
solves the issue.


.htaccess file :

RewriteEngine On
RewriteRule ^.*$ index.php [L]

index.php file :

jon


my apache configuration is very simple, I use a vhost :


ServerName karibou
DocumentRoot /home/jon/karibou/public_html

AllowOverride all
order allow,deny
allow from all




-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.26-grsec
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages apache2-mpm-prefork depends on:
ii  apache2-common 2.0.54-5  next generation, scalable, extenda
ii  libapr02.0.54-5  the Apache Portable Runtime
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libdb4.2   4.2.52-18 Berkeley v4.2 Database Libraries [
ii  libexpat1  1.95.8-3  XML parsing C library - runtime li
ii  libldap2   2.1.30-8  OpenLDAP libraries
ii  libpcre3   4.5-1.2sarge1 Perl 5 Compatible Regular Expressi
ii  libssl0.9.70.9.7e-3  SSL shared libraries
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 2.2.3-4

this works in 2.2.3 with Debian's php, closing the bug.
--- End Message ---


Processed (with 1 errors): forcibly merging 298689 325594, tagging 384682, tagging 305933

2007-06-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> forcemerge 298689 325594
Bug#298689: apache2: logrotate script and new init script break ssl 
certificates with passphrase
Bug#325594: apache2: Unable to restart after security upgrade
Mismatch - only Bugs in the same package can be forcibly merged:
Bug 325594 is not in the same package as 298689
> tags 384682 pending
Bug#384682: init.d restart fails if previous start failed
There were no tags set.
Tags added: pending

> tags 305933 pending
Bug#305933: move conf.d include in apache2.conf
Tags were: patch
Bug#368109: apache2-common: Move the Include /etc/apache2/conf.d/[^.#]* to the 
end
Bug#404558: apache2.conf has Include in wrong place
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 289289

2007-06-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> tags 289289 pending
Bug#289289: apache2-doc: needed /etc/init.d/apache2 restart to get the 
http://localhost/manual/ working
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: reassign 325594 to apache2.2-common, forcibly merging 298689 325594

2007-06-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> reassign 325594 apache2.2-common
Bug#325594: apache2: Unable to restart after security upgrade
Bug reassigned from package `apache2' to `apache2.2-common'.

> forcemerge 298689 325594
Bug#298689: apache2: logrotate script and new init script break ssl 
certificates with passphrase
Bug#325594: apache2: Unable to restart after security upgrade
Bug#301702: apache2 start failed during restart when logs rotated
Bug#314878: apache2-common: Do 'reload' instead of 'restart' in 
logrotate.d/apache2
Bug#334824: logrotate: Postrotate documentation - Why restart?
Bug#398223: apache2: "[notice] caught SIGTERM, shutting down"
Bug#400455: apache2.2-common: "/etc/init.d/apache2 restart" can kill apache
Bug#425248: apache2.2-common: apache2 may be killed by logrotate job
Bug#429516: apache2-common & logrotate : could reload be used instead of 
restart ?
Forcibly Merged 298689 301702 314878 325594 334824 398223 400455 425248 429516.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 420101, tagging 430116

2007-06-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> tags 420101 etch
Bug#420101: mod_dav fails to open the lock database because ownership of 
/var/lock/apache2 fails to set properly
There were no tags set.
Bug#423436: unsuitable file-permission/-ownership for DAV-lockfile
Tags added: etch

> tags 430116 etch
Bug#430116: apache2.2-common: /etc/init.d/apache2 start does nothing
There were no tags set.
Tags added: etch

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#376195: marked as done (mod_cache should update cache content when a request forces it to ignore the cache)

2007-06-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Jun 2007 15:30:47 +0200
with message-id <[EMAIL PROTECTED]>
and subject line mod_cache should update cache content when a request forces it 
to ignore the cache
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.0.54-5

Hello,

Apache should update the cache content when a request forces the cache
to be ignored.

A possible patch:

=
--- build-tree.orig/apache2/modules/experimental/mod_cache.c~   2005-04-11 
12:47:03.0 -0300
+++ build-tree/apache2/modules/experimental/mod_cache.c 2006-06-30 
14:45:09.0 -0300
@@ -121,6 +121,9 @@
 ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
  "cache: no-cache or authorization forbids caching "
  "of %s", url);
+   cache_remove_url(r, url);
+   ap_add_output_filter_handle(cache_save_filter_handle, NULL, r,
+   r->connection);
 return DECLINED;
 }
 }
=

This will remove the file from the cache and schedule recaching.

Thanks,

-- 
Gustavo Noronha Silva <[EMAIL PROTECTED]>
Ministério do Desenvolvimento Social e Combate à Fome


signature.asc
Description: Esta é uma parte de mensagem	assinada digitalmente
--- End Message ---
--- Begin Message ---
Version: 2.2.3-4

According to the changelog, this should be fixed in 2.2.x. Please 
reopen the bug report if it isn't.
--- End Message ---


Bug#385588: marked as done (apache2-mpm-worker *** glibc detected *** double free or corruption)

2007-06-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Jun 2007 15:34:02 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2-mpm-worker *** glibc detected *** double free or 
corruption
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-mpm-worker
Version: 2.0.55-4.1
Severity: normal


apache2 with apache2-mpm-worker dies often with :

*** glibc detected *** double free or corruption (!prev): 0x083af378 ***
[Fri Sep 01 13:54:19 2006] [notice] child pid 20732 exit signal Aborted (6)
*** glibc detected *** double free or corruption (!prev): 0x084355d0 ***
[Fri Sep 01 13:54:23 2006] [notice] child pid 23834 exit signal Aborted (6)


Installed modules:

ii  apache2   2.0.55-4.1next generation, 
scalable, extendable web server
ii  apache2-common2.0.55-4.1next generation, 
scalable, extendable web server
ii  apache2-mpm-worker2.0.55-4.1high speed threaded 
model for Apache2
ii  apache2-utils 2.0.55-4.1utility programs for 
webservers
ii  libapache2-mod-jk 1.2.18-1  Apache 2 connector for 
the Tomcat Java servlet engine


Configured modules:

[/etc/apache2/mods-enabled] > ls -la
drwxr-xr-x 2 root root 4096 2006-06-22 18:25 .
drwxr-xr-x 8 root root 4096 2006-09-01 13:02 ..
lrwxrwxrwx 1 root root   37 2006-06-22 15:37 cgid.conf -> 
/etc/apache2/mods-available/cgid.conf
lrwxrwxrwx 1 root root   37 2006-06-22 15:37 cgid.load -> 
/etc/apache2/mods-available/cgid.load
lrwxrwxrwx 1 root root   25 2006-06-22 18:08 jk.conf -> 
../mods-available/jk.conf
lrwxrwxrwx 1 root root   25 2006-06-22 15:04 jk.load -> 
../mods-available/jk.load

The Apache2 serves only 2 servlets running inside tomcat5. No other
content


Ruben


-- 
Ruben Puettmann
[EMAIL PROTECTED]
http://www.puettmann.net


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
This bug is neither reproducible nor fixable without more information, 
thus closing the bug report. Feel free to reopen it if it appears in 
2.2.x
--- End Message ---


Bug#397446: marked as done (apache2 force-reload should not start apache if it was not previously running)

2007-06-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Jun 2007 15:36:58 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2 force-reload should not start apache if it was not 
previously running
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2.2-common
Version: 2.2.3-3

Currently

/etc/init.d/apache2 force-reload

restart apache even if it was not running.
It should have the same behaviour as 'reload'.
see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=316321

The trivial patch is a copy of the bug 216321 solution.

I'm using Debian GNU/Linux unstable i386

thanks,
geo

--
Georges Da Costa  Computer Science Department
http://cs.dixsous.org/University of Cyprus  
Tel : +357 99 284 360 P.O.Box 20537 CY1678
 Nicosia - Cyprus


uu
Description: Binary data
--- End Message ---
--- Begin Message ---
Version: 2.2.3-5

This was fixed in 2.2.3-5
--- End Message ---


Bug#421901: marked as done (apache2 ignores +includes directive if it is first on options line)

2007-06-22 Thread Debian Bug Tracking System
Your message dated Fri, 22 Jun 2007 17:41:07 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2 ignores +includes directive if it is first on options 
line
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-4


On an apache2 directory configuration the following does not work any more:-


Options +Includes Indexes FollowSymLinks MultiViews 
AddOutputFilter INCLUDES .shtml
AllowOverride None
Order allow,deny
allow from all
DirectoryIndex index.shtml


This use to work on sarge and stopped after i switched to sid.

results are in /var/log/apache2/error.log :-

[Wed May 02 11:54:58 2007] [warn] [client 192.168.0.154] mod_include: Options 
+Includes (or IncludesNoExec) wasn't set, INCLUD
ES filter removed

And SSI directives were not processed.

A simple workaround seems to be to do the following :-

Options  Indexes FollowSymLinks MultiViews +Includes

if +Includes is the first line item on the options line it was not processed 
but moving it seems to fix the problem.

Couldn't see this bug in the apache2 bugs list so though i better send it in.

Best regards

Robin


-- 
Dr Robin Cornelius
Design Engineer
Hirst Magnetic Instruments Ltd
(UK Magnetics Society management committee member)

Tel: +44 (0) 1326 372734  www.hirst-magnetics.com
Fax: +44 (0) 1326 378069  www.gaussmeter.co.uk

Tesla House, Tregoniggie Industrial Estate
Falmouth, Cornwall, TR11 4SN, U.K.

Reg No: 1564814 England
VAT Registered: GB730 0277 74 


--- End Message ---
--- Begin Message ---
This is the intended (or at least documented) behaviour. Therefore 
closing the bug.
--- End Message ---


Processed: tagging 419539, tagging 418536

2007-06-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> tags 419539 pending
Bug#419539: options error in Apache config file
There were no tags set.
Tags added: pending

> tags 418536 pending
Bug#418536: apache2 can't be removed if stoppped
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: reassign 338472 to apache2.2-common, reassign 424536 to apache2.2-common ...

2007-06-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> reassign 338472 apache2.2-common
Bug#338472: apache2: Move /server-info and /server-status conf to mods-available
Bug reassigned from package `apache2' to `apache2.2-common'.

> reassign 424536 apache2.2-common
Bug#424536: apache2.2-common: modules configurations should be carried from 
apache2.conf into corresponding mods-available/ .conf files
Bug reassigned from package `apache2.2-common' to `apache2.2-common'.

> forcemerge 338472 424536
Bug#338472: apache2: Move /server-info and /server-status conf to mods-available
Bug#424536: apache2.2-common: modules configurations should be carried from 
apache2.conf into corresponding mods-available/ .conf files
Forcibly Merged 338472 424536.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: retitle 375369 to apache doesn't clean up remains of session cache when starting

2007-06-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> retitle 375369 apache doesn't clean up remains of session cache when starting
Bug#375369: apache2-mpm-prefork: consumes all available CPU on start after a 
crash
Changed Bug title to `apache doesn't clean up remains of session cache when 
starting' from `apache2-mpm-prefork: consumes all available CPU on start after 
a crash'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: reassign 408429 to apache2-doc, forcibly merging 350822 408429, tagging 350822, tagging 399056

2007-06-23 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> reassign 408429 apache2-doc
Bug#408429: apache2-doc: say how to browse manual
Bug reassigned from package `apache2-doc' to `apache2-doc'.

> forcemerge 350822 408429
Bug#350822: apache2-doc: add Readme on how to browse the docs
Bug#408429: apache2-doc: say how to browse manual
Forcibly Merged 350822 408429.

> tags 350822 pending
Bug#350822: apache2-doc: add Readme on how to browse the docs
There were no tags set.
Bug#408429: apache2-doc: say how to browse manual
Tags added: pending

> tags 399056 pending
Bug#399056: apache2 could suggest apache2-doc and www-browser as apache2-common 
did
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#286941: marked as done (support OpenSSL ENGINE)

2007-06-23 Thread Debian Bug Tracking System
Your message dated Sat, 23 Jun 2007 14:09:41 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2: enable OpenSSL engine support
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2
Version: 2.0.52-3
Severity: minor

I want to use apache with external crypto devices.(SSL accelerator card)
To enable openssl engine stuff,
   please add "--enable-rule=SSL_EXPERIMENTAL" to AP2_COMMON_CONFARGS


Tetsuhiro Nakane

--- End Message ---
--- Begin Message ---
Version: 2.2.3-1

This is enabled by default in 2.2.x. Closing the bug.
--- End Message ---


Bug#329105: marked as done (apache2: enable OpenSSL engine support)

2007-06-23 Thread Debian Bug Tracking System
Your message dated Sat, 23 Jun 2007 14:09:41 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2: enable OpenSSL engine support
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.0.54-5
Severity: wishlist

Hi,
please consider compiling Apache with -DSSL_EXPERIMENTAL_ENGINE
so that OpenSSL engine support ist available via the SSLCryptoDevice
directive.

Thanks,
  Jörg

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.12-1-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8

Versions of packages apache2 depends on:
ii  apache2-mpm-worker2.0.54-5   high speed threaded model for Apac

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 2.2.3-1

This is enabled by default in 2.2.x. Closing the bug.
--- End Message ---


Bug#281147: marked as done (apache2: ProxyPassReverse doesn't change cookie paths)

2007-06-23 Thread Debian Bug Tracking System
Your message dated Sat, 23 Jun 2007 20:48:38 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2: ProxyPassReverse doesn't change cookie paths
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Severity: wishlist

Hi,
i think it would be very usefull to add the patch provided at
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10722
to the apache2 package for provding cookie support to a reverse proxy
based on apache2.

Thanx in advance,
Uli


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-3um
Locale: LANG=C, [EMAIL PROTECTED]

--- End Message ---
--- Begin Message ---
Version: 2.2.3-1

This is now included in Apache 2.2
--- End Message ---


Bug#423638: marked as done (apache2.2-common: a2enmod uses relative path instead of absolute)

2007-06-23 Thread Debian Bug Tracking System
Your message dated Sat, 23 Jun 2007 21:08:03 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2.2-common: a2enmod uses relative path instead of 
absolute
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: Minor

The shell script `a2enmod` uses a relative path instead of an absolute
path when enabling modules. This is minor security concern as it could
cause any potential problems whilst running Apache by allowing path
traversal.

The following patch to fix the problem is included:

--- a2enmod 2007-05-13 10:46:21.0 -0400
+++ a2enmod.new 2007-05-13 10:46:42.0 -0400
@@ -43,7 +43,7 @@
 for i in conf load; do
 if [ -e $SYSCONFDIR/mods-available/$MODNAME.$i -a ! -e
$SYSCONFDIR/mods-enabled/$MODNAME.$i ]; then
 cd $SYSCONFDIR/mods-enabled;
-ln -sf ../mods-available/$MODNAME.$i $MODNAME.$i;
+ln -sf $SYSCONFDIR/mods-available/$MODNAME.$i $MODNAME.$i;
 fi
 done

As I said, this is a minor issue and probably trivial but I'm rather
uncomfortable with the fact that it uses a relative path rather than an
absolute one like a2ensite.

--- End Message ---
--- Begin Message ---
I agree that this is a purely aesthetic issue. There might even be 
reasons to use relative paths in the links (like running several 
apache instances with the config dir copied). Therefore, we will not 
change this.


pgpADj1Mj53C6.pgp
Description: PGP signature
--- End Message ---


Bug#376707: marked as done (/usr/sbin/ab: ApacheBench gives segmentation fault on SSL websites with concurrency 2 or higher)

2007-06-23 Thread Debian Bug Tracking System
Your message dated Sat, 23 Jun 2007 21:23:37 +0200
with message-id <[EMAIL PROTECTED]>
and subject line /usr/sbin/ab: ApacheBench gives segmentation fault on SSL 
websites with concurrency 2 or higher
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-utils
Version: 2.0.55-4
Severity: normal
File: /usr/sbin/ab


When running ApacheBench against a secure website and a concurrency of 2
or higher, it crashes with a segmentation fault:

  % env - /usr/sbin/ab -c 2 -s https://www.amazon.com/
  This is ApacheBench, Version 2.0.41-dev <$Revision: 1.141 $> apache-2.0
  Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd,
  http://www.zeustech.net/
  Copyright (c) 1998-2002 The Apache Software Foundation,
  http://www.apache.org/

  Benchmarking www.amazon.com (be patient)...Segmentation fault

Running it with "-c 1" works, but that is not half as useful...

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686-smp
Locale: LANG=en_GB.ISO-8859-15, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages apache2-utils depends on:
ii  libapr0   2.0.55-4   the Apache Portable Runtime
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libdb4.3  4.3.29-4.1 Berkeley v4.3 Database Libraries [
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
ii  libldap2  2.1.30-13  OpenLDAP libraries
ii  libpcre3  6.4-1.1Perl 5 Compatible Regular Expressi
ii  libssl0.9.8   0.9.8a-7   SSL shared libraries
ii  zlib1g1:1.2.3-11 compression library - runtime

apache2-utils recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 2.2.3-4

This seems to be fixed in 2.2.x . Feel free to reopen the bug report 
if you encounter the problem again.
--- End Message ---


Processed: bug 294648 is forwarded to http://issues.apache.org/bugzilla/show_bug.cgi?id=14090

2007-06-23 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> forwarded 294648 http://issues.apache.org/bugzilla/show_bug.cgi?id=14090
Bug#294648: apache2 virtual domain ErrorLog directive not working?
Noted your statement that Bug has been forwarded to 
http://issues.apache.org/bugzilla/show_bug.cgi?id=14090.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#306415: marked as done (apache2-common: Please use relative links in /etc/apache2/mods-enabled)

2007-06-23 Thread Debian Bug Tracking System
Your message dated Sat, 23 Jun 2007 21:03:44 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2-common: Please use relative links in 
/etc/apache2/mods-enabled
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.0.53-5
Severity: wishlist

Hi.

In my HA setup, having absolute links in /etc/apache2/mods-enabled is a
bit disturbing. Please consider using relative links for 
actions.load cgi.load userdir.conf userdir.load
Like they are used for the other mods, too.

regards,
Sven

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (400, 'experimental'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.7-incase
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


--- End Message ---
--- Begin Message ---
Version: 2.2.3-1

As far as I can see, this is done in the 2.2.x packages.
--- End Message ---


Processed: tagging 350286

2007-06-23 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> tags 350286 pending
Bug#350286: apache2-common: why is the apache2 pid file not in /var/run/apache2?
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: reassign 408462 to apache2.2-common, forcibly merging 374667 408462, forcibly merging 418499 430116 ...

2007-06-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> reassign 408462 apache2.2-common
Bug#408462: /etc/default/apache2 NO_START option
Bug reassigned from package `apache2' to `apache2.2-common'.

> forcemerge 374667 408462
Bug#374667: apache2-common: /etc/default/apache2 uses double negation
Bug#408462: /etc/default/apache2 NO_START option
Forcibly Merged 374667 408462.

> forcemerge 418499 430116
Bug#418499: apache2ctl does not work if NO_START=1 is set
Bug#430116: apache2.2-common: /etc/init.d/apache2 start does nothing
Forcibly Merged 418499 430116.

> tags 418499 etch
Bug#418499: apache2ctl does not work if NO_START=1 is set
Tags were: etch
Bug#430116: apache2.2-common: /etc/init.d/apache2 start does nothing
Tags added: etch

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 418499, retitle 418499 to apache2ctl does not work if NO_START=1 is set

2007-06-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> tags 418499 - moreinfo unreproducible
Bug#418499: Bug in installation of apache2
Tags were: unreproducible moreinfo
Tags removed: moreinfo, unreproducible

> retitle 418499 apache2ctl does not work if NO_START=1 is set
Bug#418499: Bug in installation of apache2
Changed Bug title to `apache2ctl does not work if NO_START=1 is set' from `Bug 
in installation of apache2'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#384887: marked as done (init script stop action warns about running apache2 processes when there are none)

2007-06-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Jun 2007 22:29:22 +0200
with message-id <[EMAIL PROTECTED]>
and subject line init script stop action warns about running apache2 processes 
when there are none
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.2.3-1~exp.r170
Severity: minor

The init script stop action warns about running apache2 processes when
there are none. This only seem to happen when upon start apache2
complains about configuration errors (see debian bug #384882, #384883):

[EMAIL PROTECTED]:~ -> /etc/init.d/apache2 stop
Stopping web server (apache2)... ... failed!
You may still have some apache2 processes running.  There are
processes named 'apache2' which do not match your pid file,
and in the name of safety, we've left them alone.  Please review
the situation by hand.
 failed!
[EMAIL PROTECTED]:~ -> ps aux | grep apache
root  3096  0.0  0.1   3916   788 pts/1S+   17:28   0:00 grep apache

Well otherwise its up and running (without PHP and Ruby atm) ;-)

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-ck1-tp23-sws2-2.2.7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork 2.2.3-1~exp.r170 Traditional model for Apache HTTPD

apache2 recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 2.2.3-3

I cannot reproduce this bug anymore. Looking at the svn changelog, 
this was likely fixed in 2.2.3-3. Feel free to reopen it if you 
encounter it again.
--- End Message ---


Bug#286879: marked as done (apache2 not starting)

2007-06-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Jun 2007 22:22:30 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2 not starting
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-mpm-prefork
Version: 2.0.52-3

Hi. 
If you're doing a 'apt-get update' && 'apt-get upgrade' you 'll be able to get 
the following error while installing/upgrading: 
The upgrade-process will hang until you're terminating it manually - at 
package apache2-mpm-prefork. Even while manually starting the server you 
won't be able to get it working or stuff. 
Greetings, 
Sandra

--- End Message ---
--- Begin Message ---
This bug is likely fixed in the current package, closing the report.
--- End Message ---


Processed: tagging 391817

2007-06-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> tags 391817 pending
Bug#391817: apache2-mpm-prefork: /usr/sbin/apache2 -h doesn't list the -X option
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#349708: marked as done (apache2-common: apache2ctl startssl not documented in man page)

2007-06-25 Thread Debian Bug Tracking System
Your message dated Tue, 26 Jun 2007 00:28:52 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2ctl startssl not documented in man page
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Severity: minor

Hi,

the command apache2ctl startssl, as used by the init script, is not
documented in the apache2ctl man page.

Greetings
Marc

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-zgsrv
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

--- End Message ---
--- Begin Message ---
Version: 2.2.3-1

The startssl option has been removed in 2.2.x, so there is no longer 
any need to document it. Closing the bug.
--- End Message ---


Bug#293377: marked as done (apache2: apache2ctl - option 'startssl' is undocumented)

2007-06-25 Thread Debian Bug Tracking System
Your message dated Tue, 26 Jun 2007 00:28:52 +0200
with message-id <[EMAIL PROTECTED]>
and subject line apache2ctl startssl not documented in man page
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.0.52-3
Severity: normal


The manua page of apache2ctl reads:

  OPTIONS
start ...
stop ...
restart ...
fullstatus ...
status ...
graceful ...
configtest ...
help ...

The help option reports:

  # apache2ctl -h
  Usage: /usr/sbin/apache2 [-D name] [-d directory] [-f file]
 [-C "directive"] [-c "directive"]
 [-k start|restart|graceful|stop]
 [-v] [-V] [-h] [-l] [-L] [-t] [-S]

but following commands are not documented although they appear in
apache2ctl shell script:

startssl|sslstart|start-SSL)
$HTTPD -k start -DSSL
ERROR=$?
;;

Please document both to manual page and output of "help" and "-h".

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US)

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.0.52-3   Traditional model for Apache2

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 2.2.3-1

The startssl option has been removed in 2.2.x, so there is no longer 
any need to document it. Closing the bug.
--- End Message ---


Bug#389607: marked as done (Apache2(-mpm-worker) segfaults on startup (with mod_perl))

2007-06-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Jun 2007 23:38:03 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#389607: Can't reproduce this bug
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2-mpm-worker
Version: 2.0.55.4-1

Hello!

The threaded version of Apache2 (mpm-worker) seems to have problems  
with mod_perl/perl. Here's a backtrace of starting Apache2. After  
removing the -mpm-worker package and installing the corresponding - 
mpm-prefork package (leaving perl packages as they are), Apache  
starts up without segfaulting.



Perl Version: 5.8.8-6.1


Backtrace:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1215158592 (LWP 12898)]
0xb75ab7d5 in PerlIOEncode_getarg () from /usr/lib/perl/5.8/auto/ 
PerlIO/encoding/encoding.so

(gdb) bt
#0  0xb75ab7d5 in PerlIOEncode_getarg () from /usr/lib/perl/5.8/auto/ 
PerlIO/encoding/encoding.so

#1  0xb78af388 in PerlIOBase_dup () from /usr/lib/libperl.so.5.8
#2  0xb75a92a1 in PerlIOEncode_dup () from /usr/lib/perl/5.8/auto/ 
PerlIO/encoding/encoding.so

#3  0xb78b0c0f in PerlIO_fdupopen () from /usr/lib/libperl.so.5.8
#4  0xb7849b40 in Perl_fp_dup () from /usr/lib/libperl.so.5.8
#5  0xb78b0b75 in PerlIO_clone () from /usr/lib/libperl.so.5.8
#6  0xb78508e3 in perl_clone () from /usr/lib/libperl.so.5.8
#7  0xb78e8550 in modperl_interp_new () from /usr/lib/apache2/modules/ 
mod_perl.so
#8  0xb78e87a7 in modperl_interp_pool_destroy () from /usr/lib/ 
apache2/modules/mod_perl.so
#9  0xb78e9340 in modperl_tipool_init () from /usr/lib/apache2/ 
modules/mod_perl.so
#10 0xb78e798f in modperl_hook_pre_config () from /usr/lib/apache2/ 
modules/mod_perl.so

#11 0x0807a11e in ap_run_post_config ()
#12 0x0807fbe2 in main ()



Thanks,
Thomas


--- End Message ---
--- Begin Message ---
Version: 2.2.3-4

> I can't reproduce this problem anymore. Seems like the bug has gone
> in one of the latest versions.

Thanks for informing us. I will mark this as fixed in the current 
version in etch.


signature.asc
Description: This is a digitally signed message part.
--- End Message ---


Processed: tagging 414429

2007-06-26 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> tags 414429 pending
Bug#414429: apache2-doc: say how to read the manual but fix charset first
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: severity of 431048 is important, tagging 431048

2007-06-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> severity 431048 important
Bug#431048: suexec permissions are DANGEROUS
Severity set to `important' from `normal'

> tags 431048 security etch
Bug#431048: suexec permissions are DANGEROUS
There were no tags set.
Tags added: security, etch

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: unmerging 430116, tagging 430116, tagging 418499

2007-06-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> unmerge 430116
Bug#430116: apache2.2-common: /etc/init.d/apache2 start does nothing
Bug#418499: apache2ctl does not work if NO_START=1 is set
Disconnected #430116 from all other report(s).

> tags 430116 pending
Bug#430116: apache2.2-common: /etc/init.d/apache2 start does nothing
Tags were: etch
Tags added: pending

> tags 418499 - etch
Bug#418499: apache2ctl does not work if NO_START=1 is set
Tags were: etch
Tags removed: etch

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 431048

2007-06-29 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.4
> tags 431048 pending
Bug#431048: suexec permissions are DANGEROUS
Tags were: etch security
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#404558: marked as done (apache2.conf has Include in wrong place)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#305933: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3.2
Severity: minor
Tags: patch

The Include lines (e.g. "Include /etc/apache2/conf.d/") in apache2.conf
appear above several configuration items such as ServerTokens and
ServerSignature.  This prevents local configuration files from being
used to override those values except by abusing the sites-enabled
directory.  The only other option is to modify apache2.conf except this
spoils the whole mechanism of keeping local changes separate.

The best (and trivial) solution would be to move the non-module Include
lines to the bottom of apache2.conf.

Thanks.

-- 
William Ono <[EMAIL PROTECTED]>
--- apache2.conf.orig   2006-11-10 18:50:57.0 -0800
+++ apache2.conf2006-12-26 03:01:55.795996750 -0800
@@ -185,15 +185,6 @@
 Include /etc/apache2/mods-enabled/*.load
 Include /etc/apache2/mods-enabled/*.conf
 
-# Include all the user configurations:
-Include /etc/apache2/httpd.conf
-
-# Include ports listing
-Include /etc/apache2/ports.conf
-
-# Include generic snippets of statements
-Include /etc/apache2/conf.d/
-
 #
 # The following directives define some format nicknames for use with
 # a CustomLog directive (see below).
@@ -664,5 +655,14 @@
 #
 #
 
+# Include all the user configurations:
+Include /etc/apache2/httpd.conf
+
+# Include ports listing
+Include /etc/apache2/ports.conf
+
+# Include generic snippets of statements
+Include /etc/apache2/conf.d/
+
 # Include the virtual host configurations:
 Include /etc/apache2/sites-enabled/
--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apach

Bug#350286: marked as done (apache2-common: why is the apache2 pid file not in /var/run/apache2?)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#350286: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Severity: wishlist

Hi,

why is apache2 configured to write its pid to /var/run/apache2.pid
instead of /var/run/apache2/apache2.pid? Is that an oversight in
packaging or am I missing something?

Greetings
Marc

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15.1-zgsrv
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 289289 291841 298689 305933 350286 350822 384682 391817 399056 410331 
412580 414429 415698 418536 419539 427050 428887 430116 431048 431125
Changes: 
 apache2 (2.2.4-1) unstable; urgency=medium
 .
   [ Stefan Fritsch ]
   * Urgency medium for security fix
   * Fix CVE-2007-1863: DoS in mod_cache
   * New upstream version (Closes: #427050)
 - Fixes "proxy: error reading status line from remote server"
   (Closes: #410331)
   * Fix CVE-2007-1862: mod_mem_cache DoS (introduced in 2.2.4)
   * Change logrotate script to use reload instead of restart.
 (Closes: #298689)
   * chmod o-rx /var/log/apache2 (Closes: #291841)
   * chmo

Bug#301702: marked as done (apache2 start failed during restart when logs rotated)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2
Version: 2.0.53-5

apache stopped then started from logrotate postrotate script:
/etc/init.d/apache2 restart

When starting it can't bind to port 80 because "Address in use". It 
doesn't any errors to logs because no error.log exists (it's rotated you 
remember?).


So we and up with apache silently falling each week.

I suggest to use reload rather then restart for postrotate script.

I am using Debian GNU/Linux 3.1, custom kernel 2.4.26-1-686 and stock 
libc6 2.3.2.ds1-16.



--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 289289 291841 298689 305933 350286 350822 384682 391817 399056 410331 
412580 414429 415698 418536 419539 427050 428887 430116 431048 431125
Changes: 
 apache2 (2.2.4-1) unstable; urgency=medium
 .
   [ Stefan Fritsch ]
   * Urgency medium for security fix
   * Fix CVE-2007-1863: DoS in mod_cache
   * New upstream version (Closes: #427050)
 - Fixes "proxy: error reading status line from remote server"
   (Closes: #410331)
   * Fix CVE-2007-1862: mod_mem_cache DoS (introduced in 2.2.4)
   * Change logrotate script to use reload instead of restart.
 (Closes: #298689)
   * chmod o-rx /var/log/apache2 (Closes: #291841)
   * chm

Bug#412580: marked as done (Apache reporting incorrect header values for error 500 documents)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#412580: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3.3
Severity: important

The version of Apache which ships with Etch sends back the document
specified in the ErrorDocument directive with a Content-length header of
0 and a Content-type header with a value other than text/html, which
causes the browser to either display an empty document or offer to
download the (empty) document to the file system on the client machine.
 Apache on earlier versions of Debian did not exhibit this behavior,
though I'm not sure when it was introduced (hadn't used Debian for a
while, and I'm in the process of building a new Debian server).

This bug prevents the server from informing the user what went wrong and
whom to contact when a script fails unexpectedly.

This is probably related to Apache bug 39710
(http://issues.apache.org/bugzilla/show_bug.cgi?id=39710).

To reproduce:

1. Install the following script as barf.py in the /cgi-bin directory:

#!/usr/bin/python
raise Exception("barfing")

2. Make sure the ErrorDocument 500 directive points to a real document.

3. Invoke the URL for the script:

$ curl -i http://localhost/cgi-bin/barf.py
HTTP/1.1 500 Internal Server Error
Date: Mon, 26 Feb 2007 21:16:17 GMT
Server: Apache/2.2.3 (Debian)
Content-Length: 0
Connection: close
Content-Type: text/x-python

On all my other servers, Content-length is non-zero and Content-type is
text/html.

-- 
Bob Kline
http://www.rksystems.com
mailto:[EMAIL PROTECTED]

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded 

Bug#418536: marked as done (apache2 can't be removed if stoppped)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#418536: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: apache2.2-common
Version: 2.2.3-4


Trying to remove apache2-mpm-worker with the server stopped does not work:

Desinstalando apache2-mpm-worker ...
Stopping web server (apache2)... failed!
invoke-rc.d: initscript apache2, action "stop" failed.
dpkg: error al procesar apache2-mpm-worker (--remove):
 el subproceso pre-removal script devolvió el código de salida de error 1
Se encontraron errores al procesar:
 apache2-mpm-worker
E: Sub-process /usr/bin/dpkg returned an error code (1)

That forced me to start the server, because I needed it removed anyway.

Solutions: either allow /etc/init.d/apache2 (package apache2.2-common) 
to success if there is no apache2 process to stop, or modify pre-removal 
script (package apache2-mpm-worker) to work if server is not running. I 
think the last would must be done in more packages, like the prefork one.


BTW, congratulations for etch's release :)

Noel Torres
er Envite

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 289289 291841 298689 305933 350286 350822 384682 391817 399056 410331 
412580 414429 415698 418536 419539 427050 428887 430116 431048 431125
Changes: 
 apache2 (2.2.4-1) unstable; urgency=medium
 .
   [ Stefan Fritsch ]
   * Urgency med

Bug#431048: marked as done (suexec permissions are DANGEROUS)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#431048: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4

Excuse me for being a little irate here but unless I'm being rather
stupid this morning, and I have asked for a second opinion, the default
permissions for suexec are not only wrong but very DANGEROUS. Andreas
Fuchs warned about this in the last message of #395828 but this message
was seemingly ignored. The permissions that were given on my new
amd64 Etch installation were...

-rwsr-xr-x 1 root root 12472 2007-03-27 14:03 /usr/lib/apache2/suexec

This allows ANYONE to run suexec as root. I can't believe this has
slipped through. As the Apache docs very clearly state over at
http://httpd.apache.org/docs/2.2/suexec.html, they should be set with...

chgrp www-data /usr/lib/apache2/suexec
chmod 4750 /usr/lib/apache2/suexec

Which would result in...

-rwsr-x--- 1 root www-data 12472 2007-03-27 14:03 /usr/lib/apache2/suexec

Now only www-data can run suexec as root. PLEASE fix this immediately.

Regards,
James

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 289289 291841 298689 305933 350286 350822 384682 391817 399056 410331 
412580 414429 415698 418536 419539 427050 428887 430116 431048 431125
Changes: 
 apache2 (2.2.4-1) unstable; urgency=medium
 .
   [ S

Bug#314878: marked as done (apache2-common: Do 'reload' instead of 'restart' in logrotate.d/apache2)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Severity: important
Version: 2.0.54-4

In /etc/logrotate.d/apache2, `/etc/init.d/apache2 restart` is
invoked to rotate Apache2 logs. `/etc/init.d/apachw2 restart`
stops and starts Apache2, not reloads.

There are 2 problems in this situation:

   1. Web service by Apache2 is stopped in a short time.
   2. Web service by Apache2 is NOT started if
  Apache2 configuration is broken.

Use `/etc/init.d/apache2 reload` in this situation.

-- 
-- Name: SATOH Fumiyasu  -- Home: http://www.sfo.jp (in Japanese only)
-- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ...

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 289289 291841 298689 305933 350286 350822 384682 391817 399056 410331 
412580 414429 415698 418536 419539 427050 428887 430116 431048 431125
Changes: 
 apache2 (2.2.4-1) unstable; urgency=medium
 .
   [ Stefan Fritsch ]
   * Urgency medium for security fix
   * Fix CVE-2007-1863: DoS in mod_cache
   * New upstream version (Closes: #427050)
 - Fixes "proxy: error reading status line from remote server"
   (Closes: #410331)
   * Fix CVE-2007-1862: mod_mem_cache DoS (introduced in 2.2.4)
   * Change logrotate script to use reload instead of restart.
 

Bug#325594: marked as done (apache2: Unable to restart after security upgrade)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2
Version: 2.0.54-4
Severity: normal

Hi,

After I installed this security upgrade, Apache2 couldn't restart anymore.

Setting up libapache2-mod-php4 (4.3.10-16) ...
Forcing reload of web server: Apache2(98)Address already in use: make_sock: 
could not bind to address [::]:443
no listening sockets available, shutting down
Unable to open logs
invoke-rc.d: initscript apache2, action "force-reload" failed.

# invoke-rc.d apache2 start
Starting web server: Apache2(98)Address already in use: make_sock: could not 
bind to address [::]:443
no listening sockets available, shutting down
Unable to open logs
invoke-rc.d: initscript apache2, action "start" failed.
# 

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-686-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork   2.0.54-4   traditional model for Apache2

apache2 recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendable web server
Closes: 289289

Bug#429516: marked as done (apache2-common & logrotate : could reload be used instead of restart ?)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-commonVersion: 2.0.54-5sarge1Package: apache2.2-commonVersion: 
2.2.3-4In the logrotate config file for Apache (/etc/logrotate.d/apache2), the 
"restart" command is used to tell Apache to use the new logfiles after they 
have been rotated. This is kind of harsh since it's a full stop & start of the 
server. It also causes problems for people using SSL certificates for which the 
key is encrypted, and thus needs a passphrase to be typed in everytime Apache 
starts.Here's the relevant part of /etc/logrotate.d/apache2 :postrotate 
   if [ -f /var/run/apache2.pid ]; then
/etc/init.d/apache2 restart > /dev/nullfi endscriptMay 
I suggest that "restart" be changed for "reload", which has the same effect 
regarding logfile rotation, does not require the passphrase to be re-entered, 
and is less harsh overall.postrotateif [ -f 
/var/run/apache2.pid ]; then/etc/init.d/apache2 reload 
> /dev/nullfiendscript
I am using Debian 3.1 (sarge) with Apache2 and also Debian 4.0 (etch) with 
Apache 2.2.Thank you.
_
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 

Bug#391817: marked as done (apache2-mpm-prefork: /usr/sbin/apache2 -h doesn't list the -X option)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#391817: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Subject: apache2-mpm-prefork: /usr/sbin/apache2 -h doesn't list the -X option
Package: apache2-mpm-prefork
Version: 2.2.3-2
Severity: minor

*** Please type your report below this line ***

/usr/sbin/apache2 understands the -X option, but it isn't listed with
/usr/sbin/apache2 -h

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.33.2-1-dphys-k8-smp-64gb
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages apache2-mpm-prefork depends on:
ii  apache2. 2.2.3-2 Next generation, scalable, extenda
ii  libapr1  1.2.7-6 The Apache Portable Runtime Librar
ii  libaprut 1.2.7+dfsg-2The Apache Portable Runtime Utilit
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries
ii  libdb4.3 4.3.29-6Berkeley v4.3 Database Libraries [
ii  libdb4.4 4.4.20-8Berkeley v4.4 Database Libraries [
ii  libexpat 1.95.8-3.3  XML parsing C library - runtime li
ii  libldap2 2.1.30-13+b1OpenLDAP libraries
ii  libpcre3 6.7-1   Perl 5 Compatible Regular Expressi
ii  libpq4   8.1.4-7 PostgreSQL C client library
ii  libsqlit 3.3.7-1 SQLite 3 shared library
ii  libuuid1 1.39+1.40-WIP-2006.10.02+dfsg-1 universally unique id library

apache2-mpm-prefork recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild 

Bug#415698: marked as done (apache2.2-common: does not create /usr/lib/cgi-bin common anymore.)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#415698: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3.3
Severity: important

A default installation of apache2 on etch (apt-get install apache2),
does not create the cgi-bin directory /usr/lib/cgi-bin.
As former apache2-common packages shipped this directory I'm filing the
bug against apache2.2-common.

Michael

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.21-rc4
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-3.3  utility programs for webservers
ii  libmagic1 4.20-1 File type determination library us
ii  lsb-base  3.1-23.1   Linux Standard Base 3.1 init scrip
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit
ii  procps1:3.2.7-3  /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers 
Changed-By: Stefan Fritsch <[EMAIL PROTECTED]>
Description: 
 apache2- Next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-event - Event driven model for Apache HTTPD
 apache2-mpm-perchild - Transitional package - please remove
 apache2-mpm-prefork - Traditional model for Apache HTTPD
 apache2-mpm-worker - High speed threaded model for Apache HTTPD
 apache2-prefork-dev - development headers for apache2
 apache2-src - Apache source code
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 apache2.2-common - Next generation, scalable, extendabl

Bug#400455: marked as done (apache2.2-common: "/etc/init.d/apache2 restart" can kill apache)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-3.1
Severity: normal

*** Please type your report below this line ***

Today logrotate killed my apache. The last lines in error.log.1 are:

[Sun Nov 26 06:25:25 2006] [warn] child process 6244 still did not exit, 
sending a SIGTERM
[Sun Nov 26 06:25:27 2006] [warn] child process 6244 still did not exit, 
sending a SIGTERM
[Sun Nov 26 06:25:29 2006] [warn] child process 6244 still did not exit, 
sending a SIGTERM
[Sun Nov 26 06:25:31 2006] [error] child process 6244 still did not exit, 
sending a SIGKILL
[Sun Nov 26 06:25:32 2006] [notice] caught SIGTERM, shutting down

Apache did not come up again with a new error.log file. I could not reproduce
the problem because I don't know how I can force the apache children to not
exit on SIGTERM. Logrotate uses "/etc/init.d/apache2 restart" to restart
apache, perhaps the "sleep 10" delay in the initscript is too short in this
case. Why doesn't the initscript use "apache2ctl restart"? Perhaps logrotate
could be changed to use "/etc/init.d/apache2 reload", or the restart part of
the initscript could be made more reliable.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-amd64
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages apache2.2-common depends on:
ii  apache2-utils 2.2.3-3.1  utility programs for webservers
ii  libmagic1 4.17-4 File type determination library us
ii  lsb-base  3.1-15 Linux Standard Base 3.1 init scrip
ii  mime-support  3.37-1 MIME files 'mime.types' & 'mailcap
ii  net-tools 1.60-17The NET-3 networking toolkit

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source

Bug#425248: marked as done (apache2.2-common: apache2 may be killed by logrotate job)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2007 19:02:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#298689: fixed in apache2 2.2.4-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2.2-common
Version: 2.2.3-4
Severity: normal

There are two differents problems, in /etc/init.d/apache2 restart 
function you use sleep 10 between start and stop, but 10 seconds is not 
enough in the case where some childs cannot be killed easily. So it tries 
to stop the server, and tries to start it before it is stopped so it is 
not able to start the server. This is not very important if no script are 
calling restart.

But /etc/logrotate.d/apache2 does. A good idea should be to use reload 
instead of restart. In the first case you may kill legitimate process and 
you do at least ten seconds of service outage (or more if the server 
doesn't restart...) which may be very bad on high availability services, 
in the second case you may loose some lines of logs and it's all.

(needless to say that this happened to me several times)

It may be an easy DOS attack, you just have to overload an apache server 
at 6:25 AM, with the overload it is going to take more than 10 seconds to 
stop and it will not restart, enjoy !

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.21.1-grsec
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages apache2.2-common depends on:
ii  apache2-utils2.2.3-4 utility programs for webservers
ii  libmagic14.17-5etch1 File type determination library us
ii  lsb-base 3.1-23.1Linux Standard Base 3.1 init scrip
ii  mime-support 3.39-1  MIME files 'mime.types' & 'mailcap
ii  net-tools1.60-17 The NET-3 networking toolkit
ii  procps   1:3.2.7-3   /proc file system utilities

apache2.2-common recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.2.4-1

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive:

apache2-doc_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.2.4-1_all.deb
apache2-mpm-event_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-event_2.2.4-1_i386.deb
apache2-mpm-perchild_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.2.4-1_all.deb
apache2-mpm-prefork_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.2.4-1_i386.deb
apache2-mpm-worker_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.2.4-1_i386.deb
apache2-prefork-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.2.4-1_i386.deb
apache2-src_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2-src_2.2.4-1_all.deb
apache2-threaded-dev_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.2.4-1_i386.deb
apache2-utils_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2-utils_2.2.4-1_i386.deb
apache2.2-common_2.2.4-1_i386.deb
  to pool/main/a/apache2/apache2.2-common_2.2.4-1_i386.deb
apache2_2.2.4-1.diff.gz
  to pool/main/a/apache2/apache2_2.2.4-1.diff.gz
apache2_2.2.4-1.dsc
  to pool/main/a/apache2/apache2_2.2.4-1.dsc
apache2_2.2.4-1_all.deb
  to pool/main/a/apache2/apache2_2.2.4-1_all.deb
apache2_2.2.4.orig.tar.gz
  to pool/main/a/apache2/apache2_2.2.4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <[EMAIL PROTECTED]> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 01 Jul 2007 19:57:51 +0200
Source: apache2
Binary: apache2-utils apache2-prefork-dev apache2 apache2-mpm-prefork 
apache2-doc apache2-mpm-event apache2.2-common apache2-mpm-worker apache2-src 
apache2-threaded-dev apache2-mpm-perchild
Architecture: source all i386
Version: 2.2.4-1
Distri

<    1   2   3   4   5   6   7   8   9   10   >