Re: httpd meetup/hackathon, January?

2009-12-15 Thread Jeff Trawick
On Tue, Dec 15, 2009 at 2:38 AM, Justin Erenkrantz jus...@erenkrantz.com wrote: On Mon, Dec 14, 2009 at 3:52 PM, Jeff Trawick traw...@gmail.com wrote: On Mon, Dec 14, 2009 at 6:27 PM, Paul Querna p...@querna.org wrote: Update: looks like we will be doing it on January Tuesday 26th at the Y!

Re: svn commit: r888840 - in /httpd/mod_fcgid/trunk/modules/fcgid: fcgid_bridge.c fcgid_pm_main.c

2009-12-15 Thread Jeff Trawick
On Wed, Dec 9, 2009 at 10:36 AM, p...@apache.org wrote: Author: pqf Date: Wed Dec  9 15:36:46 2009 New Revision: 40 URL: http://svn.apache.org/viewvc?rev=40view=rev Log: Bug fix,  Bug 47873 -  unreliable coordination between daemon and request thread for BusyTimeout processing

Re: mod_fcgid, mod_ftp both ready to tag?

2009-12-15 Thread Jeff Trawick
On Mon, Dec 14, 2009 at 6:17 PM, Jeff Trawick traw...@gmail.com wrote: On Mon, Dec 14, 2009 at 5:36 PM, William A. Rowe Jr. wr...@rowe-clan.net wrote: I was going to make a couple fixes in the morning to abstract out the QoS related calls in mod_ftp, and then tag both of these if folks think

apache module's privileges

2009-12-15 Thread Jordi Prats
Hi all, I've a question about module's permissions. A module with a hook on post_config like this: static int sixs_code_config(apr_pool_t *p, apr_pool_t *log, apr_pool_t *temp, server_rec *s) { system(id /tmp/id_apache_baltar); return OK; } ap_hook_post_config(sixs_code_config,

Re: apache module's privileges

2009-12-15 Thread Dan Poirier
Jordi Prats jordi.pr...@gmail.com writes: If you start apache with root as usual, you realize that every module is able to run code with root privileges: ... Why is coded this way? Shouldn't run with lower privileges? No. That's not the purpose of apache modules.

Re: apache module's privileges

2009-12-15 Thread Graham Dumpleton
2009/12/16 Dan Poirier poir...@pobox.com: Jordi Prats jordi.pr...@gmail.com writes: If you start apache with root as usual, you realize that every module is able to run code with root privileges: ... Why is coded this way? Shouldn't run with lower privileges? No.  That's not the purpose of

Re: apache module's privileges

2009-12-15 Thread Graham Leggett
Jordi Prats wrote: I've a question about module's permissions. A module with a hook on post_config like this: static int sixs_code_config(apr_pool_t *p, apr_pool_t *log, apr_pool_t *temp, server_rec *s) { system(id /tmp/id_apache_baltar); return OK; }

Re: apache module's privileges

2009-12-15 Thread Dan Poirier
Graham Dumpleton graham.dumple...@gmail.com writes: 2009/12/16 Dan Poirier poir...@pobox.com: Jordi Prats jordi.pr...@gmail.com writes: If you start apache with root as usual, you realize that every module is able to run code with root privileges: ... Why is coded this way? Shouldn't run

Re: Building 2.3.4.alpha on AIX 6.1

2009-12-15 Thread Michael Felt
I neither claim to ben nor wish to be a dev, but I was told that testers should post here. Over time, I'll learn more about the components, but I am guessing the libtool delivered with the alpha release is broken somehow for AIX. Not really surprising actually. If anyone is interested, please

Re: svn commit: r888840 - in /httpd/mod_fcgid/trunk/modules/fcgid: fcgid_bridge.c fcgid_pm_main.c

2009-12-15 Thread pqf
Hi, I google a bit, it seems not much user encountered a busy timeout issue, and the old protocol should work in most cases, so I think it's no need to note in CHANGES? Next time I will separate commit logic changes and style changes :) Thanks