apache_1.3.26
am 08.07.2002 17:12:41 von New Disorder Records
is anyone else having problems compiling apache_1.3.26 with mod_ssl? I'm
on a redhat 7.2 box, and mod_ssl just erases my src/makefile in the apache
directory. Not erases, but all that's created is a blank header. After I
try, I have to wipe the directory and untar apache again so that I can
compile it without mod_ssl. Any suggestions?
--
New Disorder Records "you've heard of us now, so shut up and buy the damn
Sacrilicious CD" - www.newdisorder.com
Pirx the Pilot: One of the top three Structuralist punk rock bands in the
country. www.pirxthepilot.com
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: apache_1.3.26
am 08.07.2002 20:35:00 von jan.skola
This is a multi-part message in MIME format.
------=_NextPart_000_0005_01C226BE.F406C000
Content-Type: text/plain;
charset="iso-8859-2"
Content-Transfer-Encoding: 7bit
Yes, use this script to compile Apache & mod_ssl & mod_perl & php. If
you dont want it all comment it. I use this with complete success on RH
7.2, after unzip, config and make go to apache* dir and run make install
Jan Skola
> -----Original Message-----
> From: owner-modssl-users@modssl.org
[mailto:owner-modssl-users@modssl.org]
> On Behalf Of New Disorder Records
> Sent: Monday, July 08, 2002 5:13 PM
> To: modssl-users@modssl.org
> Subject: apache_1.3.26
>
> is anyone else having problems compiling apache_1.3.26 with mod_ssl?
I'm
> on a redhat 7.2 box, and mod_ssl just erases my src/makefile in the
apache
> directory. Not erases, but all that's created is a blank header.
After I
> try, I have to wipe the directory and untar apache again so that I can
> compile it without mod_ssl. Any suggestions?
>
>
>
> --
> New Disorder Records "you've heard of us now, so shut up and buy the
damn
> Sacrilicious CD" - www.newdisorder.com
> Pirx the Pilot: One of the top three Structuralist punk rock bands in
the
> country. www.pirxthepilot.com
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
------=_NextPart_000_0005_01C226BE.F406C000
Content-Type: application/octet-stream;
name="makeapache"
Content-Disposition: attachment;
filename="makeapache"
Content-Transfer-Encoding: quoted-printable
#!/bin/bash=0A=
=0A=
VERSION_APACHE=3D1.3.26=0A=
VERSION_MOD_SSL=3D2.8.10=0A=
VERSION_MOD_PERL=3D1.27=0A=
VERSION_PHP=3D4.2.1=0A=
=0A=
# clean=0A=
############################################################ #############=
############################=0A=
clean()=0A=
{=0A=
rm -rf apache_${VERSION_APACHE}=0A=
rm -rf mod_ssl-${VERSION_MOD_SSL}-${VERSION_APACHE}=0A=
rm -rf mod_perl-${VERSION_MOD_PERL}=0A=
rm -rf php-${VERSION_PHP}=0A=
}=0A=
=0A=
# unzip=0A=
############################################################ #############=
############################=0A=
unzip_all()=0A=
{=0A=
gunzip -c apache_${VERSION_APACHE}.tar.gz | tar xvf - > /dev/nul=0A=
gunzip -c mod_ssl-${VERSION_MOD_SSL}-${VERSION_APACHE}.tar.gz | tar =
xvf - > /dev/nul=0A=
gunzip -c mod_perl-${VERSION_MOD_PERL}.tar.gz | tar xvf - > /dev/nul=0A=
bunzip2 -c php-${VERSION_PHP}.tar.bz2 | tar xvf - > /dev/nul=0A=
}=0A=
=0A=
# mod_ssl=0A=
############################################################ #############=
############################=0A=
config_mod_ssl()=0A=
{=0A=
cd mod_ssl-${VERSION_MOD_SSL}-${VERSION_APACHE}=0A=
=0A=
SSL_BASE=3DSYSTEM \=0A=
EAPI_MM=3DSYSTEM \=0A=
./configure \=0A=
--with-apache=3D../apache_${VERSION_APACHE}=0A=
=0A=
cd ..=0A=
}=0A=
=0A=
# mod_perl=0A=
############################################################ #############=
############################=0A=
config_mod_perl()=0A=
{=0A=
cd mod_perl-${VERSION_MOD_PERL}=0A=
=0A=
perl Makefile.PL \=0A=
EVERYTHING=3D1 \=0A=
APACHE_SRC=3D../apache_${VERSION_APACHE}/src \=0A=
USE_APACI=3D1 \=0A=
PREP_HTTPD=3D1 \=0A=
DO_HTTPD=3D1=0A=
=0A=
cd ..=0A=
}=0A=
=0A=
make_mod_perl()=0A=
{=0A=
cd mod_perl-${VERSION_MOD_PERL}=0A=
=0A=
make=0A=
make install=0A=
=0A=
cd ..=0A=
}=0A=
=0A=
# PHP=0A=
############################################################ #############=
############################=0A=
config_php()=0A=
{=0A=
cd php-${VERSION_PHP}=0A=
=0A=
# --with-apxs=3D/usr/sbin/apxs \=0A=
=0A=
EXTRA_LIBS=3D-L/usr/local/freetds/lib \=0A=
./configure \=0A=
i386-redhat-linux \=0A=
--with-apache=3D../apache_${VERSION_APACHE} \=0A=
--prefix=3D/usr \=0A=
--exec-prefix=3D/usr \=0A=
--bindir=3D/usr/bin \=0A=
--sbindir=3D/usr/sbin \=0A=
--sysconfdir=3D/etc \=0A=
--datadir=3D/usr/share \=0A=
--includedir=3D/usr/include \=0A=
--libdir=3D/usr/lib \=0A=
--libexecdir=3D/usr/libexec \=0A=
--localstatedir=3D/var \=0A=
--sharedstatedir=3D/usr/com \=0A=
--mandir=3D/usr/share/man \=0A=
--infodir=3D/usr/share/info \=0A=
--prefix=3D/usr \=0A=
--with-config-file-path=3D/etc \=0A=
--disable-debug \=0A=
--enable-pic \=0A=
--disable-rpath \=0A=
--enable-inline-optimization \=0A=
--with-bz2 \=0A=
--with-db3 \=0A=
--with-exec-dir=3D/usr/bin \=0A=
--with-gd \=0A=
--with-gdbm \=0A=
--with-gettext \=0A=
--with-jpeg-dir=3D/usr \=0A=
--with-mm \=0A=
--with-openssl \=0A=
--with-png \=0A=
--with-regex=3Dsystem \=0A=
--with-ttf \=0A=
--with-zlib \=0A=
--with-layout=3DGNU \=0A=
--enable-debugger \=0A=
--enable-ftp \=0A=
--enable-magic-quotes \=0A=
--enable-safe-mode \=0A=
--enable-sockets \=0A=
--enable-sysvsem \=0A=
--enable-sysvshm \=0A=
--enable-track-vars \=0A=
--enable-yp \=0A=
--enable-wddx \=0A=
--without-mysql \=0A=
--without-unixODBC \=0A=
--without-oracle \=0A=
--without-oci8 \=0A=
--with-pspell \=0A=
--with-xml \=0A=
--with-sybase=3D/usr/local/freetds=0A=
=0A=
cd ..=0A=
}=0A=
=0A=
make_php()=0A=
{=0A=
cd php-${VERSION_PHP}=0A=
=0A=
make=0A=
make install=0A=
=0A=
cd ..=0A=
}=0A=
=0A=
# Apache=0A=
############################################################ #############=
############################=0A=
config_apache()=0A=
{=0A=
cd apache_${VERSION_APACHE}=0A=
=0A=
# --prefix=3D/etc/httpd \=0A=
# --exec-prefix=3D/usr \=0A=
# --bindir=3D/usr/bin \=0A=
# --sbindir=3D/usr/sbin \=0A=
# --mandir=3D/usr/share/man \=0A=
# --sysconfdir=3D/etc/httpd/conf \=0A=
# --includedir=3D/usr/include/apache \=0A=
# --libexecdir=3D/usr/lib/apache \=0A=
# --datadir=3D/var/www \=0A=
# --iconsdir=3D/var/www/icons \=0A=
# --htdocsdir=3D/var/www/html \=0A=
# --manualdir=3D/var/www/html/manual \=0A=
# --cgidir=3D/var/www/cgi-bin \=0A=
# --localstatedir=3D/var \=0A=
# --runtimedir=3D/var/run \=0A=
# --logfiledir=3D/var/log/httpd \=0A=
# --proxycachedir=3D/var/cache/httpd \=0A=
=0A=
SSL_BASE=3DSYSTEM \=0A=
EAPI_MM=3DSYSTEM \=0A=
EXTRA_LIBS=3D-L/usr/local/freetds/lib \=0A=
./configure \=0A=
--enable-module=3Dssl \=0A=
--activate-module=3Dsrc/modules/perl/libperl.a \=0A=
--enable-module=3Dperl \=0A=
--activate-module=3Dsrc/modules/php4/libphp4.a \=0A=
--enable-module=3Dphp4 \=0A=
--enable-module=3Dauth_dbm \=0A=
--enable-module=3Dall \=0A=
--enable-shared=3Dmax \=0A=
--disable-shared=3Dperl \=0A=
--disable-shared=3Dssl \=0A=
--disable-shared=3Dphp4 \=0A=
--enable-rule=3DEAPI \=0A=
--disable-rule=3DWANTHSREGEX \=0A=
--with-perl=3D/usr/bin/perl \=0A=
--enable-suexec \=0A=
--suexec-docroot=3D/var/www \=0A=
--suexec-caller=3Dapache \=0A=
--prefix=3D/etc/httpd \=0A=
--exec-prefix=3D/usr \=0A=
--bindir=3D/usr/bin \=0A=
--sbindir=3D/usr/sbin \=0A=
--mandir=3D/usr/share/man \=0A=
--sysconfdir=3D/etc/httpd/conf \=0A=
--includedir=3D/usr/include/apache \=0A=
--libexecdir=3D/usr/lib/apache \=0A=
--datadir=3D/var/www \=0A=
--iconsdir=3D/var/www/icons \=0A=
--htdocsdir=3D/var/www/html \=0A=
--manualdir=3D/var/www/html/manual \=0A=
--cgidir=3D/var/www/cgi-bin \=0A=
--localstatedir=3D/var \=0A=
--runtimedir=3D/var/run \=0A=
--logfiledir=3D/var/log/httpd \=0A=
--proxycachedir=3D/var/cache/httpd \=0A=
=0A=
cd ..=0A=
}=0A=
=0A=
make_apache()=0A=
{=0A=
cd apache_${VERSION_APACHE}=0A=
=0A=
EXTRA_LIBS=3D-L/usr/local/freetds/lib \=0A=
make=0A=
=0A=
cd .. =0A=
}=0A=
=0A=
=0A=
# support=0A=
############################################################ #############=
############################=0A=
=0A=
do_make()=0A=
{=0A=
config_mod_ssl=0A=
config_mod_perl=0A=
make_mod_perl=0A=
config_php=0A=
make_php=0A=
config_apache=0A=
make_apache=0A=
}=0A=
=0A=
# main=0A=
############################################################ #############=
############################=0A=
case "$1" in=0A=
clean)=0A=
clean=0A=
;;=0A=
unzip)=0A=
unzip_all=0A=
;;=0A=
make)=0A=
do_make=0A=
;;=0A=
*)=0A=
echo $"Usage: do { clean | unzip | make }"=0A=
exit 1=0A=
esac=0A=
------=_NextPart_000_0005_01C226BE.F406C000--
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: apache_1.3.26
am 08.07.2002 20:40:37 von New Disorder Records
well, that's a lot more than I needed. I think the key is somewhere in
the
SSL_BASE=SYSTEM thing.
I have openssl installed, this is redhat, but when I set SSL_BASE=SYSTEM,
I still get the error:
Error: Cannot find SSL binaries under /usr/local/ssl
when I run configure in apache. I don't know what binaries it's looking
for, but there is a bin directory under /usr/local/ssl.
-Ernst
On Mon, 8 Jul 2002, [iso-8859-2] Jan ©kola wrote:
> Yes, use this script to compile Apache & mod_ssl & mod_perl & php. If
> you dont want it all comment it. I use this with complete success on RH
> 7.2, after unzip, config and make go to apache* dir and run make install
>
> Jan Skola
>
> > -----Original Message-----
> > From: owner-modssl-users@modssl.org
> [mailto:owner-modssl-users@modssl.org]
> > On Behalf Of New Disorder Records
> > Sent: Monday, July 08, 2002 5:13 PM
> > To: modssl-users@modssl.org
> > Subject: apache_1.3.26
> >
> > is anyone else having problems compiling apache_1.3.26 with mod_ssl?
> I'm
> > on a redhat 7.2 box, and mod_ssl just erases my src/makefile in the
> apache
> > directory. Not erases, but all that's created is a blank header.
> After I
> > try, I have to wipe the directory and untar apache again so that I can
> > compile it without mod_ssl. Any suggestions?
> >
> >
> >
> > --
> > New Disorder Records "you've heard of us now, so shut up and buy the
> damn
> > Sacrilicious CD" - www.newdisorder.com
> > Pirx the Pilot: One of the top three Structuralist punk rock bands in
> the
> > country. www.pirxthepilot.com
> > ____________________________________________________________ __________
> > Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> > User Support Mailing List modssl-users@modssl.org
> > Automated List Manager majordomo@modssl.org
> >
>
>
--
New Disorder Records "you've heard of us now, so shut up and buy the damn
Sacrilicious CD" - www.newdisorder.com
Pirx the Pilot: One of the top three Structuralist punk rock bands in the
country. www.pirxthepilot.com
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: apache_1.3.26
am 09.07.2002 06:23:49 von Geoff Thorpe
On Mon, 8 Jul 2002, New Disorder Records wrote:
> well, that's a lot more than I needed. I think the key is somewhere in
> the
>
> SSL_BASE=SYSTEM thing.
>
> I have openssl installed, this is redhat, but when I set SSL_BASE=SYSTEM,
> I still get the error:
>
> Error: Cannot find SSL binaries under /usr/local/ssl
>
> when I run configure in apache. I don't know what binaries it's looking
> for, but there is a bin directory under /usr/local/ssl.
If there's no include or lib[s] sub-directories then you're probably
missing the openssl***-dev rpm. Try installing that too, I think the error
message may mean "SSL libraries" when it says "SSL binaries". You probably
don't need the openssl***-src rpm though.
Otherwise if that's not the problem, I know that there's at least one
Redhat officianado lurking around on this mail list ... :-)
Cheers,
Geoff
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: apache_1.3.26
am 09.07.2002 07:13:37 von Glen Mehn
try adding /usr/local/ssl/lib to your LD_LIBRARY_PATH
this is an educted guess, though... good luck.
-g
On Mon, Jul 08, 2002 at 11:40:37AM -0700, New Disorder Records wrote:
> well, that's a lot more than I needed. I think the key is somewhere in
> the
>
> SSL_BASE=SYSTEM thing.
>
> I have openssl installed, this is redhat, but when I set SSL_BASE=SYSTEM,
> I still get the error:
>
> Error: Cannot find SSL binaries under /usr/local/ssl
>
> when I run configure in apache. I don't know what binaries it's looking
> for, but there is a bin directory under /usr/local/ssl.
>
> -Ernst
>
> On Mon, 8 Jul 2002, [iso-8859-2] Jan ?kola wrote:
>
> > Yes, use this script to compile Apache & mod_ssl & mod_perl & php. If
> > you dont want it all comment it. I use this with complete success on RH
> > 7.2, after unzip, config and make go to apache* dir and run make install
> >
> > Jan Skola
> >
> > > -----Original Message-----
> > > From: owner-modssl-users@modssl.org
> > [mailto:owner-modssl-users@modssl.org]
> > > On Behalf Of New Disorder Records
> > > Sent: Monday, July 08, 2002 5:13 PM
> > > To: modssl-users@modssl.org
> > > Subject: apache_1.3.26
> > >
> > > is anyone else having problems compiling apache_1.3.26 with mod_ssl?
> > I'm
> > > on a redhat 7.2 box, and mod_ssl just erases my src/makefile in the
> > apache
> > > directory. Not erases, but all that's created is a blank header.
> > After I
> > > try, I have to wipe the directory and untar apache again so that I can
> > > compile it without mod_ssl. Any suggestions?
> > >
> > >
> > >
> > > --
> > > New Disorder Records "you've heard of us now, so shut up and buy the
> > damn
> > > Sacrilicious CD" - www.newdisorder.com
> > > Pirx the Pilot: One of the top three Structuralist punk rock bands in
> > the
> > > country. www.pirxthepilot.com
> > > ____________________________________________________________ __________
> > > Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> > > User Support Mailing List modssl-users@modssl.org
> > > Automated List Manager majordomo@modssl.org
> > >
> >
> >
>
> --
> New Disorder Records "you've heard of us now, so shut up and buy the damn
> Sacrilicious CD" - www.newdisorder.com
> Pirx the Pilot: One of the top three Structuralist punk rock bands in the
> country. www.pirxthepilot.com
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
--
Glen S Mehn
Contract Systems Administrator SquareTrade, Inc
glen@squaretrade.com Building Trust in Transactions (sm)
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: apache_1.3.26
am 09.07.2002 08:11:29 von New Disorder Records
I found the answer, it's SSL_BASE=SYSTEM.
Thanks.
On Mon, 8 Jul 2002, Glen Mehn wrote:
> try adding /usr/local/ssl/lib to your LD_LIBRARY_PATH
>
> this is an educted guess, though... good luck.
>
> -g
>
> On Mon, Jul 08, 2002 at 11:40:37AM -0700, New Disorder Records wrote:
> > well, that's a lot more than I needed. I think the key is somewhere in
> > the
> >
> > SSL_BASE=SYSTEM thing.
> >
> > I have openssl installed, this is redhat, but when I set SSL_BASE=SYSTEM,
> > I still get the error:
> >
> > Error: Cannot find SSL binaries under /usr/local/ssl
> >
> > when I run configure in apache. I don't know what binaries it's looking
> > for, but there is a bin directory under /usr/local/ssl.
> >
> > -Ernst
> >
> > On Mon, 8 Jul 2002, [iso-8859-2] Jan ?kola wrote:
> >
> > > Yes, use this script to compile Apache & mod_ssl & mod_perl & php. If
> > > you dont want it all comment it. I use this with complete success on RH
> > > 7.2, after unzip, config and make go to apache* dir and run make install
> > >
> > > Jan Skola
> > >
> > > > -----Original Message-----
> > > > From: owner-modssl-users@modssl.org
> > > [mailto:owner-modssl-users@modssl.org]
> > > > On Behalf Of New Disorder Records
> > > > Sent: Monday, July 08, 2002 5:13 PM
> > > > To: modssl-users@modssl.org
> > > > Subject: apache_1.3.26
> > > >
> > > > is anyone else having problems compiling apache_1.3.26 with mod_ssl?
> > > I'm
> > > > on a redhat 7.2 box, and mod_ssl just erases my src/makefile in the
> > > apache
> > > > directory. Not erases, but all that's created is a blank header.
> > > After I
> > > > try, I have to wipe the directory and untar apache again so that I can
> > > > compile it without mod_ssl. Any suggestions?
> > > >
> > > >
> > > >
> > > > --
> > > > New Disorder Records "you've heard of us now, so shut up and buy the
> > > damn
> > > > Sacrilicious CD" - www.newdisorder.com
> > > > Pirx the Pilot: One of the top three Structuralist punk rock bands in
> > > the
> > > > country. www.pirxthepilot.com
> > > > ____________________________________________________________ __________
> > > > Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> > > > User Support Mailing List modssl-users@modssl.org
> > > > Automated List Manager majordomo@modssl.org
> > > >
> > >
> > >
> >
> > --
> > New Disorder Records "you've heard of us now, so shut up and buy the damn
> > Sacrilicious CD" - www.newdisorder.com
> > Pirx the Pilot: One of the top three Structuralist punk rock bands in the
> > country. www.pirxthepilot.com
> > ____________________________________________________________ __________
> > Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> > User Support Mailing List modssl-users@modssl.org
> > Automated List Manager majordomo@modssl.org
>
>
--
New Disorder Records "you've heard of us now, so shut up and buy the damn
Sacrilicious CD" - www.newdisorder.com
Pirx the Pilot: One of the top three Structuralist punk rock bands in the
country. www.pirxthepilot.com
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: apache_1.3.26
am 10.07.2002 07:01:32 von Pj Pilley
I agree with Greg check you ld path it should be in your /etc directory
check that it is in there and then run ldconfig to refresh the list and load
the new libraries.
--Pj
>try adding /usr/local/ssl/lib to your LD_LIBRARY_PATH
>this is an educted guess, though... good luck.
>-g
On Mon, Jul 08, 2002 at 11:40:37AM -0700, New Disorder Records wrote:
> well, that's a lot more than I needed. I think the key is somewhere in
> the
>
> SSL_BASE=SYSTEM thing.
>
> I have openssl installed, this is redhat, but when I set SSL_BASE=SYSTEM,
> I still get the error:
>
> Error: Cannot find SSL binaries under /usr/local/ssl
>
> when I run configure in apache. I don't know what binaries it's looking
> for, but there is a bin directory under /usr/local/ssl.
>
> -Ernst
>
> On Mon, 8 Jul 2002, [iso-8859-2] Jan ?kola wrote:
>
> > Yes, use this script to compile Apache & mod_ssl & mod_perl & php. If
> > you dont want it all comment it. I use this with complete success on RH
> > 7.2, after unzip, config and make go to apache* dir and run make install
> >
> > Jan Skola
> >
> > > -----Original Message-----
> > > From: owner-modssl-users@modssl.org
> > [mailto:owner-modssl-users@modssl.org]
> > > On Behalf Of New Disorder Records
> > > Sent: Monday, July 08, 2002 5:13 PM
> > > To: modssl-users@modssl.org
> > > Subject: apache_1.3.26
> > >
> > > is anyone else having problems compiling apache_1.3.26 with mod_ssl?
> > I'm
> > > on a redhat 7.2 box, and mod_ssl just erases my src/makefile in the
> > apache
> > > directory. Not erases, but all that's created is a blank header.
> > After I
> > > try, I have to wipe the directory and untar apache again so that I can
> > > compile it without mod_ssl. Any suggestions?
> > >
> > >
> > >
> > > --
> > > New Disorder Records "you've heard of us now, so shut up and buy the
> > damn
> > > Sacrilicious CD" - www.newdisorder.com
> > > Pirx the Pilot: One of the top three Structuralist punk rock bands in
> > the
> > > country. www.pirxthepilot.com
> > > ____________________________________________________________ __________
> > > Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> > > User Support Mailing List modssl-users@modssl.org
> > > Automated List Manager majordomo@modssl.org
> > >
> >
> >
>
> --
> New Disorder Records "you've heard of us now, so shut up and buy the damn
> Sacrilicious CD" - www.newdisorder.com
> Pirx the Pilot: One of the top three Structuralist punk rock bands in the
> country. www.pirxthepilot.com
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
--
Glen S Mehn
Contract Systems Administrator SquareTrade, Inc
glen@squaretrade.com Building Trust in Transactions (sm)
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org