Re: Any good WebMail programs?

2001-12-13 Thread Eric Cholet
I can use a primer on researching WebMail programs with the following http://www.astray.com/acmemail/ -- Eric Cholet

RE: Any good WebMail programs?

2001-12-13 Thread Matt Sergeant
I've used SqWebMail with good success, it certainly seems to have all the features you wish for. Though I'd like to try Wing too to compare it. Matt. -- :-Get a smart net/:- -Original Message- From: Medi Montaseri [mailto:[EMAIL PROTECTED]] Sent: 13 December 2001 06:44 To: [EMAIL

Perl Handlers

2001-12-13 Thread Anand R
How to set location for perl on Apache Webserver 1.3.19 Location / $how to set it for perl$ SetHandler --- Order deny,allow Deny from all Allow from myisp-provider /Location Thanks in advance, Regards, Anand

Re: Any good WebMail programs?

2001-12-13 Thread Francesco Pasqualini
IMP is probably the best but it's written in PHP www.horde.org Francesco I can use a primer on researching WebMail programs with the following criterian: - Linux based - Free - Preferably in Perl - Modularized Authentication subsystem (ie could hook up adapters to check with

ANNOUNCE: Apache::CacheContent 0.12 available (1st CPAN release)

2001-12-13 Thread Paul Lindner
Since nobody obected to Apache::CacheContent I've uploaded it to CPAN. The current version, 0.12, has a few small bug fixes, POD updates and a new ToDo list. (This version does not yet have the filename hash generator code) The complete README is reproduced below. You can download the code

Re: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Igor Sysoev
On Wed, 12 Dec 2001, Perrin Harkins wrote: what about $r-headers_out-add(Connection = 'close'); Good idea! I'll put that into a future release. Some bug report about Apache::SizeLimit diagnostic: I don't know about Linux and Solaris but under FreeBSD shared memory shows some

RE: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Geoffrey Young
Geoff wrote: what about $r-headers_out-add(Connection = 'close'); I tried each of these changes in turn. Neither worked to immediately exit the child. I never saw that either of them would exit the child at all but I may not have kept them running long enough. hmph... are

form upload limit

2001-12-13 Thread Viljo Marrandi
Hello, I didn't find anywhere in Net how much is browser form upload limit (with POST) and how much is Apache's default form data access(input) limit. If anyone knows where I can find this data i'd be grateful. I tested this form upload with large text and in my case only 64K went thru (ended

Re: Any good WebMail programs?

2001-12-13 Thread Les Mikesell
This is very off-topic but I'll mention it because you can install the whole server and be running faster than you can do the research to find something else.Look at http://www.e-smith.org. They have a modified Redhat distribution that is an 'office-in-a-box' and includes webmail access

Re: Any good WebMail programs?

2001-12-13 Thread James G Smith
Francesco Pasqualini [EMAIL PROTECTED] wrote: IMP is probably the best but it's written in PHP www.horde.org I know this is straying into OT territory, but hopefully someone can benefit from the discussion. We used an IMP based product for a while, but if you must customize the code, TWIG

Re: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Perrin Harkins
Some bug report about Apache::SizeLimit diagnostic: I don't know about Linux and Solaris but under FreeBSD shared memory shows some incredible numbers: Okay, I'll ask the guy who wrote the *BSD support to look into it. I don't have a FreeBSD system to test with. And some recomendation -

Re: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Perrin Harkins
Perrin Harkins wrote: Try changing the call $r-child_terminate() to Apache::exit(). If this seems to work better for you, let me know and I'll consider changing this in a future release of Apache::SizeLimit. Geoff wrote: what about $r-headers_out-add(Connection = 'close'); I tried

RE: Auth Handlers

2001-12-13 Thread Stathy Touloumis
He he : ) I think this discussion is being miscommunicated (if that is a relevant word). I do not want authorization to be performed in the typical manner. Perhaps I want the information from a form submit or a cookie. I understand how the Apache authentication configuration works but I want

Re: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Igor Sysoev
On Thu, 13 Dec 2001, Perrin Harkins wrote: And some recomendation - I'm using Apache::SizeLimit as PerlCleanupHandler - so Apache would exit after request is completed. You should use it in an early phase, like PerlFixupHandler. It pushes a cleanup handler if it needs to exit. It will

Re: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Perrin Harkins
You should use it in an early phase, like PerlFixupHandler. It pushes a cleanup handler if it needs to exit. It will not exit until after the request is done. I didn't know it. I think you should document it. But any way I think it's better to check size in cleanup. I agree and I plan

Re: form upload limit

2001-12-13 Thread Stas Bekman
Viljo Marrandi wrote: Hello, I didn't find anywhere in Net how much is browser form upload limit (with POST) and how much is Apache's default form data access(input) limit. If anyone knows where I can find this data i'd be grateful. There is no such a limit in Apache and probably most

Re: form upload limit

2001-12-13 Thread Monika
I didn't find anywhere in Net how much is browser form upload limit (with POST) and how much is Apache's default form data access(input) limit. If anyone knows where I can find this data i'd be grateful. Apache's default is 75 and it's under the directive LimitRequestBody 75 From my

Re: form upload limit

2001-12-13 Thread Rob Nagler
There is no such a limit in Apache and probably most browsers. By default, LimitRequestBody is 0 (unlimited) in Apache. We limit incoming requests with this directive, so server resources aren't consumed by excessive. I think POST_MAX happens after the request is already read into memory.

Re: form upload limit

2001-12-13 Thread Igor Sysoev
On Thu, 13 Dec 2001, Stas Bekman wrote: Viljo Marrandi wrote: Hello, I didn't find anywhere in Net how much is browser form upload limit (with POST) and how much is Apache's default form data access(input) limit. If anyone knows where I can find this data i'd be grateful.

Re: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Igor Sysoev
On Thu, 13 Dec 2001, Perrin Harkins wrote: You should use it in an early phase, like PerlFixupHandler. It pushes a cleanup handler if it needs to exit. It will not exit until after the request is done. I didn't know it. I think you should document it. But any way I think it's

Re: form upload limit

2001-12-13 Thread darren chamberlain
Joe Schaefer [EMAIL PROTECTED] said something to this effect on 12/13/2001: Is this what you want $apr = Apache::Request-new( $r-is_main ? $r : $r-main, POST_MAX = 1024); ? I don't think Apache::Request provides any Perl methods for culling the post_max

Re: Apache::Scoreboard question

2001-12-13 Thread Robert
Anand R wrote: # ScoreBoardFile: File used to store internal server process information. # Not all architectures require this. But if yours does (you'll know because # this file will be created when you run Apache) then you *must* ensure that # no two invocations of Apache share the

Re: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Ged Haywood
Hi there, On Thu, 13 Dec 2001, Igor Sysoev wrote: On Thu, 13 Dec 2001, Perrin Harkins wrote: How about sending Stas a patch for the guide with information on this? It might be useful to other BSD'ers. My English is too poor for it. Send it to me then. :) 73, Ged.

Has anyone else seen this?

2001-12-13 Thread Rick Myers
I'm referring to Term::Readline problems. A while back I had all sorts of trouble with Term::Readline and was basically deleting it any time this that or the other module insisted it be there. Recently things have been pretty quiet so I've been letting it live. Suddenly though, as I was adding

Re: Any good WebMail programs?

2001-12-13 Thread Anand R
I would say Indigoperl has a better mail utility www.indigostar.com -Anand - Original Message - From: Drew Taylor [EMAIL PROTECTED] To: Medi Montaseri [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, December 14, 2001 8:31 AM Subject: Re: Any good WebMail programs? I can recommend

Re: Can't call Apache::Request-new()

2001-12-13 Thread Paul Makepeace
So no replies to this -- could someone even confirm they have a working Apache::Request v0.33 on perl 5.6.1? That would be a big help in at least determining whether it's perhaps something amiss here. Else I'll file it as a bug. Cheers, Paul On Tue, Dec 11, 2001 at 09:11:50PM -0800, Paul

Re: Can't call Apache::Request-new()

2001-12-13 Thread Anand R
The Request Object contains info sent to the server in the client's request. The Information stored under the Request object *ClientCertificate *Cookies *form *QueryString *ServerVariables The ServerVariables collections stores both ENV variables relavent to the transaction

cvs commit: modperl-2.0/todo missing_old_features.txt

2001-12-13 Thread stas
stas01/12/13 18:07:30 Modified:todo missing_old_features.txt Log: - need to port Apache::__T flag Revision ChangesPath 1.16 +4 -0 modperl-2.0/todo/missing_old_features.txt Index: missing_old_features.txt

cvs commit: modperl-2.0/lib/ModPerl WrapXS.pm

2001-12-13 Thread stas
stas01/12/13 20:10:20 Modified:lib/ModPerl WrapXS.pm Log: - don't cache the autogeneration warning (it's not the same because of the generation trace) Revision ChangesPath 1.37 +9 -12 modperl-2.0/lib/ModPerl/WrapXS.pm Index: WrapXS.pm

cvs commit: modperl-2.0/src/modules/perl modperl_util.c modperl_util.h

2001-12-13 Thread stas
stas01/12/13 20:35:28 Modified:src/modules/perl modperl_util.c modperl_util.h Log: - porting modperl_perl_gensym from 1.x Revision ChangesPath 1.32 +10 -0 modperl-2.0/src/modules/perl/modperl_util.c Index: modperl_util.c

cvs commit: modperl-2.0/t/response/TestApache compat.pm

2001-12-13 Thread stas
stas01/12/13 20:52:46 Modified:todo api.txt lib/Apache compat.pm t/apache compat.t t/response/TestApache compat.pm Log: - Apache-gensym now lives in compat.pm Revision ChangesPath 1.17 +0 -3

cvs commit: modperl-2.0/lib/ModPerl WrapXS.pm

2001-12-13 Thread stas
stas01/12/13 21:12:13 Modified:lib/ModPerl WrapXS.pm Log: s/catfile/catdir/ when working with dirs Submitted by: Barrie Slaymaker [EMAIL PROTECTED] Reviewed by: stas Revision ChangesPath 1.39 +3 -3 modperl-2.0/lib/ModPerl/WrapXS.pm Index: