Re: Cygwin perl and fork();

2007-09-05 Thread George
Chris Wagner wrote: I've never heard of munin but I see one problem right here. This while loop will never exit. The operator only fires when a new line sequence is encountered. However ur equality test doesn't have a \n in it and there's no chomp() on $_. Try this: while(CHILD) {

Re: Any hint when 5.10 will be out?

2007-09-05 Thread Foo JH
Something interesting to look forward to: 'print' will be replaced by 'say' Major change, I'll say! 田口 浩 wrote: New month, And I hope File::Slurp will be packaged into ActivePerl. Regards, H.T. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Error message not showing up from Net::SMTP

2007-09-05 Thread Suresh Govindachar
Hello, Net::SMTP's sub auth() begins as (perl\site\lib\Net\SMTP.pm): sub auth { my (\$self, \$username, \$password) = [EMAIL PROTECTED]; eval { require MIME::Base64; require Authen::SASL; } or \$self-set_status(500, [Need MIME::Base64 and Authen::SASL todo

Re: Any hint when 5.10 will be out?

2007-09-05 Thread Bill Luebkert
Foo JH wrote: Something interesting to look forward to: 'print' will be replaced by 'say' Major change, I'll say! I seriously doubt that's true - maybe augmented, but not replaced. Replacing print would break to many scripts/modules. 田口 浩 wrote: New month, And I hope File::Slurp will

Re: Error message not showing up from Net::SMTP

2007-09-05 Thread Sisyphus
- Original Message - From: Suresh Govindachar [EMAIL PROTECTED] . . sub auth { my (\$self, \$username, \$password) = [EMAIL PROTECTED]; eval { require MIME::Base64; require Authen::SASL; } or \$self-set_status(500, [Need MIME::Base64 and Authen::SASL todo

RE: Error message not showing up from Net::SMTP

2007-09-05 Thread Suresh Govindachar
Rob, You missed the entire context of the original post. The sub auth is INSIDE Net::SMTP; the code to try was attached below the signature. The issue: Error message FROM Net::SMTP is not being delivered to the user. The code to try (need to use valid $smtp_host):

Re: Error message not showing up from Net::SMTP

2007-09-05 Thread Sisyphus
- Original Message - From: Suresh Govindachar [EMAIL PROTECTED] To: 'Sisyphus' [EMAIL PROTECTED]; perl-win32-users@listserv.ActiveState.com Sent: Thursday, September 06, 2007 12:58 AM Subject: RE: Error message not showing up from Net::SMTP Rob, You missed the entire context of

RE: Error message not showing up from Net::SMTP

2007-09-05 Thread Suresh Govindachar
I see. My mistake in the quote -- the cut and paste I used resulted in the extra '\'. perl -MNet::SMTP -e print $Net::SMTP::VERSION 2.31 ppm query libnet -T-TT--┐ │ name │ version │ abstract

stayOnTop?????????

2007-09-05 Thread Spencer Chase
Greetings perl-win32-users, Not sure what group to post this to so I am trying this one first. I have a perl TK script that uses StayOnTop. It works fine when I run it from Komodo but when I try to make an exe with PerlApp, it does not work. I have installed StayOnTop with the graphical PPM and

Re: Error message not showing up from Net::SMTP

2007-09-05 Thread Bill Luebkert
Sisyphus wrote: - Original Message - From: Suresh Govindachar [EMAIL PROTECTED] . . sub auth { my (\$self, \$username, \$password) = [EMAIL PROTECTED]; eval { require MIME::Base64; require Authen::SASL; } or \$self-set_status(500, [Need MIME::Base64 and

RE: Error message not showing up from Net::SMTP

2007-09-05 Thread Suresh Govindachar
Changing the user code to the following displays the desired error message: print ERROR: Could not authenticate user $user_id\n$!\n, $mail-code,':',$mail-message,\n; Thanks to Friar menolly and Chancellor ikegami on PerlMonks. --Suresh

tk stay on top problem with perlapp for win32

2007-09-05 Thread Spencer Chase
Greetings perl-win32-users, Providing a script the demonstrates the problem as per $Bill's suggestion. The script runs fine but fails with the above listed error message when I try to make an exe with parlapp. Here is the script. The error messages and portion of stayOnTop that the errors refer

Re: stayOnTop?????????

2007-09-05 Thread Bill Luebkert
Spencer Chase wrote: Greetings perl-win32-users, Not sure what group to post this to so I am trying this one first. I have a perl TK script that uses StayOnTop. It works fine when I run it from Komodo but when I try to make an exe with PerlApp, it does not work. I have installed StayOnTop