RE: MIME warning sending attachments with Mail::Sendmail

2005-10-31 Thread Jason Rice
Thanks Brian Raven and Bill Luebkert, MIME::Lite solved the problem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Raven Sent: Monday, October 31, 2005 1:14 PM To: ActivePerl@listserv.ActiveState.com Subject: RE: MIME warning sending attachments w

Re: time

2005-10-31 Thread JPerlmutter
rting from a call to localtime (that is, @x = localtime; stuff happens to @x; $y ends up "20051031";), the other's read in as a string from a file. quote* ok well my $time = localtime(); returns : Mon Oct 31 15:35:34 2005 which is nice when you're doing a report for a

RE: Email with Outlook and Exchange...

2005-10-31 Thread Lincoln, Adym
-Original Message- From: Foo Ji-Haw [mailto:[EMAIL PROTECTED] Sent: Monday, October 31, 2005 3:13 AM To: Lincoln, Adym Cc: activeperl@listserv.ActiveState.com Subject: Re: Email with Outlook and Exchange... Lincoln, Adym wrote: >Hi all, > >Anyone know the best way to read/process email f

RE: Comparing dates

2005-10-31 Thread Wagner, David --- Senior Programmer Analyst --- WGO
"MMDD". One of them gets ginned up into that format starting from a call to time (that is, $x = time; stuff happens to $x; $y ends up "20051031";), the other's read in as a string from a file. Thanks, Deane **

Re: Email with Outlook and Exchange...

2005-10-31 Thread Lincoln, Adym
>Date: Mon, 31 Oct 2005 16:12:55 +0800 >From: Foo Ji-Haw <[EMAIL PROTECTED]> >Subject: Re: Email with Outlook and Exchange... > >Lincoln, Adym wrote: > >>Hi all, >> >>Anyone know the best way to read/process email from and Outlook/Exchange >>server using Perl. I thought it was with Win32::MAPI, bu

RE: Comparing dates

2005-10-31 Thread Charles K. Clarkson
e; stuff happens to $x; $y ends up "20051031";), : the other's read in as a string from a file. Read perlfaq4: How can I compare two dates and find the difference? and How can I take a string and turn it into epoch seconds? HTH, Charles K. Clarkson

Re: Comparing dates

2005-10-31 Thread $Bill Luebkert
t; is, $x = time; stuff happens to $x; $y ends up "20051031";), the other's > read in as a string from a file. Some will say to use one of the Date modules, but I prefer to just convert to epoch time and subtract. use Time::Local; $_ = '20051031'; $y = substr $_, 0, 4;

Comparing dates--correction

2005-10-31 Thread Deane . Rothenmaier
time; stuff happens to @x; $y ends up "20051031";), the other's read in as a string from a file. Thanks, again! Deane___ ActivePerl mailing list ActivePerl@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: MIME warning sending attachments with Mail::Sendmail

2005-10-31 Thread Brian Raven
Jason Rice <> wrote: > We are using Mail::Sendmail to generate emails with attachments and > sending them to clients. The generation and sending work fine, but we > are running into some issues sending to some mail servers due to the > following warning: MIME segment in MIME postamble vulnerability

RE: Comparing dates

2005-10-31 Thread Brian Raven
both in the same > format: "MMDD". One of them gets ginned up into that format starting from a call to time (that is, $x = > time; stuff happens to $x; $y ends up "20051031";), the other's read in as a string from a file. The best way is usually the simplest and

MIME warning sending attachments with Mail::Sendmail

2005-10-31 Thread Jason Rice
We are using Mail::Sendmail to generate emails with attachments and sending them to clients. The generation and sending work fine, but we are running into some issues sending to some mail servers due to the following warning: MIME segment in MIME postamble vulnerability. Looking up the error messag

Comparing dates

2005-10-31 Thread Deane . Rothenmaier
Gurus, A simple one: what's the best, quickest, way to get the difference between two dates. They're both in the same format: "MMDD". One of them gets ginned up into that format starting from a call to time (that is, $x = time; stuff happens to $x; $y ends up "2005

RE: Tk module - help me

2005-10-31 Thread Brian Raven
Petr Vileta <> wrote: > I'm writing my first module. I want to set binding to > action and I don't know how to do it. > I want to invoke my procedure every time when > $widget->configure(-option => value) is used and any value is > changed. > > I write comething like this > > sub Populate

Active perl, IIS, handlers and reverse-proxy...

2005-10-31 Thread fbalicki
Hi! I'm starting with Active Perl, and have some problems... :/ I wrote simple reverse proxy in C# for .net - i wrote own handler (IHttpHandler), compile it to DLL and added line in web.config Now, i need to write similar thing in Active Perl (i hope not to use .Net Framework). Is it

Re: Email with Outlook and Exchange...

2005-10-31 Thread Foo Ji-Haw
Lincoln, Adym wrote: Hi all, Anyone know the best way to read/process email from and Outlook/Exchange server using Perl. I thought it was with Win32::MAPI, but I can't seem to locate the module(s). A search on google shows lots of links, but they all come up 404'd (Not Found). I see another