RE: Send email in ActivePerl using SMTP

2002-06-11 Thread Toby Stuart
http://www.faqs.org/rfcs/rfc2487.html -Original Message- From: Geoff Collins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 1:38 PM To: [EMAIL PROTECTED] Subject: RE: Send email in ActivePerl using SMTP While thinking on this topic Does anyone know how to achieve Authent

RE: Send email in ActivePerl using SMTP

2002-06-11 Thread Geoff Collins
While thinking on this topic Does anyone know how to achieve Authentication when connecting to an SMTP server? Thanks, --geoff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Toby Stuart Sent: Wednesday, 12 June 2002 03:30 To: '[EMAIL PROTECTED]' S

RE: Regular Expression Help

2002-06-11 Thread Allegakoen, Justin Devanandan
Lets not point fingers here, but this group is starting to become like comp.lang.perl.misc I subscribed to this list to avoid that type of . . . [insert disparaging term here] . . . We have all sort of people inside this list, from many country, some of our grammer are worst then others, but let

FW: Send email in ActivePerl using SMTP

2002-06-11 Thread Toby Stuart
luxn.com is not running a mail service (well not on port 25 anyway) change $optServer = 'luxn.com'; to $optServer = 'mail.luxn.com'; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 7:00 AM To: [EMAIL PROTECTED]; [EMAIL PR

Re: Win32::IPROC or some other 'ps'

2002-06-11 Thread jpeden
I use Win32::Perflib and it works just fine. My apologies for not recognizing who wrote this originally. use Win32::PerfLib;   my $server = shift;   Win32::PerfLib::GetCounterNames($server, \%counter);   %r_counter = map { $counter{$_} => $_ } keys %counter;   # retrieve the id for process objec

OLE: win32::ole::const error ( emptyenum redefined )

2002-06-11 Thread mathias wündisch
Hy, does anybody know, what this error message mean (... emptyenum redefined...) ? ( without 'use diagnostics' no error message ) thanks! mathias = >perl -e "use strict; use diagnostics;use Win32::OLE;use Win32::OLE::Const ('Microsoft >Word'); exit" Consta

Re: Autocompletion in Perl ( Win 32 )

2002-06-11 Thread Ron Pero
For a different approach to this (if I understand what you are after), in the archives of this list, see the thread, "Not so silly DOS question" which started August 24, 2001. It is about how to make the tab key do autocompletes in a command line window. At 09:15 AM 06/07/02 +0530, [EMAIL PROTECT

Send email in ActivePerl using SMTP

2002-06-11 Thread yzhang1908
I tried the following to use SMTP to send email: use Net::SMTP; $optServer = 'luxn.com'; $optFrom = "[EMAIL PROTECTED]"; $optTo = "[EMAIL PROTECTED]"; $smtp = Net::SMTP -> new ("luxn.com"); $smtp -> mail($optFrom); $smtp -> to ($optTo); $smtp -> data(); Send the Head

RE: operator question

2002-06-11 Thread wayne
On 5 Jun 2002 at 17:18, Morse, Richard E. wrote: > Charles Oppenheimer [mailto:[EMAIL PROTECTED]] wrote: > > > Hi folks. I have a question... I wanted to create a > > sub procedure that takes an operator as an argument, > > like so: > I've never actually done this, so I'm somewhat guessing he

RE: Parse two files for differences.

2002-06-11 Thread Straub, Peter \(Peter\)
Hi Robert, the solution might be the "Algorithm::Diff" module that you can find on CPAN. After having built the two Arrays you can feed them to it's "traverse_sequences" function which in turn triggers three different callbacks for elements added to either of these arrays and for those that are e

RE: Assign a string which contains a variable to a element of an array

2002-06-11 Thread Haimov, Eugene
That's because qw() does not interpolate. Try this instead: print "please input your variable:\n"; $variable = ; @array = ( string1, "$variable:string2", # note the two " string3 ); print "$array[1]\n"; Eugene Haimov -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC