Re: Cannot set content-type different from text/html

2004-03-03 Thread Mike P. Mikhailov
Hello Artem Koutchine, Wednesday, March 3, 2004, 5:46:12 PM, you wrote: AK> PerlWarn Off AK> PerlModule Apache::DBI AK> # tried on and off here AK> # PerlSendHeader off AK> ^^^ AK> SetHandler perl-script AK> PerlHandler Camelia::Exec::Retail

Re: Cannot set content-type different from text/html

2004-03-03 Thread Artem Koutchine
> I think the problem is here - you don't have any mod_perl handlers set up > for / - mod_include is probably handling this request. > > AddHandler server-parsed .html > > > SetHandler perl-script > PerlHandler Camelia::Exec::Retail > PerlSetEnv PERL5LIB "/hosts/cor

Re: funny action of crypt

2004-03-03 Thread Stas Bekman
[EMAIL PROTECTED] wrote: Hi I have a problem when my apache_1.3.29 w/ mod_perl 1.29 runs PerlRun and some CGI scripts with password encryption. Script is ... $password = crypt($password, &mkSalt($name.$password.$value) ); sub mkSalt { local($t, $sum, @salt ) = @_; @salt = split(//, './012345

Re: [mp2 bug] "server failed to start!" - but it did

2004-03-03 Thread Randy Kobes
On Wed, 3 Mar 2004, Edouard Lagache wrote: > mod_perl 2.0Beta bug report: > > 1. Problem Description: > > Compilation and initial tests are error free. However tests involving > server produce following error: > > >waiting 120 seconds for server to start: > >.

funny action of crypt

2004-03-03 Thread hara
Hi I have a problem when my apache_1.3.29 w/ mod_perl 1.29 runs PerlRun and some CGI scripts with password encryption. Script is ... $password = crypt($password, &mkSalt($name.$password.$value) ); sub mkSalt { local($t, $sum, @salt ) = @_; @salt = split(//,

[mp2 bug] "server failed to start!" - but it did

2004-03-03 Thread Edouard Lagache
mod_perl 2.0Beta bug report: 1. Problem Description: Compilation and initial tests are error free. However tests involving server produce following error: >waiting 120 seconds for server to start: >. >. >...

Re: [OT] load-testing tools

2004-03-03 Thread Geoffrey Young
Perrin Harkins wrote: > Does anyone have any open source load-testing tools that they would > recommend, beyond the ones listed at > http://perl.apache.org/docs/1.0/guide/performance.html ? I haven't used it but I think this is what flood is for http://httpd.apache.org/test/flood/ --Geoff --

You are invited to participate in the modperl design/development/testing/documenting/etc

2004-03-03 Thread Stas Bekman
mod_perl used to be a one-man-project, and it was good. now mod_perl is a two-man-project, and it's not as good, since if we disagree lots of design issues, they remain unresolved. Compromises aren't the best solution, and what we really lack is more developer and user opinions and ideas to mak

Re: [OT] load-testing tools

2004-03-03 Thread Eric
Hi, The only other one is Webstone, I found it a big pain in the ass to setup. But once you get it running it gives you stats that you could only duplicate with ab or http_load if you did quite a bit of extra scripting around them, plus added the ability to use multiple servers to really hit th

[OT] load-testing tools

2004-03-03 Thread Perrin Harkins
Does anyone have any open source load-testing tools that they would recommend, beyond the ones listed at http://perl.apache.org/docs/1.0/guide/performance.html ? I've had success with those in the past, and just want to see if there's anything new I should look at. - Perrin -- Report problems:

Re: E-mail account security warning.

2004-03-03 Thread Charles C. Fu
In <[EMAIL PROTECTED]> on 03 Mar 2004, Render Web <[EMAIL PROTECTED]> wrote: > We use amavis spamassasin + clamav at work - this works well. It does work well--I use it for my company server, too. However, ClamAV didn't add detection for this latest ploy until 11:14 GMT today, by which time a

Re: E-mail account security warning.

2004-03-03 Thread Render Web
Charles C. Fu (???) wrote: In <[EMAIL PROTECTED]> on 03 Mar 2004, Jay R. Ashworth <[EMAIL PROTECTED]> wrote: And why is the server *passing* the attachment? W32/Bagle-K aka I-Worm.Bagle.j aka [EMAIL PROTECTED] aka WORM_BAGLE.GEN ... Probably the fact that it's within an encrypted ZIP attachm

Re: E-mail account security warning.

2004-03-03 Thread Charles C. Fu
In <[EMAIL PROTECTED]> on 03 Mar 2004, Jay R. Ashworth <[EMAIL PROTECTED]> wrote: > And why is the server *passing* the attachment? W32/Bagle-K aka I-Worm.Bagle.j aka [EMAIL PROTECTED] aka WORM_BAGLE.GEN ... Probably the fact that it's within an encrypted ZIP attachment (and not always with th

[Fwd: [Apache speaking ops] 1st International Workshop on Interpreted Languages]

2004-03-03 Thread Stas Bekman
FYI Original Message Subject: [Apache speaking ops] 1st International Workshop on Interpreted Languages Date: Wed, 03 Mar 2004 20:24:40 +0100 From: Sebastian Bergmann <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Organization: www.sebastian-bergmann.de To: [EMAIL PROTECTED] 1

Re: E-mail account security warning.

2004-03-03 Thread Jay R. Ashworth
On Wed, Mar 03, 2004 at 09:06:13AM -0600, Michael C. Davis wrote: > I just called in my HAZMAT team. They're bringing the tongs. Nice try, boyz. > > Unfortunately, some finite number of people on this list will actually open > it. And why is the server *passing* the attachment? Cheers, -- jra

Re: Cannot set content-type different from text/html

2004-03-03 Thread Geoffrey Young
>> AddDefaultCharset windows-1251 > > ^^ > Could this be the reason? Doesn't it apply only for text/html content > types? it will add a charset for text/html or text/plain. unrecognized types fall through unaltered. > >> GET / HTTP/1.1 >> Host: cornertd.de

Re: Cannot set content-type different from text/html

2004-03-03 Thread Stas Bekman
Artem Koutchine wrote: I have tried everything i knew and still cannot set any content-type different from text/html here is the code: package Exec; use Apache::Constants qw(OK); use strict; sub handler { # Get the Apache request object... my $r = shift; # tried this #$r->content_t

Re: E-mail account security warning.

2004-03-03 Thread Michael C. Davis
>What is this? Is it spam? > >Aloha => Beau; I just called in my HAZMAT team. They're bringing the tongs. Nice try, boyz. Unfortunately, some finite number of people on this list will actually open it. -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/mai

Re: Apache-Cookie

2004-03-03 Thread Randy Kobes
On Tue, 2 Mar 2004, Carl Holm wrote: > Randy Kobes wrote: > > >On Mon, 1 Mar 2004, Carl Holm wrote: > > > >[ ... ] > > > >>Thanks for the suggestions. Mod-perl2 works OK. No complaints from > >>Apache::Request. I added the appropriate LoadFile directive, and now get > >>the following error stack:

Cannot set content-type different from text/html

2004-03-03 Thread Artem Koutchine
I have tried everything i knew and still cannot set any content-type different from text/html here is the code: package Exec; use Apache::Constants qw(OK); use strict; sub handler { # Get the Apache request object... my $r = shift; # tried this #$r->content_type('text/plain');

Re: E-mail account security warning.

2004-03-03 Thread Mads Toftum
On Wed, Mar 03, 2004 at 12:58:01AM -1000, Beau E. Cox wrote: > > What is this? Is it spam? > Virus. vh Mads Toftum -- `Darn it, who spiked my coffee with water?!' - lwall -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiqu

Re: E-mail account security warning.

2004-03-03 Thread Beau E. Cox
On Wednesday 03 March 2004 12:47 am, [EMAIL PROTECTED] wrote: > Dear user of Apache.org e-mail server gateway, > > Your e-mail account will be disabled because of improper using in next > three days, if you are still wishing to use it, please, resign your > account information. > > Further de

E-mail account security warning.

2004-03-03 Thread support
Dear user of Apache.org e-mail server gateway, Your e-mail account will be disabled because of improper using in next three days, if you are still wishing to use it, please, resign your account information. Further details can be obtained from attached file. Cheers, The Apache.org t

Re: PATCH to Apache::AuthNetLDAP 0.26

2004-03-03 Thread Nick Urbanik
Oh dear, Some twit forgot to attach the patch! Here it is. On Wed, Mar 03, 2004 at 10:38:33AM +, Nick Urbanik wrote: > Dear Folks, > I use LDAP authentication a lot here at our Institute, and with > mod_auth_ldap coming and going in Red Hat (here before RH 8, gone in > RH 8 and 8, back in Fed

PATCH to Apache::AuthNetLDAP 0.26

2004-03-03 Thread Nick Urbanik
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dear Folks, I use LDAP authentication a lot here at our Institute, and with mod_auth_ldap coming and going in Red Hat (here before RH 8, gone in RH 8 and 8, back in Fedora, but gone in RH enterprise 3...), I realised that Perl is the way to keep my san

Re: GIF contents not "coming out"

2004-03-03 Thread Stas Bekman
Hi Chris, Finally I've got a chance to analyze your problem. The "GIF" isn't actually a GIF at all - it was the "favicon.ico" icon file - so my guess is that mod_perl is sneaking a peek at what comes next (expecting GIF89a or whatever) and doing something wrong when that 'aint it. I realize I sh