Re: Seek string to time module

2012-04-24 Thread Michael Rasmussen
On 2012-04-24 07:22, Brent Clark wrote: Hiya Is there a module to parse time. I.e. 00:01:20. The idea was to convert a string, i.e. time, and then to see if the time given is greater than a threshold, for example 1 hour. Hope I make sense. If anyone could help, it would be appreciated. It m

Re: Net::SMTP

2012-04-24 Thread Michael Rasmussen
On 2012-04-24 13:17, Somu wrote: Ok.. Thanks for the info on gmail. But is there any way to find out such information for other hosts? Like I have an account at https://ems.sbi.co.in so again how do i do for that? You use the DNS system, usually with nslookup or dig to an mx lookup type. M

Re: MIME::Lite Return-Path not being set

2012-04-24 Thread sono-io
Hi Bob, Thanks for the reply. > According to the RFC's, "Return-path" is reserved for use by the transport > servers. It is likely your server is stripping out the suggestion you have > put in there. But I can set it using SMTP, so does sendmail handle things differently? Unf

Re: Net::SMTP

2012-04-24 Thread Leo Susanto
I googled https://www.google.com/search?q=smtp+ems.sbi.co.in and I found this: http://www.robtex.com/dns/smtp.sbi.co.in.html No info on SMTP implementation, good luck with that. On Tue, Apr 24, 2012 at 1:17 PM, Somu wrote: > Ok.. Thanks for the info on gmail. > But is there any way to find out s

Re: Net::SMTP

2012-04-24 Thread Somu
Ok.. Thanks for the info on gmail. But is there any way to find out such information for other hosts? Like I have an account at https://ems.sbi.co.in so again how do i do for that? On Tue, Apr 24, 2012 at 10:38 PM, Leo Susanto wrote: > Gmail is implementing secure SMTP, so plain SMTP won't work.

RE: MIME::Lite Return-Path not being set

2012-04-24 Thread Bob McConnell
> From: sono-io > > Unfortunately, I can't switch to SMTP right now (long story) and so I > need to find a way to get Mime::Lite to send the Return-Path. Does anyone > know how to do this? > > If Mime::Lite can't do it, does anyone have another module they can > recommend? > >

Re: Merging multiple strings

2012-04-24 Thread Rob Dixon
On 24/04/2012 18:37, Paul Clark wrote: > Hi All, > > I have a small project that is stumping me aside from using a > straight brute force. > > I am processing output from an accounting program that is producing > some sort of printer control for some 3rd party print processing. I > have several

Re: MIME::Lite Return-Path not being set

2012-04-24 Thread sono-io
Unfortunately, I can't switch to SMTP right now (long story) and so I need to find a way to get Mime::Lite to send the Return-Path. Does anyone know how to do this? If Mime::Lite can't do it, does anyone have another module they can recommend? The reason I need to do t

Re: Book Recommendation - XPath, XML,SQL, XQuery

2012-04-24 Thread Jenda Krynicky
From: David Christensen > On 04/17/2012 11:04 PM, flebber wrote: > > I also saw Perl XML - http://shop.oreilly.com/product/9780596002053.do > > These will probably both be good references > > I haven't read "Perl and XML" (nor "XML and Perl"). However, I am > working on a project that could b

Merging multiple strings

2012-04-24 Thread Paul Clark
Hi All, I have a small project that is stumping me aside from using a straight brute force. I am processing output from an accounting program that is producing some sort of printer control for some 3rd party print processing. I have several partial lines that have commands to "over write"

Re: Net::SMTP

2012-04-24 Thread Leo Susanto
Gmail is implementing secure SMTP, so plain SMTP won't work. use Net::SMTP::TLS; And make sure you are using these information Host => 'smtp.gmail.com', Hello=> 'gmail.com', Port => 587, User => 'x...@gmail.com', On Tue, Apr 24, 2012 at 9:57 AM, S

Re: Net::SMTP

2012-04-24 Thread Somu
SMTP is a Protocol, which uses standard commands to send mail. I want to use it. So there is already an implementation written. So I'm not going for IO or Sockets.. I want to make it work. Please, I need some workable parameters. Help. And it dies, simply. Don't know what goes on beneath the surfa

Seek string to time module

2012-04-24 Thread Brent Clark
Hiya Is there a module to parse time. I.e. 00:01:20. The idea was to convert a string, i.e. time, and then to see if the time given is greater than a threshold, for example 1 hour. Hope I make sense. If anyone could help, it would be appreciated. Kind Regards Brent Clark -- To unsubscribe,