[PATCH] mod_alias.c - add filename to log warning

2004-03-08 Thread Guenter Knauf
Hi, this patch adds the filename to the log warning since the problem can be in an included file and not only in httpd.conf. --- mod_alias.c.origTue Feb 10 00:16:10 2004 +++ mod_alias.c Mon Mar 08 22:06:20 2004 @@ -137,9 +137,10 @@ if ( (!p-regexp alias_matches(f,

[PATCH] htpasswd.c - use apr_temp_dir_get() for getting temp dir

2004-03-11 Thread Guenter Knauf
Hi, this patch makes htpasswd use the apr_temp_dir_get() instead of only asking the environment vars. If someone isnt fine with the move back into main() of this part, I can provide another patch which leaves the separate function in. In addition I removed some obsolete ifdefs; have tested this

[PATCH] htdigest.c - remove ugly dependance on external cp; use apr_temp_dir_get() for getting temp dir

2004-03-11 Thread Guenter Knauf
Hi, this patch makes htdigest use the apr_temp_dir_get() for getting the temp dir; and also removes the dependance on external cp/copy; changed printout to use apr function like htpasswd; replaced tabs with spaces. I've have tested this on NetWare and Win32. The OMIT_DELONCLOSE I left in for now

Re: 2.0.49 (rc2) tarballs available

2004-03-13 Thread Guenter Knauf
Hi, There are 2.0.49-rc2 tarballs available at: http://httpd.apache.org/dev/dist/ The differences with respect to the rc1 tarball are: - BeOS specific MPM fixes - Netware specific rand.c fixes - Documentation update - Berkeley DB detection fix on FreeBSD Just found that on Win32

Re: [PATCH] mod_alias.c - add filename to log warning

2004-03-13 Thread Guenter Knauf
On Mar 9, 2004, at 9:00 AM, Dirk-Willem van Gulik wrote: On Mar 9, 2004, at 2:25 AM, Guenter Knauf wrote: --- mod_alias.c.origTue Feb 10 00:16:10 2004 +++ mod_alias.c Mon Mar 08 22:06:20 2004 @@ -137,9 +137,10 @@ if ( (!p-regexp alias_matches(f, p-fake) 0

[PATCH] htdbm.c - add terminate() for NetWare

2004-03-13 Thread Guenter Knauf
Hi, this patch makes htdbm keep the screen open when finished so that the user can read the results. --- htdbm.c.origTue Feb 10 00:16:16 2004 +++ htdbm.c Sat Mar 13 16:31:04 2004 @@ -105,9 +105,16 @@ #define HTDBM_NOFILE 4 #define HTDBM_STDIN 5 +static void

what speaks against a 2.1.0 release???

2004-03-13 Thread Guenter Knauf
Hi all, although we had already two or three runs for doing a 2.1.0 release, it still not happened yet. What I really cant understand is why; nobody expects a 'stable' release, those asking for it are pretty much aware of the fact that 2.1 is ALPHA or BETA, so what holds back a relase? Why cant

Re: [PATCH] htpasswd.c - use apr_temp_dir_get() for getting temp dir

2004-03-13 Thread Guenter Knauf
Hi Thom, * Guenter Knauf ([EMAIL PROTECTED]) wrote : Hi, this patch makes htpasswd use the apr_temp_dir_get() instead of only asking the environment vars. If someone isnt fine with the move back into main() of this part, I can provide another patch which leaves the separate function

[PATCH] htdigest.c - remove ugly dependance on external cp; use apr_temp_dir_get() for getting temp dir /corrected

2004-03-13 Thread Guenter Knauf
Hi, corrected cast for gcc; replaced some more printf() I just found. this patch makes htdigest use the apr_temp_dir_get() for getting the temp dir; and also removes the dependance on external cp/copy; changed printout to use apr function like htpasswd; replaced tabs with spaces. I've have tested

[PATCH] htpasswd.c - replace printf() with apr_file_printf()

2004-03-13 Thread Guenter Knauf
Hi, just found this only printf() in htpasswd.c --- htpasswd.c.org Sun Mar 14 00:05:22 2004 +++ htpasswd.c Sun Mar 14 00:27:06 2004 @@ -497,7 +497,7 @@ exit(i); } if (mask APHTP_NOFILE) { -printf(%s\n, record); +

Re: what speaks against a 2.1.0 release???

2004-03-13 Thread Guenter Knauf
Hi, The reason is mainly that I dropped the ball on the 2.1 release. I'll try and get on top of that in the next two weeks. If someone else wants to beat me to it, that's fine too. thanks very much, Sander! Guenter.

[PATCH] htdbm.c - fix comment display

2004-03-13 Thread Guenter Knauf
Hi, this patch fixes a typo and makes htdbm display the comment. --- htdbm.c.org Sat Mar 13 16:31:04 2004 +++ htdbm.c Sun Mar 14 02:32:06 2004 @@ -261,7 +261,7 @@ fprintf(stderr, %-32s, kb); strncpy(rec, val.dptr, val.dsize); rec[val.dsize] = '\0'; -

Re: [PATCH] htdigest.c - remove ugly dependance on external cp; use apr_temp_dir_get() for getting temp dir

2004-03-14 Thread Guenter Knauf
Hi, * Guenter Knauf ([EMAIL PROTECTED]) wrote : Hi, this patch makes htdigest use the apr_temp_dir_get() for getting the temp dir; and also removes the dependance on external cp/copy; changed printout to use apr function like htpasswd; replaced tabs with spaces. This really ought to be 4

[PATCH] htdigest.c - use apr_temp_dir_get() for getting temp dir

2004-03-14 Thread Guenter Knauf
Hi, this patch makes htdigest use the apr_temp_dir_get() for getting the temp dir; --- htdigest.c.orig Mon Feb 09 21:59:50 2004 +++ htdigest.c Sun Mar 14 19:07:20 2004 @@ -208,6 +208,7 @@ apr_file_t *f; apr_status_t rv; char tn[] = htdigest.tmp.XX; +char

[PATCH] htdigest.c - remove ugly dependance on external cp/copy

2004-03-14 Thread Guenter Knauf
Hi, this patch removes the dependance on external cp/copy. --- htdigest.c.orig-1 Sun Mar 14 19:07:20 2004 +++ htdigest.c Sun Mar 14 19:21:40 2004 @@ -63,9 +63,9 @@ * we need to close the file before we can copy it. * otherwise it's locked by the system ;-( * - * XXX: Other

[PATCH] htdigest.c - move output to apr_file_printf()

2004-03-14 Thread Guenter Knauf
Hi, this patch does: - replace the printf/fprintf with apr_file_printf(), as htpasswd also uses. - remove now obsolete command[] var (sorry, I know this belongs to patch 2, please forgive!) --- htdigest.c.orig-3 Sun Mar 14 19:33:42 2004 +++ htdigest.c Sun Mar 14 19:59:54 2004 @@ -70,6

Re: 2.0.49 (rc2) tarballs available

2004-03-15 Thread Guenter Knauf
Hi, On Mon, 2004-03-15 at 22:02, André Malo wrote: * Sander Striker [EMAIL PROTECTED] wrote: There are 2.0.49-rc2 tarballs available at: Please inform us of any problems you encounter. Thanks, I'm going to backport the enableexceptionhook docs. Please put them also into the next tag.

Re: 2.0.49 (rc2) tarballs available

2004-03-15 Thread Guenter Knauf
Hi, A +1 after the patch should put us on the track for releasing it. Testers? Makefile.win on HEAD and APACHE_2_0_BRANCH should be golden. http://cvs.apache.org/viewcvs.cgi/httpd-2.0/Makefile.win?rev=1.120.2.14 +1; works again for me ; the ssl*.conf files are no longer empty. Guenter.

Re: [PATCH] htdigest.c - remove ugly dependance on external cp; use apr_temp_dir_get() for getting temp dir

2004-03-15 Thread Guenter Knauf
Hi Thom, This really ought to be 4 seperate patches for ease of review. Please can you resend as such? something's wrong with the four splitted patches, or simply no time to review?? Guenter.

[PATCH] mod_log_forensic, BaseAddr.ref

2004-04-21 Thread Guenter Knauf
Hi, this patch fixes compilation on Win32 for me since older SDK has no unistd.h; and btw. I was also able to compile without unistd.h for NetWare target without warnings about missing prototypes, so maybe its obsolete at all --- mod_log_forensic.c.orig Sat Feb 21 18:15:20 2004 +++

Re: [PATCH] mod_log_forensic, BaseAddr.ref

2004-04-27 Thread Guenter Knauf
this patch fixes compilation on Win32 for me since older SDK has no unistd.h; and btw. I was also able to compile without unistd.h for NetWare target without warnings about missing prototypes, so maybe its obsolete at all archived as BZ #28572:

Re: [PATCH] mod_log_forensic, BaseAddr.ref

2004-04-27 Thread Guenter Knauf
Arghh! sorry, hit the wrong button -- this should go deleted instead of sended! this patch fixes compilation on Win32 for me since older SDK has no unistd.h; and btw. I was also able to compile without unistd.h for NetWare target without warnings about missing prototypes, so maybe its

[PATCH] ./docs/conf/ssl-std.conf.in

2004-05-08 Thread Guenter Knauf
Hi, 2.1-dev/docs/conf/ssl-std.conf.in contains: # Semaphore: # Configure the path to the mutual exclusion semaphore the # SSL engine uses internally for inter-process synchronization. SSLMutex file:@exp_runtimedir@/ssl_mutex while mod_ssl says: SSLMutex - Valid SSLMutex mechanisms are:

[PATCH AP13] ./src/os/netware/ApacheCore.imp - missing symbol

2004-05-17 Thread Guenter Knauf
Hi, need ap_escape_logitem exported for a third-party module: --- ApacheCore.imp.orig Thu Apr 15 17:51:52 2004 +++ ApacheCore.imp Mon May 17 15:42:04 2004 @@ -79,6 +79,7 @@ ap_each_byterange, ap_error_log2stderr, ap_escape_html, + ap_escape_logitem, ap_escape_path_segment,

Any plans for 2.0.50 ?

2004-05-19 Thread Guenter Knauf
Hi, I just found that SSL is on Win32 broken with Apache 2.0.49 on NT, 2K and XP: when I stop Apache2 after an ssl request was made it segfaults. I checked with recent 2.1-dev and 2.0.50-dev and seems this issue is there fixed. Also there's a minor issue with the standard ssl.conf file which has

location for raw list archives

2004-05-19 Thread Guenter Knauf
Hi, I was just looking for the raw list archives so that I can setup my own server with mod_mbox; first I found that the mod_mbox link on http://httpd.apache.org/lists.html to http://nagoya.apache.org:/ doesnt work. Then I wonder that there are only a few lists available; I can find

Re: location for raw list archives

2004-05-21 Thread Guenter Knauf
Hi Cliff, is it possible to make these also available for download? Already are: http://httpd.apache.org/mail/dev/ http://apr.apache.org/mail/dev/ thanks very much! Found then also the other lists I was looking for at: http://jakarta.apache.org/mail/ Guenter.

Re: Rebuilding modules.apache.org

2004-06-02 Thread Guenter Knauf
Hi, Developing Modules: An area of general weakness for HTTPd is the lack of developer documentation. The current website has a few links to mostly outdated documents. We plan to address this audience in two thrusts. First, provide concise tutorials by using simple modules to help people

Re: Antw: Re: mod_ldap Win32

2004-06-04 Thread Guenter Knauf
Hi Andre, Any chance you could send me your mod_ldap.so util_ldap.so for windows ? So I can compare/test them with my modules ? have you tried a build with Netscape SDK? You can get binaries from my site: http://www.gknw.com/development/apache/ however I have not tested ldap on Win32 for

RE: about time for another 2.0.x release?

2004-06-15 Thread Guenter Knauf
Hi Sander, Agreed. I'm willing to volunteer to do the TR. May aswell cut a 2.1 at the same time aswell... that would be really great! Hopefully it will make it then also up to the mirrors... Guenter.

[OT] cvs guru wanted

2004-06-15 Thread Guenter Knauf
Hi, does somebody know if its possible to move a file from one dir to another without loosing the history? thanks, Guenter.

[PATCH] add mod_dav_lock to Win32 build

2004-06-29 Thread Guenter Knauf
Hi, is there any reason why we dont build mod_dav_lock yet for Win32 platform? I was just asked this by another user; I looked at the manual, but cant find anything which indicates that the module is on Win32 obsolete attached mod_dav_lock.dsp I've just created. thanks, Guenter.

[PATCH] compile mod_deflate with zlib 1.2.1

2004-06-29 Thread Guenter Knauf
Hi, attached patch makes mod_deflate compile with zlib 1.2.1 on NetWare. thanks, Guenter. --- NWGNUdeflate.orig Sun Mar 07 06:15:34 2004 +++ NWGNUdeflateWed Jun 30 01:24:38 2004 @@ -39,7 +39,6 @@ # These flags will come after CFLAGS # XCFLAGS+= \ -

RE: Invitation to HTTPD commiters in tomcat-dev

2004-07-20 Thread Guenter Knauf
Hi, 1. Fantastic documentation. I cannot stress this enough. Hell, I'd even volunteer for this part. The module iteself could be poorly implemented, problematic to compile, and have truly silly defaults, but if it was incredibly well and clearly documented, I'd use it over mod_jk2 starting

strange autoindex icon behaviour on Unix

2004-07-24 Thread Guenter Knauf
Hi, I wonder if this is intended behaviour: if I have an auto-indexed page with Perl scripts, and the scripts are 600 then I see the p.gif icon, once I chmod them 604 I get the text.gif icon also cant find any hint in the manual, so if it is intended feature it should be documented, or?

Re: [AJP] proxy status

2004-08-12 Thread Guenter Knauf
Hi, That seems rational to me. The reason for proposing [EMAIL PROTECTED] is so that tomcat-dev'ers wouldn't have to swallow the full bandwidth of [EMAIL PROTECTED] (converse of the problem where they asked anyone in [EMAIL PROTECTED] to follow [EMAIL PROTECTED] for the duration of that

Re: Proxy_ajp - build problem - NetWare

2004-08-15 Thread Guenter Knauf
Hi, Get the following while trying a build on a NetWare platform form CVS 2.1 HEAD: Generating Release\proxyajp_cc.opt Compiling proxy_ajp.c Compiling proxy_util.c Compiling c:\projects\gccnlm\ajplib/ajp_header.c Compiling c:\projects\gccnlm\ajplib/ajp_msg.c Compiling

Re: Proxy_ajp - build problem - NetWare

2004-08-15 Thread Guenter Knauf
Hi, since I doubt we get the apr_socket functions to use apr_byte_t instead of char in the near future, attached the patch for the makefile wich makes the compiler as 'tolerant' as others... Guenter. Get the following while trying a build on a NetWare platform form CVS 2.1 HEAD: Generating

Re: Proxy_ajp - build problem - NetWare

2004-08-16 Thread Guenter Knauf
Hi Norm, One question... proxybalancer comes out as proxybalancer.nlm ... is it still a requirement for 8.3 filenames? no. It was gone with NW5.1SP6, NW6SP3 and NW6.5 from shipping I think; but I spoke with Brad, and we decided to stay for a while with the 8.3 names for NW 5.1 compatiblity, or

Re: Bugzilla flow (Re: Add 2.2.4 to bugzilla)

2007-01-20 Thread Guenter Knauf
Hi, What I'm most unhappy about is that we have 783 bugs in New, Assigned, Reopened, NeedInfo... that seems like quite a lot. Perhaps Then let's start and solve two of the 783 so we can these cross off the list +---+ |

[PATCH] enable another basedir during 'make install' for NetWare

2007-01-20 Thread Guenter Knauf
Hi Brad, I have just created a patch which changes a couple of NWGNU* files in order to make it possible to specify another basedir during a 'make install' than using the hardcoded 'Apache2'. Since the conf files need also then changed I've also attached a second patch against mkconfNW.awk

Re: [PATCH] enable another basedir during 'make install' forNetWare

2007-01-22 Thread Guenter Knauf
Hi Brad, Can you split this patch up into httpd, apr and apr-util and also create the diff file against trunk rather than 2.4? Since this patch done: http://www.gknw.net/test/httpd_patches/httpd_makefiles.diff http://www.gknw.net/test/httpd_patches/2_mkconfNW.awk.diff

Re: Bugzilla flow (Re: Add 2.2.4 to bugzilla)

2007-01-22 Thread Guenter Knauf
Hi, What I'm most unhappy about is that we have 783 bugs in New, Assigned, Reopened, NeedInfo... that seems like quite a lot. Perhaps Then let's start and solve two of the 783 so we can these cross off the list +---+ |

[FG-Spam***** ] [PATCH] add experimental modules makefiles for NetWare

2007-03-08 Thread Guenter Knauf
If this email is not spam, click here to submit the signatures to FortiGuard - AntiSpam Service. Hi Brad, can you please commit the attached makefiles to the 'experimental' modules folder, and patch the existing NWGNUmakefile in order to pick up the new ones? Since its no code change

[PATCH] add experimental modules makefiles for NetWare

2007-03-09 Thread Guenter Knauf
Hi Brad, can you please commit the attached makefiles to the 'experimental' modules folder, and patch the existing NWGNUmakefile in order to pick up the new ones? Since its no code change probably also for the 2.2.x line? thanks, Guenter. NWGNUmakefile.diff Description: Binary data

Re: [PATCH] add experimental modules makefiles for NetWare

2007-03-09 Thread Guenter Knauf
Hi, Already done in trunk. I still need to add them to 2.2 branch thanks! Guenter.

question about mod_dbd.c / apr_dbd.c

2007-03-09 Thread Guenter Knauf
Hi all, I was just trying to get the mod_dbd /apr_dbd stuff working for NetWare, and would like to make a suggestion regarding the DSO extension: in apr_dbd.c we have this: #ifdef WIN32 sprintf(path, apr_dbd_%s.dll, name); #else apr_snprintf(path, sizeof path, APU_DSO_LIBDIR

[PATCH] add access_compat_module to httpd.conf for NetWare

2007-03-11 Thread Guenter Knauf
Hi Brad, can you please apply the attached patch to trunk; it adds the LoadModule statement for the access_compat_module to httpd.conf. thanks, Guenter. mkconfNW.awk.diff Description: Binary data

[PROPOSAL] use of SVN $id keyword

2007-03-22 Thread Guenter Knauf
Hi all, I would find it useful to have the SVN revision info in the head of the sources; and therefore I looked into it to see how its done with SVN: 1. the file needs a $id: $ tag. 2. the file needs a 'svn propset svn:keywords Id file' 3. the client's config needs a line '*.* = svn:keywords=Id'

Re: [PROPOSAL] use of SVN $id keyword

2007-03-22 Thread Guenter Knauf
Hi Ruediger, Hm. I would like to hear some comments by the svn gurus on that. Questions that come up to my mind are: 1. What revision number will be shown in the tag: The revision number of the last change of this file or the revision number that is actual at the point of time

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Guenter Knauf
Hi, I'll take this as a resounding no, and that the draft package is sufficient. Moving it within 24 hrs unless I hear a specific technical objection. I've heard from a couple of users that they prefer *.zip archives rather than the *.msi files; and hacked a WSH script to fix the config files

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Guenter Knauf
Hi, Should we add a cert-creation .sh and .vbs script to support/ for this purpose (on any platform)? Sounds like a great idea to me! +1 from me. If you find my vbs useful then I will contribute it. I've spent a good time to find at least something working; the Inet is full of stuff, but

Re: 2.2.4 windows binary w/ssl?

2007-03-22 Thread Guenter Knauf
Hi Mladen, Drop an eye on: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/mkcerts? view=markup I've also spend a good deal of time on that, so it might be helpful :) yeah!! Thanks! Will do, and update my vbs soon thanks, Guenter.

Re: mod_ftp, status and progress?

2007-03-27 Thread Guenter Knauf
Hi, is it possible that with your last commit changes you forgot to update mod_ftp.h too? I tried to compile for NetWare, and needed this in order to get it compiled: --- mod_ftp.h.orig Tue Mar 27 13:27:22 2007 +++ mod_ftp.h Tue Mar 27 13:49:04 2007 @@ -250,6 +250,8 @@ const char

Re: mod_ftp, status and progress?

2007-03-27 Thread Guenter Knauf
Hi, also want to ask if it is ok when I add NetWare makefiles? Be our guest :) Keep it mind it's ment to be built against installed httpd, or built in tree (within modules/ftp/) as desired. sorry, but for now only inside tree; anyway all NetWare compile is sort of cross-compile, and way

Re: DAV and lazy evaluation

2007-03-29 Thread Guenter Knauf
Hi Nick, I'm developing a DBD-based DAV backend. do you know about the Catacomb project? http://catacomb.tigris.org/ they have similar plans, and probably it would make sense to participate there: from recent catacomb mailing list: Are there any other plans for developing catacomb in near

Re: mod_ftp, status and progress?

2007-04-18 Thread Guenter Knauf
Hi, the current code fails to build for Win32 target. This is because ftp_glob.c seems not APR-ised yet; g_opendir() uses the DIR struct which is not available on Win32 AFAICT. Guenter.

Re: mod_ftp, status and progress?

2007-04-19 Thread Guenter Knauf
Hi Bill, You built from modules/ftp/mod_ftp.dsp, or built with modules/ftp/Makefile.apxs? Apologies! Was entirely my fault; I did self add the ftp_glob.c to mod_ftp.dsp cause I thought that was forgotten to add; sorry. Compiles now fine when I use original mod_ftp.dsp, at least for 2.2; for

bug with Apache 1.3 NetWare build system

2007-04-19 Thread Guenter Knauf
Hi Brad, I've just found that we have same bug in the AP13 build system as what I fixed long time ago with the AP2x build system already; in each NWGNUmakefile.mak you can read: # # These flags will be added to the link.opt file # XLFLAGS += \ $(EOLIST) but in

[PATCH] bug with Apache 1.3 NetWare build system

2007-04-19 Thread Guenter Knauf
Hi Brad, I've examined a bit further, and found more issues with the XLFLAGS; it was mis-used for the xdcdata option; so now I have a more complete patch which fixes: - issue with XLFLAGS which was used wrong previously - issue with handling of the xdcdata option - issue with copyright string

RE: SSL-enabled interaction with MySQL

2007-04-26 Thread Guenter Knauf
Hi Naveen, My communication from my module, is database specific (my MySQL is already SSL-enabled). So is it only up to the MySQL SSL-specific C API to provide SSL (I tried using mysql_ssl_set() with no success) or there has more to be done at my module's code end? I have no experience

Re: mod_ftp, status and progress?

2007-04-26 Thread Guenter Knauf
Hi, Wouldn't it be better to focus on 2.2.x and onwards? OK, there's a lot of people still running 1.3 and 2.0, but that doesn't mean that we have to make it run on all of them... I'm all for focusing on getting it usable for 2.2+, and if people it compile and runs fine with 2.2.x at least on

RE: SSL-enabled interaction with MySQL

2007-04-27 Thread Guenter Knauf
Hi Naveen, Does your client library know SSL? Really?) YES. My database (MySQL) is compiled from source and my end libmysqlclient supports SSL and that too very well. This already been tested from a very basic standalone database client + a packet sniffer tool (ethereal). what I'm currently

RE: SSL-enabled interaction with MySQL

2007-04-27 Thread Guenter Knauf
Hi all, although some of us might find the thread here interesting, some others might object that it doesnt belong to this list because: - its mysql-related and has nothing to do with Apache itself - we speak here about a third-party module which is also not part of Apache even if we are going

Re: Apache Http Server Authentication/Authorisation

2007-04-27 Thread Guenter Knauf
Hi, I have a Apache Http Server, this apache is my front end and protects some resource on my AppServer. To protect I use .htaccess and mod_auth.. So I would like to know how is it possible to configure Apache to send some informations about the authenticated user to my AppServer ? Is it

RE: SSL-enabled interaction with MySQL

2007-04-30 Thread Guenter Knauf
Hi Naveen, A standalone client is working perfect to provide the SSL layer with the database, and it is using the same client lib (libmysqlclient). I used common ethereal tool to ensure that everything it does is encrypted. I used the same mysql_ssl_set() prior to establishing the connection.

RE: SSL-enabled interaction with MySQL

2007-04-30 Thread Guenter Knauf
Hi Naveen, another shot: I'm just also hacking in the module, and I see this few lines above the mysql connect: if (!conf-db_host || strcmp(conf-db_host,localhost) == 0 || strcmp(conf-db_host,127.0.0.1) == 0) { db_host = NULL; db_port = 0; } else { ... I'm not

RE: SSL-enabled interaction with MySQL

2007-04-30 Thread Guenter Knauf
Hi Naveen, here's what I have hacked so far: http://svwe10.itex.at/downloads/mod_auth_mysql/ to keep the code more readable I've inserted a new function exists() (borrowed from htpasswd.c) which does for now _only_ check if the certs exists; but should be easily extendable for permission check

RE: SSL-enabled interaction with MySQL

2007-04-30 Thread Guenter Knauf
Hi Naveen, new archive: http://svwe10.itex.at/downloads/mod_auth_mysql/ replaced exists() with accessible() (also borrowed from htpasswd.c); so should now also check for read permissions... Guenter.

RE: SSL-enabled interaction with MySQL

2007-04-30 Thread Guenter Knauf
Hi, again a new complete archive: http://svwe10.itex.at/downloads/mod_auth_mysql/ mod_auth_mysql.c source for viewing: http://svwe10.itex.at/downloads/mod_auth_mysql/mod_auth_mysql.c changes summary: http://svwe10.itex.at/downloads/mod_auth_mysql/changes.new shell script from mysql site to create

RE: SSL-enabled interaction with MySQL

2007-05-01 Thread Guenter Knauf
Hi, Huge regards for your efforts. I am wee bit taking more time as I am also looking out for other options like using some SSL-supportive intermediaries; hehe, you wanted a solution for the future, and I contacted already the author; he will add this extension to the module once we have

RE: SSL-enabled interaction with MySQL

2007-05-03 Thread Guenter Knauf
Hi Naveen, Followed your last mail. Still getting the same 'SSL connection error' in the logs. Ueli, the module author, did also test, and told me that he couldnt get it working with the MYSQL_OPT_SSL_VERIFY_SERVER_CERT have set; so he added another directive for that, and by default this part

Question about httpd / APR version relationship

2007-05-09 Thread Guenter Knauf
Hi all, currently from what I see we use: Apache 2.0.x - has to use APR 0.9.x Apache 2.2.x - has to use APR 1.2.x Apache 2.3.x - has to use APR 1.3.x is this now a mandatory relationship, or is it valid to: build Apache 2.2.x with APR 1.3.x build Apache 2.3.x with APR 1.2.x I assume on Linux

Re: Question about httpd / APR version relationship

2007-05-10 Thread Guenter Knauf
Hi, On 5/9/07, Guenter Knauf [EMAIL PROTECTED] wrote: Apache 2.0.x - has to use APR 0.9.x Apache 2.2.x - has to use APR 1.2.x Apache 2.3.x - has to use APR 1.3.x is this now a mandatory relationship, or is it valid to: build Apache 2.2.x with APR 1.3.x This would likely work, but I

Re: svn commit: r551281 - /httpd/httpd/branches/2.2.x/STATUS

2007-06-27 Thread Guenter Knauf
Hi Ruediger, Not a real problem and maybe nitpicking from my side, but the policy is to add new proposals to the end of the file as you have done with your second proposal. thanks, and sorry, but I wasnt aware. Just saw the two other mod_dbd related ones which suggested me that they were

[PROPOSAL] add a sslport option

2007-06-27 Thread Guenter Knauf
Hi all, I would like to have the SSL port also be setable as with the standard port; Win32 has already a hack in, but I would also like to add such for Linux and NetWare here's my patch: http://people.apache.org/~fuankg/diffs/sslport.diff I believe it should work on Linux too, but would like

Re: Changing the default httpd.conf

2007-06-28 Thread Guenter Knauf
Hi Mario, I've noticed that most newbies to httpd apache have theier difficults with changing the doc_root. The path DocumentRoot c:/Apache2/htdocs isn't near by # This should be changed to whatever you set DocumentRoot to. ... Is there a chance to change that? IMHO it would make it

STATUS viewer script

2007-06-28 Thread Guenter Knauf
Hi all, in order to review all the backport proposals a little bit easier I've just hacked a PHP script which creates links so that one can directly check the mentioned revisions and PRs. The script doesnt yet catch them all, but most... http://www.gknw.net/apstatus/

where do the APR(-UTIL) backports go?

2007-06-28 Thread Guenter Knauf
Hi, just looked at the APR(-UTIL) 1.2.x STATUS file, but dont see there any backport proposals I've also few build system related (NetWare) backport proposals, where should I put them in? greets, Guenter.

Re: Bug report for Apache httpd-2 [2007/07/01]

2007-07-02 Thread Guenter Knauf
probably it helps a little bit to reduce these 888 bugs if we can easier read... http://www.gknw.net/apbugs/ http://www.gknw.net/apbugs/?version=13 Guen.

Re: Bug report for Apache httpd-2 [2007/07/01]

2007-07-02 Thread Guenter Knauf
Hi Erik, http://people.apache.org/~erikabele/httpd/bugstats/ looks very great; but seems that only the 1.3.x stats are uptodate - the 2.x stats unfortunately stop at 2005/11/27 ... for some more motivation :-) hmm, but one person alone cant do anything; if someone picks up a bug and tries to

Re: mod_auth_sspi

2007-08-08 Thread Guenter Knauf
Hello Simon, I extend the module mod_auth_sspi to provide some password features (password revoked, Password must change ...). All works fine but i think that the modul has a bug and i don't know how to resolv it. i'm not the absolute programmer but small things are ok for me. :-) I think you

Re: [VOTE] Apache 2.2.5, 2.0.60 1.3.38 release candidate tarballs for review

2007-08-10 Thread Guenter Knauf
Hi Jim, Available for your testing pleasure, 3, count 'em, 3 Apache HTTP Server release candidate tarballs, located, I found a very small build problem which is caused by my own fault (I tested wrong before); what happens is that we changed recently the distribution directory to /apache22, but

Re: [VOTE] Apache 2.2.5, 2.0.60 1.3.38 release candidate tarballs for review

2007-08-14 Thread Guenter Knauf
Hi, That is what I am finding with thi set of prereleases. One exaple http://www.nk.ca/cgi-bin/syswatch.pl And another http://ns2.nk.ca/cgi-bin/syswatch.pl it seems to me that you have not setup syswatch properly since the red and green pictures for the bars are missing; this does

Re: {Spam?} Re: [VOTE] Apache 2.2.5, 2.0.60 1.3.38 release candidate tarballs for review

2007-08-14 Thread Guenter Knauf
Hi Doc, I may need some pointers on this. well, that's simple: IIRC the syswatch script uses a very small picture to create the read and green bars; I dont see these bars, but instead my browser displays a place holder, and that suggests me that you have not setup the path or the rights for

Re: [VOTE] Apache 2.2.5, 2.0.60 1.3.38 release candidate tarballs for review

2007-08-14 Thread Guenter Knauf
Hi, Further I do find in my logs: [Tue Aug 14 18:25:26 2007] [error] [client 1800:0:a8b4:d608:84a5:5748:6875:408] client denied by server configuration: /var/www/docs/vispan/queue.gif, referer: http://www.nk.ca/vispan/ [Tue Aug 14 18:25:26 2007] [error] [client

Re: And 2.2.6 Re: Notice of Intent: TR 2.0.61

2007-08-21 Thread Guenter Knauf
Hi, The fact that the apr_proc* API is so horribly convoluted yet still broken on Win32 is kind of ironic. If it's not fixable can we just abandon it? The code to implement piped loggers can be much simpler and more efficient on Unix if implemented natively. may I ask a question on this

Re: auth dbd pgsql issues

2007-08-21 Thread Guenter Knauf
Hi Chris, I think you're right about the problem you're encountering; the patches for 2.2.x await a third vote and so they're not in expected in 2.2.5/6, as it stands at the moment. I think you would increase chance for another vote if there would be only _one_ patch which applies cleanly

Re: auth dbd pgsql issues

2007-08-25 Thread Guenter Knauf
Hi, If a single patch file helps, here it is: http://people.apache.org/~chrisd/patches/mod_dbd_pools_groups/mod_dbd-all-2.2.x.patch thanks! Applied cleanly, and solved at least two crash conditions for me; another friend who's on NetWare tried the patch too, and reported same; therefore

new mime type needed?

2007-11-07 Thread Guenter Knauf
Hi, just another compression utility is going to become very popular: http://www.7-zip.org/ and there's also a commandline for Unix / Win32: http://sourceforge.net/projects/p7zip/ maybe we should add the .7z extension to the httpd mime.types file? perhaps something like: application/x-7-zip

update for http://www.apache.org/dist/httpd needed... /resend

2007-11-07 Thread Guenter Knauf
Hi, the file / link: http://www.apache.org/dist/httpd/CURRENT-IS-2.2.4 seems no longer correct. Guen.

Re: [PROPOSAL] Adoption of mod_dns to httpd?

2007-11-14 Thread Guenter Knauf
Hi Issac, I'd like to offer up mod_dns (http://www.beamartyr.net/mod-dns-1.02.tar.bz2) for inclusion in the httpd project (either as a mod_ftp-like subproject, or as module with the standard distribution - whatever people prefer). Can people vote for what they're most comfortable with? [x

Re: [PROPOSAL] Adoption of mod_dns to httpd?

2007-11-15 Thread Guenter Knauf
Hi Issac, Issac Goldstand schrieb: I don't think that #include rr.h would work with apxs (which is the build method that I wrote it around). no problem; you can just tell apxs to use an include path; I've just tried on my SuSE box with: apxs2 -c -I . *.c rr/*.c build.log 21 here's the

[PATCH] fix for const mismatch in 2.0.x ssl_scache_shmht.c

2007-11-25 Thread Guenter Knauf
Hi all, when I try to compile Apache 2.0.x mod_ssl with OpenSSL 0.9.8 then I get a const mismatch: ### mwccnlm Compiler: #File: ssl_scache_shmht.c # --- # 237: sess = d2i_SSL_SESSION(NULL, ucpData, nData); # Error:

Re: svn commit: r598669 - /httpd/httpd/trunk/modules/experimental/config.m4

2007-11-27 Thread Guenter Knauf
Hi Ruediger, On 11/27/2007 04:18 PM, [EMAIL PROTECTED] wrote: I think it would be good if someone with a deeper understanding of Novell makefiles could have a look at the Novell makefiles in experimental/. I guess they are now broken too, because of the move of mod_substitute. yes, but that

Re: [PATCH] Case insensitive username matching for WIN32 and BS2000 (and OS2?)

2007-12-04 Thread Guenter Knauf
Hi Martin, The usernames in WIN32 are, IIRC , case insensitive (and they are in BS2000, and perhaps in OS2?). when authenticating against system accounts then NetWare is insensitive too. Some of the username auth code uses tables, and thus case insensitive matching, but at some places, user

Re: svn commit: r601843 - in /httpd/mod_ftp/trunk: STATUS include/mod_ftp.h

2007-12-07 Thread Guenter Knauf
Hi, Who's interested in seeing a TR and helping make the release happen? me. But current code doesnt compile for Ipv4 due to improper ifdefs in ftp_commands.c; here's what makes it compile - however first hunk seems not nice... --- ftp_commands.c.orig Fri Dec 07 19:38:14 2007 +++ ftp_commands.c

Re: svn commit: r601843 - in /httpd/mod_ftp/trunk: STATUS include/mod_ftp.h

2007-12-07 Thread Guenter Knauf
Hi Bill, then there's another issue with mod_ftp.c which I will soon look at Please let me know, if you say alls' well, I'll tag. well, as you've seen I've committed a simple fix (no var declarations after function calls), and now all compiles fine for NetWare; then loaded with my old

[PROPOSAL] introduce a global define for including unixd.h

2007-12-07 Thread Guenter Knauf
Hi, I came a couple of times already over the ifdefs to avoid the inclusion of unixd.h; also many 3rd party modules have this problem; therefore I would like to see a global define somewhere for that, f.e. AP(R?)_NEEDS_UNIXD_H or such; can we perhaps introduce that? This would in future avoid

Re: svn commit: r601843 - in /httpd/mod_ftp/trunk: STATUS include/mod_ftp.h

2007-12-07 Thread Guenter Knauf
Hi Bill, Just a hint: last time I tested also with cURL which caused for whatever reason a segfault with mod_ftp (r525888); so if possible you should also try some transfers with cURL... Hmmm - any chance you were using IPv6? nope - IPv4. The patches I committed today resulted from chasing

  1   2   3   4   5   6   >