Re: Can apache display file size correctly which is bigger than 4G ?

2004-09-15 Thread Fabio Massimo Di Nitto
On Wed, 15 Sep 2004, cwinl-debian-apache wrote:

 hi,all:

 I put some DVD image files(each more than 4GB) into an apache's directory.
 but i found that file size is xxxMB when i open that dir in IE browser .

 why?
 is it apache's bug?

No it's a limitation. You need apache2 for LFS.

Fabio

-- 
user fajita: step one
fajita Whatever the problem, step one is always to look in the error log.
user fajita: step two
fajita When in danger or in doubt, step two is to scream and shout.




Processing of apache2_2.0.51-1_sparc.changes

2004-09-15 Thread Archive Administrator
apache2_2.0.51-1_sparc.changes uploaded successfully to localhost
along with the files:
  apache2_2.0.51-1.dsc
  apache2_2.0.51.orig.tar.gz
  apache2_2.0.51-1.diff.gz
  apache2-doc_2.0.51-1_all.deb
  apache2-prefork-dev_2.0.51-1_all.deb
  apache2-threaded-dev_2.0.51-1_all.deb
  apache2-common_2.0.51-1_sparc.deb
  apache2-mpm-worker_2.0.51-1_sparc.deb
  apache2-mpm-threadpool_2.0.51-1_sparc.deb
  apache2-mpm-perchild_2.0.51-1_sparc.deb
  apache2-mpm-prefork_2.0.51-1_sparc.deb
  libapr0_2.0.51-1_sparc.deb
  libapr0-dev_2.0.51-1_sparc.deb
  apache2_2.0.51-1_sparc.deb

Greetings,

Your Debian queue daemon




Bug#269251: marked as done (create a2ensite/a2dissite)

2004-09-15 Thread Debian Bug Tracking System
Your message dated Wed, 15 Sep 2004 12:47:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#269251: fixed in apache2 2.0.51-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)

--
Received: (at submit) by bugs.debian.org; 31 Aug 2004 16:04:54 +
From [EMAIL PROTECTED] Tue Aug 31 09:04:54 2004
Return-path: [EMAIL PROTECTED]
Received: from livewire.cae.wisc.edu [144.92.13.4] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C2B7u-0004Vt-00; Tue, 31 Aug 2004 09:04:54 -0700
Received: from root by livewire.cae.wisc.edu with local (Exim 3.36 #1 (Debian))
id 1C2B7P-0003I0-00; Tue, 31 Aug 2004 11:04:23 -0500
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: baumgart [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: create a2ensite/a2dissite
X-Mailer: reportbug 2.63
Date: Tue, 31 Aug 2004 11:04:23 -0500
Message-Id: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: apache2-common
Version: 2.0.50-11
Severity: wishlist
Tags: patch

I am submitting these for inclusion.  It's such a nice feature for the modules, 
and such a simple change to work for sites.  It's especially handy when you're 
dealing with many sites.

/usr/sbin/a2ensite
--snip--
#!/bin/sh -e

if [ -z $1 ]; then
echo Which site would you like to enable?
echo -n Your choices are: 
ls /etc/apache2/sites-available/* | \
sed -e 's#/etc/apache2/sites-available/##g;' | xargs echo
echo -n Site name? 
read SITENAME
else
SITENAME=$1
fi

if [ -e /etc/apache2/sites-enabled/$SITENAME ]; then
echo This site is already enabled!
exit 0 
fi

if ! [ -e /etc/apache2/sites-available/$SITENAME ]; then
echo This site does not exist!
exit 1
fi

ln -sf /etc/apache2/sites-available/$SITENAME 
/etc/apache2/sites-enabled/$SITENAME

echo Site $SITENAME installed; run /etc/init.d/apache2 force-reload to enable.
--snip--

/usr/sbin/a2dissite
--snip--
#!/bin/sh -e

if [ -z $1 ]; then
echo Which site would you like to disable?
echo -n Your choices are: 
ls /etc/apache2/sites-enabled/* | \
sed -e 's#/etc/apache2/sites-enabled/##g;' | xargs echo
echo -n Site name? 
read SITENAME
else
SITENAME=$1
fi

if ! [ -e /etc/apache2/sites-enabled/$SITENAME ]; then
echo This site is already disabled, or does not exist!
exit 1
fi

rm -f /etc/apache2/sites-enabled/$SITENAME
echo Site $SITENAME disabled; run /etc/init.d/apache2 force-reload to fully 
disable.
--snip--

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8.1
Locale: LANG=C, LC_CTYPE=C

Versions of packages apache2-common depends on:
ii  debconf 1.4.30.2 Debian configuration management sy
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  libapr0 2.0.50-11The Apache Portable Runtime
ii  libc6   2.3.2.ds1-13 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-17Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.6-8 XML parsing C library - runtime li
ii  libldap22.1.30-3 OpenLDAP libraries
ii  libmagic1   4.09-1   File type determination library us
ii  libssl0.9.7 0.9.7d-4 SSL shared libraries
ii  mime-support3.28-1   MIME files 'mime.types'  'mailcap
ii  net-tools   1.60-10  The NET-3 networking toolkit
ii  openssl 0.9.7d-4 Secure Socket Layer (SSL) binary a
ii  ssl-cert1.0-8Simple debconf wrapper for openssl
ii  zlib1g  1:1.2.1.1-5  compression library - runtime

-- no debconf information

---
Received: (at 269251-close) by bugs.debian.org; 15 Sep 2004 16:56:19 +
From [EMAIL PROTECTED] Wed Sep 15 09:56:19 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 

Bug#269309: marked as done (apache2-common: should suggest/recommend rather than depend on lynx)

2004-09-15 Thread Debian Bug Tracking System
Your message dated Wed, 15 Sep 2004 12:47:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#269309: fixed in apache2 2.0.51-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)

--
Received: (at submit) by bugs.debian.org; 31 Aug 2004 21:24:38 +
From [EMAIL PROTECTED] Tue Aug 31 14:24:38 2004
Return-path: [EMAIL PROTECTED]
Received: from waxy.kabel.utwente.nl [130.89.195.211] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C2G7J-0006Qr-00; Tue, 31 Aug 2004 14:24:38 -0700
Received: from alex by waxy.kabel.utwente.nl with local (Exim 4.34)
id 1C2G7H-00061E-02; Tue, 31 Aug 2004 23:24:35 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Alex Hermann [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: apache2-common: should suggest/recommend rather than depend on lynx
X-Mailer: reportbug 2.64
Date: Tue, 31 Aug 2004 23:24:34 +0200
Message-Id: [EMAIL PROTECTED]
Sender: Alex Hermann [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: apache2-common
Version: 2.0.50-11
Severity: normal

rationale:
- the added functionality is minimal. Most, if not all, installations will 
function perfectly well without lynx. Status indication is just a small, 
optional function to the main function of the package: serving web pages. 
According to policy 7.2, recommonds or suggest will thus suffice.
- lynx is more than twice the size of apache2
- a webbrowser doesn't belong on a server



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-server
Locale: LANG=C, LC_CTYPE=C

Versions of packages apache2-common depends on:
ii  debconf 1.4.32   Debian configuration management sy
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  libapr0 2.0.50-11The Apache Portable Runtime
ii  libc6   2.3.2.ds1-16 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-17Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.6-8 XML parsing C library - runtime li
ii  libldap22.1.30-3 OpenLDAP libraries
ii  libmagic1   4.10-3   File type determination library us
ii  libssl0.9.7 0.9.7d-5 SSL shared libraries
ii  mime-support3.28-1   MIME files 'mime.types'  'mailcap
ii  net-tools   1.60-10  The NET-3 networking toolkit
ii  openssl 0.9.7d-5 Secure Socket Layer (SSL) binary a
ii  ssl-cert1.0-8Simple debconf wrapper for openssl
ii  zlib1g  1:1.2.1.1-7  compression library - runtime

-- no debconf information

---
Received: (at 269309-close) by bugs.debian.org; 15 Sep 2004 16:56:07 +
From [EMAIL PROTECTED] Wed Sep 15 09:56:07 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C7d4h-0001x8-00; Wed, 15 Sep 2004 09:56:07 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1C7cvz-0005y4-00; Wed, 15 Sep 2004 12:47:07 -0400
From: Adam Conrad [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#269309: fixed in apache2 2.0.51-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Wed, 15 Sep 2004 12:47:07 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 3

Source: apache2
Source-Version: 2.0.51-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-common_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-common_2.0.51-1_sparc.deb

Bug#269580: marked as done (apache2 should have versioned dependancy to apache2 models)

2004-09-15 Thread Debian Bug Tracking System
Your message dated Wed, 15 Sep 2004 12:47:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#269580: fixed in apache2 2.0.51-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)

--
Received: (at submit) by bugs.debian.org; 2 Sep 2004 10:19:16 +
From [EMAIL PROTECTED] Thu Sep 02 03:19:16 2004
Return-path: [EMAIL PROTECTED]
Received: from adsl-81-7-123-191.takas.lt (dubrava.localdomain.fake) 
[81.7.123.191] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C2ogU-0004MN-00; Thu, 02 Sep 2004 03:19:15 -0700
Received: by dubrava.localdomain.fake (Postfix, from userid 1000)
id 9D407110EAD1; Thu,  2 Sep 2004 13:18:03 +0300 (EEST)
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: =?iso-8859-13?q?Mantas_Kriau=E8i=FBnas?= [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: apache2 should have versioned dependancy to apache2 models
X-Mailer: reportbug 2.36
Date: Thu, 02 Sep 2004 13:18:03 +0300
Message-Id: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: apache2
Version: 2.0.50-11
Severity: normal

Hi,

I think apache2 should have versioned dependancy to apache2 models, because
in current situation command apt-get install apache2 doesn't upgrade 
apache2 webserver - it only upgrades an apache2 metapackage and leaves
outdated real apache2 webserver (for example apache2-mpm-worker ), so
this misleads lots of users.


-- System Information:
Debian Release: 3.1
Architecture: i386
Kernel: Linux dubrava.homelinux.org 2.6.5-1-k7 #2 Fri Apr 30 20:46:35 EST 2004 
i686
Locale: LANG=lt_LT, LC_CTYPE=lt_LT

Versions of packages apache2 depends on:
ii  apache2-mpm-worker2.0.50-5   High speed threaded model for Apac

-- no debconf information


---
Received: (at 269580-close) by bugs.debian.org; 15 Sep 2004 16:56:21 +
From [EMAIL PROTECTED] Wed Sep 15 09:56:21 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C7d4u-0001xx-00; Wed, 15 Sep 2004 09:56:20 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1C7cvz-0005y8-00; Wed, 15 Sep 2004 12:47:07 -0400
From: Adam Conrad [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#269580: fixed in apache2 2.0.51-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Wed, 15 Sep 2004 12:47:07 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 5

Source: apache2
Source-Version: 2.0.51-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-common_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-common_2.0.51-1_sparc.deb
apache2-doc_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.0.51-1_all.deb
apache2-mpm-perchild_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.0.51-1_sparc.deb
apache2-mpm-prefork_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.0.51-1_sparc.deb
apache2-mpm-threadpool_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-threadpool_2.0.51-1_sparc.deb
apache2-mpm-worker_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.0.51-1_sparc.deb
apache2-prefork-dev_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.0.51-1_all.deb
apache2-threaded-dev_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.0.51-1_all.deb
apache2_2.0.51-1.diff.gz
  to pool/main/a/apache2/apache2_2.0.51-1.diff.gz
apache2_2.0.51-1.dsc
  to pool/main/a/apache2/apache2_2.0.51-1.dsc
apache2_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2_2.0.51-1_sparc.deb
apache2_2.0.51.orig.tar.gz
  to pool/main/a/apache2/apache2_2.0.51.orig.tar.gz
libapr0-dev_2.0.51-1_sparc.deb
  to 

Bug#270216: marked as done (apache2-common: Reversed RedirectMatch for /manual)

2004-09-15 Thread Debian Bug Tracking System
Your message dated Wed, 15 Sep 2004 12:47:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#270216: fixed in apache2 2.0.51-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)

--
Received: (at submit) by bugs.debian.org; 6 Sep 2004 08:23:44 +
From [EMAIL PROTECTED] Mon Sep 06 01:23:44 2004
Return-path: [EMAIL PROTECTED]
Received: from smtp.irisa.fr [131.254.254.26] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C4Emt-0003pJ-00; Mon, 06 Sep 2004 01:23:44 -0700
Received: from localhost (localhost.localdomain [127.0.0.1])
by localhost.irisa.fr (Postfix) with ESMTP id 0298BFAAD
for [EMAIL PROTECTED]; Mon,  6 Sep 2004 10:23:43 +0200 (CEST)
Received: from smtp.irisa.fr ([131.254.254.26])
 by localhost (meli.irisa.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP
 id 22245-10 for [EMAIL PROTECTED];
 Mon,  6 Sep 2004 10:23:42 +0200 (CEST)
Received: from [131.254.254.31] (bionix.irisa.fr [131.254.254.31])
by smtp.irisa.fr (Postfix) with ESMTP id 7737DFAA3
for [EMAIL PROTECTED]; Mon,  6 Sep 2004 10:23:42 +0200 (CEST)
Message-ID: [EMAIL PROTECTED]
Date: Mon, 06 Sep 2004 10:23:32 +0200
From: Yves Bastide [EMAIL PROTECTED]
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7) Gecko/20040616
X-Accept-Language: fr-fr, fr, en-us, en
MIME-Version: 1.0
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: apache2-common: Reversed RedirectMatch for /manual
X-Enigmail-Version: 0.84.1.0
X-Enigmail-Supports: pgp-inline, pgp-mime
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
X-Virus-Scanned: by amavisd-new at irisa.fr
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: apache2-common
Version: 2.0.50-12
Severity: normal

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

Hi,

/etc/apache2/sites-available/default tries to redirect /manual to
/doc/apache2-doc/manual; but it does it the wrong way around.

I.e. it contains:
RedirectMatch ^/doc/apache2-doc/manual(.*)$ /manual$1
instead of:
RedirectMatch ^/manual(.*)$ /doc/apache2-doc/manual$1

Regards,

yves

-- System Information:
Debian Release: 3.1
   APT prefers unstable
   APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.8.1
Locale: LANG=C, LC_CTYPE=C

Versions of packages apache2-common depends on:
ii  debconf 1.4.34   Debian configuration management sy
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  elinks [www-browser 0.9.1+0.9.2pre4-1Character mode WWW/FTP browser
ii  elvis [www-browser] 2.2.0-1  powerful clone of the vi/ex text e
ii  konqueror [www-brow 4:3.3.0-1KDE's advanced File Manager, Web B
ii  libapr0 2.0.50-12The Apache Portable Runtime
ii  libc6   2.3.2.ds1-16 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-17Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.6-8 XML parsing C library - runtime li
ii  libldap22.1.30-3 OpenLDAP libraries
ii  libmagic1   4.10-3   File type determination library us
ii  libssl0.9.7 0.9.7d-5 SSL shared libraries
ii  lynx [www-browser]  2.8.5-1  Text-mode WWW Browser
ii  mime-support3.28-1   MIME files 'mime.types'  'mailcap
ii  mozilla-browser [ww 2:1.7.2-4The Mozilla Internet application s
ii  mozilla-firefox [ww 0.9.3-2.2lightweight web browser based on M
ii  navigator-smotif-47 4.77-2.1 Netscape Navigator 4.77 (static Mo
ii  net-tools   1.60-10  The NET-3 networking toolkit
ii  openssl 0.9.7d-5 Secure Socket Layer (SSL) binary a
ii  ssl-cert1.0-8Simple debconf wrapper for openssl
ii  w3-el-e21 [www-brow 4.0pre.2001.10.27-16 Web browser for GNU Emacs 21
ii  w3m [www-browser]   0.5.1-3  WWW browsable pager with excellent
ii  xemacs21-mule [www- 21.4.15-7Editor and kitchen sink -- Mule bi
ii  zlib1g  1:1.2.1.1-7  compression library - runtime

-- no debconf information


Bug#270768: marked as done (apache2-prefork-dev: /usr/bin/apxs2 -q LIBTOOL gives path to non-existent libtool file)

2004-09-15 Thread Debian Bug Tracking System
Your message dated Wed, 15 Sep 2004 12:47:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#270768: fixed in apache2 2.0.51-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)

--
Received: (at submit) by bugs.debian.org; 9 Sep 2004 05:41:38 +
From [EMAIL PROTECTED] Wed Sep 08 22:41:38 2004
Return-path: [EMAIL PROTECTED]
Received: from nsk-gw.sw-soft.com (master.plesk.ru) [80.89.140.126] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C5Hgf-0002HM-00; Wed, 08 Sep 2004 22:41:37 -0700
Received: from [127.0.0.1] (bdeb31.plesk.ru [192.168.46.150])
by master.plesk.ru (8.12.11/8.12.11) with ESMTP id i895fWgQ076306;
Thu, 9 Sep 2004 12:41:33 +0700 (NOVST)
(envelope-from [EMAIL PROTECTED])
Message-Id: [EMAIL PROTECTED]
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Anatoly V. Vdovichev [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: apache2-prefork-dev: /usr/bin/apxs2 -q LIBTOOL gives path to 
non-existent
 libtool file
X-Mailer: reportbug 2.63
Date: Fri, 10 Sep 2004 02:44:30 +0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-4.7 required=4.0 tests=BAYES_00,DATE_IN_FUTURE_12_24,
HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: apache2-prefork-dev
Version: 2.0.50-12
Severity: important
Tags: experimental



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.26-1-386
Locale: LANG=C, LC_CTYPE=C

Versions of packages apache2-prefork-dev depends on:
ii  apache2-common   2.0.50-12   Next generation, scalable, extenda
ii  autoconf 2.59-7  automatic configure script builder
ii  autotools-dev20040822.1  Update infrastructure for config.{
ii  bzip21.0.2-1 A high-quality block-sorting file 
ii  libapr0-dev  2.0.50-12   Development headers for libapr
ii  libdb4.2-dev 4.2.52-17   Berkeley v4.2 Database Libraries [
ii  libpcre3-dev 4.5-1.1 Perl 5 Compatible Regular Expressi
ii  libssl-dev   0.9.7d-4SSL development libraries, header 
ii  libtool  1.5.6-2 Generic library support script
ii  openssl  0.9.7d-4Secure Socket Layer (SSL) binary a
ii  zlib1g-dev   1:1.2.1.1-5 compression library - development

-- no debconf information

---
Received: (at 270768-close) by bugs.debian.org; 15 Sep 2004 16:56:21 +
From [EMAIL PROTECTED] Wed Sep 15 09:56:21 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C7d4v-0001y9-00; Wed, 15 Sep 2004 09:56:21 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1C7cvz-0005yC-00; Wed, 15 Sep 2004 12:47:07 -0400
From: Adam Conrad [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#270768: fixed in apache2 2.0.51-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Wed, 15 Sep 2004 12:47:07 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 7

Source: apache2
Source-Version: 2.0.51-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-common_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-common_2.0.51-1_sparc.deb
apache2-doc_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.0.51-1_all.deb
apache2-mpm-perchild_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.0.51-1_sparc.deb
apache2-mpm-prefork_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.0.51-1_sparc.deb
apache2-mpm-threadpool_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-threadpool_2.0.51-1_sparc.deb
apache2-mpm-worker_2.0.51-1_sparc.deb
  to 

apache2_2.0.51-1_sparc.changes ACCEPTED

2004-09-15 Thread Debian Installer

Accepted:
apache2-common_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-common_2.0.51-1_sparc.deb
apache2-doc_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.0.51-1_all.deb
apache2-mpm-perchild_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.0.51-1_sparc.deb
apache2-mpm-prefork_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.0.51-1_sparc.deb
apache2-mpm-threadpool_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-threadpool_2.0.51-1_sparc.deb
apache2-mpm-worker_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.0.51-1_sparc.deb
apache2-prefork-dev_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.0.51-1_all.deb
apache2-threaded-dev_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.0.51-1_all.deb
apache2_2.0.51-1.diff.gz
  to pool/main/a/apache2/apache2_2.0.51-1.diff.gz
apache2_2.0.51-1.dsc
  to pool/main/a/apache2/apache2_2.0.51-1.dsc
apache2_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2_2.0.51-1_sparc.deb
apache2_2.0.51.orig.tar.gz
  to pool/main/a/apache2/apache2_2.0.51.orig.tar.gz
libapr0-dev_2.0.51-1_sparc.deb
  to pool/main/a/apache2/libapr0-dev_2.0.51-1_sparc.deb
libapr0_2.0.51-1_sparc.deb
  to pool/main/a/apache2/libapr0_2.0.51-1_sparc.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 243340 269251 269309 269398 269580 270216 270768 


Thank you for your contribution to Debian.




$B$=$l$C$F!#!#!#$_$l$^$9$+!)(B

2004-09-15 Thread $BM5;R(B
$B$"$N$&!"K?=j$G$N!V$"$k0UL#$9$4$$%A%s%]%i%s%-%s%0!W$G([EMAIL PROTECTED])(B
$B=PMh$l$PD>@\$=$N%A%s%]8+$?$$$s$G$9$1$I!"$G$7$g$&$+!)(B
$B$o$?$7$N$^$s$^$s$bBe$o$j$K8+$;$k$N$G!"$*JV;vBT$C$F$^$9!*(B

Re: Informations for packaging apache(2) third party modules

2004-09-15 Thread Emmanuel Lacour
On Wed, Sep 15, 2004 at 02:52:28AM +0100, Thom May wrote:
 libapache2-mod-macro is pretty much the simplest possible case for an
 apache2 module.
 get the source for that, and run with it.

I'm not looking for the easiest package example, I already looked at
many, but I wan't to find the best way for postinst/prerm scripts. I
think it's a good idea to provide a choice for the user to
enable/disable the module via debconf at install time and via
dpkg-reconfigure. If there isn't a standard way like with apache1.x, I
will do my debconf template myself (enable/disable modue? yes/no, then
use a2enmod or a2dismod).

There is also a script called update-apache2-modules. Should I use
this one instead of a2*mod. Is there a standard way for looking if a
module is enabled (other than -e /etc/apache2/mods-enabled/load).


All I wanted to say in my email is that we should have a standard way
for handling modules with apache2 and we have to document it ... and I'm
ok to help doing this of course:)

-- 
Emmanuel LACOUR - [EMAIL PROTECTED]




Bug#269398: marked as done (apache2-mpm-worker: cannot stop apache2 if /etc/default/apache2 NO_START=1)

2004-09-15 Thread Debian Bug Tracking System
Your message dated Wed, 15 Sep 2004 12:47:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#269398: fixed in apache2 2.0.51-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)

--
Received: (at submit) by bugs.debian.org; 1 Sep 2004 09:29:13 +
From [EMAIL PROTECTED] Wed Sep 01 02:29:13 2004
Return-path: [EMAIL PROTECTED]
Received: from webmail.soco.de (webmail.soco.net) [212.16.224.17] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C2RQV-0004k3-00; Wed, 01 Sep 2004 02:29:12 -0700
Received: from alcor.macd.com [212.16.242.5] by webmail.soco.net with ESMTP
  (SMTPD32-7.15) id A7E6DC010A; Wed, 01 Sep 2004 11:35:34 +0200
Received: from joerg by alcor.macd.com with local (Exim 3.36 #1 (Debian))
id 1C2RPz-0002ZK-00; Wed, 01 Sep 2004 11:28:39 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
From: =?iso-8859-15?q?J=F6rg_Th=F6nnes?= [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: apache2-mpm-worker: cannot stop apache2 if /etc/default/apache2 
NO_START=1
X-Mailer: reportbug 2.63
Date: Wed, 01 Sep 2004 11:28:39 +0200
Message-Id: [EMAIL PROTECTED]
Sender: Joerg Thoennes [EMAIL PROTECTED]
X-BadReturnPath: [EMAIL PROTECTED] rewritten as [EMAIL PROTECTED]
  using From header
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: apache2-mpm-worker
Version: 2.0.50-11
Severity: normal

Hello,

I activated apache2 using the NO_START=0 setting in
/etc/default/apache2. Then I set this back to 1.

Now stopping apache2 does not work:

Not starting apache2 - edit /etc/default/apache2 and change NO_START to
be 0.

At least I should read here Not stopping..., but better would be to
try to stop it anyway.

Of course, I cannot set NO_START=1, stop and then set it to 1 again.

Cheers, Jörg

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (600, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-686
Locale: LANG=C, LC_CTYPE=C

Versions of packages apache2-mpm-worker depends on:
ii  apache2-common  2.0.50-11Next generation, scalable, extenda
ii  libapr0 2.0.50-11The Apache Portable Runtime
ii  libc6   2.3.2.ds1-13 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-17Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.6-8 XML parsing C library - runtime li
ii  libldap22.1.30-3 OpenLDAP libraries
ii  libssl0.9.7 0.9.7d-4 SSL shared libraries
ii  zlib1g  1:1.2.1.1-5  compression library - runtime

-- no debconf information

---
Received: (at 269398-close) by bugs.debian.org; 15 Sep 2004 16:56:20 +
From [EMAIL PROTECTED] Wed Sep 15 09:56:20 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C7d4u-0001xl-00; Wed, 15 Sep 2004 09:56:20 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1C7cvz-0005y6-00; Wed, 15 Sep 2004 12:47:07 -0400
From: Adam Conrad [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#269398: fixed in apache2 2.0.51-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Wed, 15 Sep 2004 12:47:07 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 4

Source: apache2
Source-Version: 2.0.51-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-common_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-common_2.0.51-1_sparc.deb
apache2-doc_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.0.51-1_all.deb
apache2-mpm-perchild_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.0.51-1_sparc.deb

Bug#243340: marked as done (apache2-*-dev: Wrong query results from apxs2)

2004-09-15 Thread Debian Bug Tracking System
Your message dated Wed, 15 Sep 2004 12:47:07 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#243340: fixed in apache2 2.0.51-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)

--
Received: (at submit) by bugs.debian.org; 12 Apr 2004 14:58:56 +
From [EMAIL PROTECTED] Mon Apr 12 07:58:56 2004
Return-path: [EMAIL PROTECTED]
Received: from mail.edenmarket.de [62.96.68.2] (Debian-exim)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BD2tk-0006F8-00; Mon, 12 Apr 2004 07:58:56 -0700
Received: from pd9e61805.dip.t-dialin.net ([217.230.24.5] helo=debian.org)
by mail.edenmarket.de with asmtp (Exim 4.30)
id 1BD2tf-0006Qt-7q
for [EMAIL PROTECTED]; Mon, 12 Apr 2004 16:58:51 +0200
Message-ID: [EMAIL PROTECTED]
Date: Mon, 12 Apr 2004 16:58:40 +0200
From: Stefan Gybas [EMAIL PROTECTED]
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040123
X-Accept-Language: en, de
MIME-Version: 1.0
To: [EMAIL PROTECTED]
X-Enigmail-Version: 0.83.1.0
X-Enigmail-Supports: pgp-inline, pgp-mime
Subject: apache2-*-dev: Wrong query results from apxs2
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 1

Package: apache2-threaded-dev
Version: 2.0.49-1
Severity: normal

apxs2 returns wrong values for LIBTOOL, AP_LIBS, APR_INCLUDEDIR, 
APU_INCLUDEDIR and EXTRA_INCLUDES:

  apxs2 -q APU_INCLUDEDIR
/home/thom/packages/apache2-2.0.49/build-tree/apache2-build/worker/srclib/apr-util/include
 
/home/thom/packages/apache2-2.0.49/build-tree/apache2/srclib/apr-util/include

  apxs2 -q EXTRA_INCLUDES
Use of uninitialized value in concatenation (.) or string at 
/usr/bin/apxs2 line 237.

  apxs2 -q LIBTOOL
/bin/sh /usr/share/apache2/build/libtool --silent

/usr/share/apache2/build/libtool does not exist. All these variables are 
stored in /usr/share/apache2/build/config_vars.mk. LIBTOOL, 
APR_INCLUDEDIR and APU_INCLUDEDIR are used by the build system of 
mod_jk2. apxs2 from apache2-prefork-dev shows the same behaviour.


Stefan

---
Received: (at 243340-close) by bugs.debian.org; 15 Sep 2004 16:56:18 +
From [EMAIL PROTECTED] Wed Sep 15 09:56:18 2004
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1C7d4s-0001xN-00; Wed, 15 Sep 2004 09:56:18 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1C7cvz-0005y0-00; Wed, 15 Sep 2004 12:47:07 -0400
From: Adam Conrad [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.51 $
Subject: Bug#243340: fixed in apache2 2.0.51-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Wed, 15 Sep 2004 12:47:07 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: apache2
Source-Version: 2.0.51-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-common_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-common_2.0.51-1_sparc.deb
apache2-doc_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-doc_2.0.51-1_all.deb
apache2-mpm-perchild_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.0.51-1_sparc.deb
apache2-mpm-prefork_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.0.51-1_sparc.deb
apache2-mpm-threadpool_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-threadpool_2.0.51-1_sparc.deb
apache2-mpm-worker_2.0.51-1_sparc.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.0.51-1_sparc.deb
apache2-prefork-dev_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.0.51-1_all.deb
apache2-threaded-dev_2.0.51-1_all.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.0.51-1_all.deb
apache2_2.0.51-1.diff.gz
  to pool/main/a/apache2/apache2_2.0.51-1.diff.gz
apache2_2.0.51-1.dsc
  to 

Re: Informations for packaging apache(2) third party modules

2004-09-15 Thread Thom May
* Emmanuel Lacour ([EMAIL PROTECTED]) wrote :
 On Wed, Sep 15, 2004 at 02:52:28AM +0100, Thom May wrote:
  libapache2-mod-macro is pretty much the simplest possible case for an
  apache2 module.
  get the source for that, and run with it.
 
 I'm not looking for the easiest package example, I already looked at
 many, but I wan't to find the best way for postinst/prerm scripts. I
 think it's a good idea to provide a choice for the user to
 enable/disable the module via debconf at install time and via
 dpkg-reconfigure. If there isn't a standard way like with apache1.x, I
 will do my debconf template myself (enable/disable modue? yes/no, then
 use a2enmod or a2dismod).
 
 There is also a script called update-apache2-modules. Should I use
 this one instead of a2*mod. Is there a standard way for looking if a
 module is enabled (other than -e /etc/apache2/mods-enabled/load).
 
u-a-m is a work in process, which will be the standard way of handling
modules.
It's pretty close, but not there yet. I'm hoping to have some time the next
couple of days to work on it and test it etc.
I'd really ask you *not* to go off developing your own solution to the
problem though.
Cheers,
-Thom

-- 
That sounds like a lot of work... Can we out source?
The Revolution will not be outsourced!
(Slick/Monique - Sinfest)