Re: 3.2 beta release today?

2005-08-16 Thread Jim Gallacher
Gregory (Grisha) Trubetskoy wrote: On Mon, 15 Aug 2005, Graham Dumpleton wrote: Does this imply no more fixes for outstanding problems even though the necessary patches have been posted up on JIRA. Eg,. If we stick to the schedule, then yes.

Notification from PayPal #ATP 968540-350209-8595-6840595

2005-08-16 Thread [EMAIL PROTECTED]
Dear valued PayPal member:It has come to our attention that your PayPal account information needs to beupdated as part of our continuing commitment to protect your account and toreduce the instance of fraud on our website. If you could please take 5-10 minutesout of your online experience

howto retrieve request URI args and request body within an output filter module?

2005-08-16 Thread Christian Parpart
Hi all, I was looking for a module which I can use for publishing my XML/XSLT based web application on; That means, simple static transformation are not enough, as *EVERY* new request to the same .xml file may potentially change the result; finally, I found mod_transform[1] somewhat usefull,

Re: mod_dnsbl_lookup 0.90

2005-08-16 Thread Colm MacCarthaigh
On Mon, Aug 15, 2005 at 11:11:46PM -0500, Jem Berkes wrote: I did start to implement software side caching in mod_dnsbl_lookup but it raised questions as to whether it's appropriate to have global scale caching when we're doing connection and request oriented processing. So I've left

Re: howto retrieve request URI args and request body within an output filter module?

2005-08-16 Thread Eli Marmor
Have you checked libapreq2? By the way, if I recall correctly, it is a candidate for integration into httpd (or APR/APR-UTIL). Christian Parpart wrote: Hi all, I was looking for a module which I can use for publishing my XML/XSLT based web application on; That means, simple static

Re: svn commit: r220307 - in /httpd/httpd/trunk/modules: metadata/mod_setenvif.c ssl/mod_ssl.c ssl/mod_ssl.h ssl/ssl_expr_eval.c

2005-08-16 Thread David Reid
Joe Orton wrote: On Fri, Aug 05, 2005 at 08:00:01PM +0200, Martin Kraemer wrote: On Tue, Aug 02, 2005 at 07:14:10PM +0200, Martin Kraemer wrote: I wanted something like SSLRequire committers in SSLPeerExtList(1.3.6.1.4.1.18060.1); to mean at least one extension with an OID of

Re: svn commit: r220307 - in /httpd/httpd/trunk/modules: metadata/mod_setenvif.c ssl/mod_ssl.c ssl/mod_ssl.h ssl/ssl_expr_eval.c

2005-08-16 Thread Mads Toftum
On Mon, Aug 15, 2005 at 02:36:18PM +0100, Joe Orton wrote: OK, hope you had a good holiday. I wasn't trying to argue about the semantics just to nitpick the naming. Having SSL in the SSLRequire function is redundant, but not in the context of mod_setenvif. So, my preference is:

Re: [PATCH] use arrays in smtpd_request_rec

2005-08-16 Thread Rian Hunter
On Aug 15, 2005, at 10:05 PM, Garrett Rooney wrote: Joe Schaefer wrote: Garrett Rooney [EMAIL PROTECTED] writes: Index: smtp_protocol.c === --- smtp_protocol.c(revision 232680) +++ smtp_protocol.c(working copy) [...]

Re: New mod_smtpd release

2005-08-16 Thread Nick Kew
Rian Hunter wrote: Well not exactly. A module that parses headers can register itself as an input_filter for mod_smtpd. It can parse the headers and the headers can be accessed by a get_smtpd_headers(request_rec*) function or similar exported by the parsing module, and modules that rely on

Re: New mod_smtpd release

2005-08-16 Thread Nick Kew
Rian Hunter wrote: [chop] I think I should have looked harder before replying ... looks like you've done more than I realised. I guess what I was asking about slots easily in to data_post ? -- Nick Kew

Re: svn commit: r220307 - in /httpd/httpd/trunk/modules: metadata/mod_setenvif.c ssl/mod_ssl.c ssl/mod_ssl.h ssl/ssl_expr_eval.c

2005-08-16 Thread Joe Orton
On Mon, Aug 15, 2005 at 02:36:18PM +0100, Joe Orton wrote: I just went to write a test case for the SetEnvIf function, and there seems to be a rather annoying fundamental problem: the match_headers hooks runs too early to be useful for this when doing per-dir client cert negotiation. I

[PATCH] Make CacheEnable useful for forward proxies

2005-08-16 Thread Colm MacCarthaigh
More mod_cache fix-ups; CacheEnable / isn't very useful for forward proxy servers. This patch makes; CacheEnable / CacheEnable ftp:// CacheEnable http://somesite/ CacheDisablewww.apache.org/blah/ CacheDisableftp://

Re: New mod_smtpd release

2005-08-16 Thread Rian Hunter
On Aug 16, 2005, at 6:37 AM, Nick Kew wrote: Spooling and dealing with multiple recipients are things I'd like to think about now. ISTR posting about this before: I think each recipient needs a separate request processing cycle, because each recipient may have completely different processing

Re: New mod_smtpd release

2005-08-16 Thread Rian Hunter
On Aug 16, 2005, at 6:47 AM, Nick Kew wrote: Rian Hunter wrote: [chop] I think I should have looked harder before replying ... looks like you've done more than I realised. I guess what I was asking about slots easily in to data_post ? Which question exactly? -rian

Re: svn commit: r220307 - in /httpd/httpd/trunk/modules: metadata/mod_setenvif.c ssl/mod_ssl.c ssl/mod_ssl.h ssl/ssl_expr_eval.c

2005-08-16 Thread David Reid
Joe Orton wrote: On Mon, Aug 15, 2005 at 02:36:18PM +0100, Joe Orton wrote: I just went to write a test case for the SetEnvIf function, and there seems to be a rather annoying fundamental problem: the match_headers hooks runs too early to be useful for this when doing per-dir client cert

Re: svn commit: r220307 - in /httpd/httpd/trunk/modules: metadata/mod_setenvif.c ssl/mod_ssl.c ssl/mod_ssl.h ssl/ssl_expr_eval.c

2005-08-16 Thread Joe Orton
On Tue, Aug 16, 2005 at 04:45:41PM +0100, David Reid wrote: Joe Orton wrote: On Mon, Aug 15, 2005 at 02:36:18PM +0100, Joe Orton wrote: I just went to write a test case for the SetEnvIf function, and there seems to be a rather annoying fundamental problem: the match_headers hooks runs

Re: [PATCH] Make CacheEnable useful for forward proxies

2005-08-16 Thread Graham Leggett
Colm MacCarthaigh wrote: More mod_cache fix-ups; CacheEnable / isn't very useful for forward proxy servers. This patch makes; CacheEnable / CacheEnable ftp:// CacheEnable http://somesite/ CacheDisablewww.apache.org/blah/

Re: RFC: can I make mod_cache per-dir?

2005-08-16 Thread Justin Erenkrantz
On Mon, Aug 15, 2005 at 01:29:13PM +0100, Colm MacCarthaigh wrote: My main reason is that I can't enable or disable caching on a per-directory or per-file basis. The quick handler runs well before any knowledge is available about the backend (dir/file). The only thing you know is the URI

Re: RFC: can I make mod_cache per-dir?

2005-08-16 Thread Justin Erenkrantz
On Mon, Aug 15, 2005 at 09:55:34AM +0100, Colm MacCarthaigh wrote: mod_cache configurability sucks big-time. CacheEnable adds yet another location mapping scheme for administrators to deal with, but this scheme lacks basic flexibility; It can't reliably disable caching for a directory.

Re: Performance proxy_ajp vs. mod_jk when TOMCAT integration with Apache

2005-08-16 Thread Xuekun Hu
proxy_ajp is mod_jk successor in Apache2.1/2.2 core. You can find more info: http://httpd.apache.org/docs-2.1/mod/mod_proxy.html http://httpd.apache.org/docs-2.1/mod/mod_proxy_ajp.html http://httpd.apache.org/docs-2.1/mod/mod_proxy_balancer.html Thx, Xuekun On 8/17/05, Christine Ho [EMAIL

Re: RFC: can I make mod_cache per-dir?

2005-08-16 Thread Colm MacCarthaigh
On Tue, Aug 16, 2005 at 06:02:04PM -0700, Justin Erenkrantz wrote: The quick handler runs well before any knowledge is available about the backend (dir/file). The only thing you know is the URI path: unsurprisingly, this is all that CacheEnable and CacheDisable can reasonably work with. It's

Re: [PATCH] Make CacheEnable useful for forward proxies

2005-08-16 Thread Justin Erenkrantz
On Tue, Aug 16, 2005 at 01:32:03PM +0100, Colm MacCarthaigh wrote: More mod_cache fix-ups; CacheEnable / isn't very useful for forward proxy servers. This patch makes; CacheEnable / CacheEnable ftp:// CacheEnable http://somesite/

Re: RFC: can I make mod_cache per-dir?

2005-08-16 Thread Justin Erenkrantz
On Wed, Aug 17, 2005 at 02:20:59AM +0100, Colm MacCarthaigh wrote: On Tue, Aug 16, 2005 at 06:02:04PM -0700, Justin Erenkrantz wrote: The quick handler runs well before any knowledge is available about the backend (dir/file). The only thing you know is the URI path: unsurprisingly, this

Re: RFC: can I make mod_cache per-dir?

2005-08-16 Thread Colm MacCarthaigh
On Tue, Aug 16, 2005 at 06:13:38PM -0700, Justin Erenkrantz wrote: On Mon, Aug 15, 2005 at 09:55:34AM +0100, Colm MacCarthaigh wrote: mod_cache configurability sucks big-time. CacheEnable adds yet another location mapping scheme for administrators to deal with, but this scheme lacks basic

Re: Performance proxy_ajp vs. mod_jk when TOMCAT integration with Apache

2005-08-16 Thread Christine Ho
Hi, Can somebody tell me what the difference between the proxy_ajp and mod_jk is. thanks, Christine --- Mladen Turk [EMAIL PROTECTED] wrote: Xuekun Hu wrote: Hi, From performance point, which connector will be used for TOMCAT intergration with Apache? proxy_ajp or mod_jk? I

Re: [PATCH] Make CacheEnable useful for forward proxies

2005-08-16 Thread Colm MacCarthaigh
On Tue, Aug 16, 2005 at 06:23:28PM -0700, Justin Erenkrantz wrote: - CacheDirLevels 5br / - CacheDirLength 3br / + CacheDirLevels 2br / + CacheDirLength 1br / Why are you changing these? (I don't think it's relevant to this patch.) Sorry, they

Apache code-style vim tips

2005-08-16 Thread Colm MacCarthaigh
Just wondering what vim-users here may be using for help with coding in the Apache style. Currently I have; set tabstop=4 set shiftwidth=4 set expandtab Which are all reasonably obvious, but thought that others may have collated the corrent autoindent configurations,

Re: Apache code-style vim tips

2005-08-16 Thread Justin Erenkrantz
On Wed, Aug 17, 2005 at 05:06:08AM +0100, Colm MacCarthaigh wrote: Just wondering what vim-users here may be using for help with coding in the Apache style. Currently I have; set tabstop=4 set shiftwidth=4 set expandtab Which are all reasonably obvious, but thought

New Committer - Colm MacCarthaigh

2005-08-16 Thread Paul Querna
The Apache HTTP Server Project PMC is happy to announce that Colm MacCarthaigh has been given SVN write access (commit access) to the httpd project repositories. Lets all give a round of applause to Colm. -Paul

Re: RFC: can I make mod_cache per-dir?

2005-08-16 Thread Paul Querna
[snip] Location /foo CacheEnable disk /Location might be equivalent to CacheEnable disk /foo. It would be trivial to make this work as-is, but seems fairly pointless. Location-based application can be done already. That would be an improvement over what we

Re: mod_mbox seg faulting on ajax

2005-08-16 Thread Paul Querna
Joshua Slive wrote: [What is the active mod_mbox devel list? Trying [EMAIL PROTECTED] [EMAIL PROTECTED] is the best list. As the subject says, mod_mbox has seg faulted about 50 times so far today on ajax. Some core files in ajax:/tmp (after hacking apachectl to adjust the ulimits). I