Your message dated Sun, 17 Apr 2005 09:02:27 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#304732: fixed in libapache-mod-musicindex 0.99.5.3
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; 15 Apr 2005 01:02:20 +0000
>From [EMAIL PROTECTED] Thu Apr 14 18:02:20 2005
Return-path: <[EMAIL PROTECTED]>
Received: from ms-smtp-04-smtplb.tampabay.rr.com (ms-smtp-04.tampabay.rr.com) 
[65.32.5.134] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DMFDw-0007jY-00; Thu, 14 Apr 2005 18:02:20 -0700
Received: from server.awtrey.com (212.156.202.68.cfl.res.rr.com 
[68.202.156.212])
        by ms-smtp-04.tampabay.rr.com (8.12.10/8.12.7) with ESMTP id 
j3F12Hpp016425
        for <[EMAIL PROTECTED]>; Thu, 14 Apr 2005 21:02:17 -0400 (EDT)
Received: from localhost (localhost [127.0.0.1])
        by server.awtrey.com (Postfix) with ESMTP id 88CA1788005;
        Thu, 14 Apr 2005 21:02:16 -0400 (EDT)
Received: from server.awtrey.com ([127.0.0.1])
        by localhost (server [127.0.0.1]) (amavisd-new, port 10024)
        with ESMTP id 27147-01; Thu, 14 Apr 2005 21:02:16 -0400 (EDT)
Received: by server.awtrey.com (Postfix, from userid 1000)
        id 37819788004; Thu, 14 Apr 2005 21:02:16 -0400 (EDT)
Content-Type: multipart/mixed; boundary="===============1739030298=="
MIME-Version: 1.0
From: "Anthony L. Awtrey" <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: libapache2-mod-musicindex: IceCast Stream URLs pick up https from
 ap_http_method
X-Mailer: reportbug 3.9
Date: Thu, 14 Apr 2005 21:02:16 -0400
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: Symantec AntiVirus Scan Engine
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at awtrey.com
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (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_2005_01_02
X-Spam-Level: 

This is a multi-part MIME message sent by reportbug.

--===============1739030298==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: libapache2-mod-musicindex
Version: 0.99.5.2
Severity: normal


I run my house server exclusively over SSL. I recently installed and configured
the musicindex mod for Apache2 and noted that the URLs pointing to the icecast
server picked up the https state from the request_rec. XMMS and other players
cannot stream via https, but they can get the playlist. I am including a patch
which corrected this issue for me.


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

Versions of packages libapache2-mod-musicindex depends on:
ii  apache2-common              2.0.53-5     next generation, scalable, extenda
ii  libc6                       2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libflac6                    1.1.1-5      Free Lossless Audio Codec - runtim
ii  libid3tag0                  0.15.1b-4.1  ID3 tag reading library from the M
ii  libmad0                     0.15.1b-1.1  MPEG audio decoder library
ii  libvorbis0a                 1.1.0-1      The Vorbis General Audio Compressi
ii  libvorbisfile3              1.1.0-1      The Vorbis General Audio Compressi
ii  mod-musicindex-common       0.99.5.2     Common files for mod-musicindex

-- no debconf information

--===============1739030298==
Content-Type: text/x-c; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
        filename="libapache2-mod-musicindex-0.99.5.2.diff"

diff -urN libapache-mod-musicindex-0.99.5.2.org/html.c 
libapache-mod-musicindex-0.99.5.2/html.c
--- libapache-mod-musicindex-0.99.5.2.org/html.c        2005-04-14 
20:32:18.447108905 -0400
+++ libapache-mod-musicindex-0.99.5.2/html.c    2005-04-14 20:55:27.257756659 
-0400
@@ -419,12 +419,15 @@
        char *bufcoded, *decoded;
        unsigned short l;
        
-       strcpy(prefix, ap_http_method(r));
-       strcat(prefix, "://"); 
-
        /* If we have an icecast server, it takes precedence, in a 'staticdir' 
fashion.
        If we're sending an RSS feed, it's up to us to send the ?stream links. 
*/
        if ((conf->iceserver) && !(conf->options & MI_RSS)) {
+
+               /* If we are sending to an icecast server, we want to force http
+               rather than allow https connections that will never work */
+               prefix[0] = '\0'; 
+               strcat(prefix, "http://";); 
+
                /* if we only have a port number, we assume icecast is running 
on the same host */
                if (conf->iceserver[0] == ':')
                        strcat(prefix, r->hostname);
@@ -432,6 +435,10 @@
                strcat(prefix, conf->iceserver);
        }
        else {
+
+               strcpy(prefix, ap_http_method(r));
+               strcat(prefix, "://"); 
+
                if (REQUEST_USER(r)) {
                        /* grab the auth credentials base64 encoded */
                        const char *auth = ap_table_get(r->headers_in, 
"Authorization");

--===============1739030298==--

---------------------------------------
Received: (at 304732-close) by bugs.debian.org; 17 Apr 2005 13:16:33 +0000
>From [EMAIL PROTECTED] Sun Apr 17 06:16:32 2005
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 1DN9dU-0000PW-00; Sun, 17 Apr 2005 06:16:28 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DN9Pv-0003h8-00; Sun, 17 Apr 2005 09:02:27 -0400
From: Thibaut VARENE <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#304732: fixed in libapache-mod-musicindex 0.99.5.3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 17 Apr 2005 09:02:27 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (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_2005_01_02
X-Spam-Level: 

Source: libapache-mod-musicindex
Source-Version: 0.99.5.3

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

libapache-mod-musicindex_0.99.5.3.dsc
  to 
pool/main/liba/libapache-mod-musicindex/libapache-mod-musicindex_0.99.5.3.dsc
libapache-mod-musicindex_0.99.5.3.tar.gz
  to 
pool/main/liba/libapache-mod-musicindex/libapache-mod-musicindex_0.99.5.3.tar.gz
libapache-mod-musicindex_0.99.5.3_powerpc.deb
  to 
pool/main/liba/libapache-mod-musicindex/libapache-mod-musicindex_0.99.5.3_powerpc.deb
libapache2-mod-musicindex_0.99.5.3_powerpc.deb
  to 
pool/main/liba/libapache-mod-musicindex/libapache2-mod-musicindex_0.99.5.3_powerpc.deb
mod-musicindex-common_0.99.5.3_all.deb
  to 
pool/main/liba/libapache-mod-musicindex/mod-musicindex-common_0.99.5.3_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.
Thibaut VARENE <[EMAIL PROTECTED]> (supplier of updated 
libapache-mod-musicindex 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, 17 Apr 2005 14:24:25 +0200
Source: libapache-mod-musicindex
Binary: libapache-mod-musicindex libapache2-mod-musicindex mod-musicindex-common
Architecture: source powerpc all
Version: 0.99.5.3
Distribution: unstable
Urgency: medium
Maintainer: Thibaut VARENE <[EMAIL PROTECTED]>
Changed-By: Thibaut VARENE <[EMAIL PROTECTED]>
Description: 
 libapache-mod-musicindex - Browse, stream, download and search through MP3/Ogg 
files
 libapache2-mod-musicindex - Browse, stream, download and search through 
MP3/Ogg files
 mod-musicindex-common - Common files for mod-musicindex
Closes: 304732
Changes: 
 libapache-mod-musicindex (0.99.5.3) unstable; urgency=medium
 .
   * Closes: #304732: IceCast Stream URLs pick up https from
     ap_http_method
Files: 
 698e1936ecc31f02f1e3c3ced97b802b 729 web optional 
libapache-mod-musicindex_0.99.5.3.dsc
 fd5e5d5a1ae8126bd046881affde5f74 76949 web optional 
libapache-mod-musicindex_0.99.5.3.tar.gz
 1b9b77d8cb0b7d95d721c8bc1d4e97e8 19714 web optional 
mod-musicindex-common_0.99.5.3_all.deb
 3ab518184da28d5df92e3a8614f18b67 28806 web optional 
libapache-mod-musicindex_0.99.5.3_powerpc.deb
 0f27379e672727bceeac20f6c39a1c9e 26848 web optional 
libapache2-mod-musicindex_0.99.5.3_powerpc.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFCYlj+HjLD2rfS8GMRAk4aAKDL8eNxmlnM2HI6fIi4jZveR+zEPQCgqLDM
9azyqX429tdqcC+87WQbYio=
=aPY/
-----END PGP SIGNATURE-----


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

Reply via email to