Re: Parsing a email attachment over SSL

2013-07-29 Thread John SJ Anderson
9, 2013 at 1:56 PM, Chris Datfung wrote: > > I get a daily email attachment to my Gmail account which I want to > automatically download. I found the following Perl script which does just > that: > > http://stackoverflow.com/questions/2453548/how-can-i-download-imap-mail-attachmen

Parsing a email attachment over SSL

2013-07-29 Thread Chris Datfung
I get a daily email attachment to my Gmail account which I want to automatically download. I found the following Perl script which does just that: http://stackoverflow.com/questions/2453548/how-can-i-download-imap-mail-attachments-over-ssl-and-save-them-locally-using-pe The above script uses the

IO::Socket::SSL replacement for IO::Socket::INET

2013-04-08 Thread Chris Knipe
Hi All, I've successfully written quite an big perl server using IO::Socket::INET - it seems to be working pretty darn good and so far I'm happy. I'm attempting now to do the same but by using SSL. I've read up on IO::Socket::SSL, and I know that there are minor changes requ

Re: Mail::Sender with SSL

2012-08-16 Thread Jenda Krynicky
From: Chris Nehren > On Thu, Aug 16, 2012 at 00:05:56 +0200 , Jenda Krynicky wrote: > > From: Chris Nehren > > > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > > > Hi there, > > > > > > > > I have succeeded in sending mail t

Re: Mail::Sender with SSL

2012-08-15 Thread Chris Nehren
On Thu, Aug 16, 2012 at 00:05:56 +0200 , Jenda Krynicky wrote: > From: Chris Nehren > > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > > Hi there, > > > > > > I have succeeded in sending mail to my SMTP server with Mail::Sender > > >

Re: Mail::Sender with SSL

2012-08-15 Thread Jenda Krynicky
From: Chris Nehren > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > Hi there, > > > > I have succeeded in sending mail to my SMTP server with Mail::Sender > > without SSL. But now I'm wondering how to do that with SSL, for example, > &g

Re: Mail::Sender with SSL

2012-08-07 Thread Jeff Pang
Also avoid the MIME::Lite suggestion posted, as that module is deprecated and not recommended for new code due to the vagaries and odd bugs in it--also due to the fact that it's not actively maintained or developed any more and just receives an occasional bug fix. what's the better module to h

Re: Mail::Sender with SSL

2012-08-07 Thread Thomas Dean
On Tue, 2012-08-07 at 10:05 -0400, Chris Nehren wrote: > On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > > Hi there, > > > > I have succeeded in sending mail to my SMTP server with Mail::Sender > > without SSL. But now I'm wondering how to do that

Re: Mail::Sender with SSL

2012-08-07 Thread Chris Nehren
On Tue, Aug 07, 2012 at 17:38:57 + , Thomas Dean wrote: > Hi there, > > I have succeeded in sending mail to my SMTP server with Mail::Sender > without SSL. But now I'm wondering how to do that with SSL, for example, > GMail. After reading the doc, I set TLS_required t

Re: Mail::Sender with SSL

2012-08-07 Thread Jeff Pang
I have succeeded in sending mail to my SMTP server with Mail::Sender without SSL. But now I'm wondering how to do that with SSL, for example, GMail. After reading the doc, I set TLS_required to 1 when I'm calling Mail::Sender->new, but nohing works. I tried to debug the prog

Mail::Sender with SSL

2012-08-07 Thread Thomas Dean
Hi there, I have succeeded in sending mail to my SMTP server with Mail::Sender without SSL. But now I'm wondering how to do that with SSL, for example, GMail. After reading the doc, I set TLS_required to 1 when I'm calling Mail::Sender->new, but nohing works. I tried to debug th

Re: IO::Socket::SSL and SSL_verify_mode

2012-03-21 Thread ml
gt; > 2012/3/21 ml : > > > hello list > > > hello guru of perl > > > hello all > > > > > > > > > I seek to understand how to position the value SSL_verify_mode => 0x00. > > > > > >can you explain how to properly use thi

Re: IO::Socket::SSL and SSL_verify_mode

2012-03-21 Thread ml
understand how to position the value SSL_verify_mode => 0x00. > > > >can you explain how to properly use this parameter in > >IO::Socket::SSL > > > > thank for reply > > > > sincerely > > > > -- > > http://pgp.mit

Re: IO::Socket::SSL and SSL_verify_mode

2012-03-21 Thread Bob goolsby
What was wrong with the answer you received on Perl Monks? 2012/3/21 ml : > hello list > hello guru of perl > hello all > > > I seek to understand how to position the value SSL_verify_mode => 0x00. > >        can you explain how to properly use this parameter

IO::Socket::SSL and SSL_verify_mode

2012-03-21 Thread ml
hello list hello guru of perl hello all I seek to understand how to position the value SSL_verify_mode => 0x00. can you explain how to properly use this parameter in IO::Socket::SSL thank for reply sincerely -- http://pgp.mit.edu:11371/pks/lookup

Re: research for secure tchat client server use IO::Socket::SSL

2012-02-15 Thread ml
to consult the documentation that is different and both PerlMonks different pages that deal with this vast subject. I try to find a minimal example because I want to turn into non securise securise. here is the status of my research #!/usr/bin/perl use warnings; use strict; use IO::Socket::SSL &#

research for secure tchat client server use IO::Socket::SSL

2012-02-15 Thread ml
I want to turn into non securise securise. here is the status of my research #!/usr/bin/perl use warnings; use strict; use IO::Socket::SSL 'inet4'; use threads; use threads::shared; $|++; print "$$ Server started\n"; # do a "top -p -H $$" to monitor server ++

using WWW::Mechanize thru proxy to https(SSL) with website/form authentication, proxy error!!

2011-11-22 Thread Rajeev Prasad
ld(password => "$password"); $mech->click('bsubmit'); $mech->click('successbtn');    # here i am hoping this will click the 'ok' button the next page my $response = $mech->content(); open(OUTFILE, ">$outfile"); print OUTFILE &qu

Re: Net::SSLeay with Socket or IO::Socket::SSL

2011-08-02 Thread m...@smtp.fakessh.eu
fe> we re writing the examples with IO::Socket::SSL > > > just use IO::Socket::SSL. then all the code is almost the same as when > using IO::Socket. the only differences are adding in the cert info and > minor other differences. there is plenty of stuff on how to code with > pla

Re: Net::SSLeay with Socket or IO::Socket::SSL

2011-08-02 Thread Uri Guttman
>>>>> "mfe" == ml@smtp fakessh eu writes: mfe> in the examples of Net::SSLeay, it shows various examples that mfe> use low-level functions use Socket. what are the differences if mfe> we re writing the examples with IO::Socket::SSL just use IO::Socket

Net::SSLeay with Socket or IO::Socket::SSL

2011-08-02 Thread m...@smtp.fakessh.eu
hi folks hi guru of perl in the examples of Net::SSLeay, it shows various examples that use low-level functions use Socket. what are the differences if we re writing the examples with IO::Socket::SSL all testimonials are welcome --  http://pgp.mit.edu:11371/pks/lookup?op=get&se

RE: Get result of a https page with SSL after login.

2010-03-30 Thread Bob McConnell
From: chew23 > To automate my work i have to get a html page by my company site after a > login in an secure area. > After a long googling job, I decided to use WWW:Selenium to do this. > It seems to be bugged and i would ask to you if there is e clear method > to do this. I believe the first s

Get result of a https page with SSL after login.

2010-03-30 Thread chew23
Hi all, just my first technical post on this list. To automate my work i have to get a html page by my company site after a login in an secure area. After a long googling job, I decided to use WWW:Selenium to do this. It seems to be bugged and i would ask to you if there is e clear method to d

RE: Send mail using SSL

2010-01-12 Thread Gurunandan R. Bhat
be I am not careful enough to find it. > > Is there any module easy to send attachments over ssl? > > -Original Message- > From: Gurunandan R. Bhat [mailto:g...@dygnos.com] > Sent: Tuesday, January 12, 2010 2:52 PM > To: Thomas Yan > Cc: beginners@perl.org > Subjec

RE: Send mail using SSL

2010-01-12 Thread Thomas Yan
Thanks. But I can't find how to send attachment using Email::Sender on CPAN. Or maybe I am not careful enough to find it. Is there any module easy to send attachments over ssl? -Original Message- From: Gurunandan R. Bhat [mailto:g...@dygnos.com] Sent: Tuesday, January 12, 2010 2:

Re: Send mail using SSL

2010-01-11 Thread Gurunandan R. Bhat
Use Email::Sender::Transport::SMTP > a > I want to send mail using ssl with smtp server. Does Mail::Sender support > SSL? Or must I use Net::Smtp::SSL ? > > Regards, > Thomas. > >

Send mail using SSL

2010-01-11 Thread Thomas Yan
Hi, I want to send mail using ssl with smtp server. Does Mail::Sender support SSL? Or must I use Net::Smtp::SSL ? Regards, Thomas. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

SSL decrypt

2009-04-14 Thread Luis Daniel Lucio Quiroz
Hi Camels, I wonder to know if there is a perl module that let me to decrypt ssl traffic (if I have already private key), like ssldump or tshark does. Best regards, LD -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http

Re: What SSL version does LWP use?

2009-02-18 Thread Jim Gibson
On 2/18/09 Wed Feb 18, 2009 12:06 PM, "David Shere" scribbled: > Either I'm blind or the LWP package documentation at > http://search.cpan.org/~gaas/libwww-perl-5.825/lib/LWP.pm doesn't say > what SSL standard it uses, or if it can use more than one. > > I r

What SSL version does LWP use?

2009-02-18 Thread David Shere
Either I'm blind or the LWP package documentation at http://search.cpan.org/~gaas/libwww-perl-5.825/lib/LWP.pm doesn't say what SSL standard it uses, or if it can use more than one. I recently received notice that I must "update any applications or integrations that may be us

How to get the SSL cert from a IMAP-Server?

2008-07-01 Thread Michelle Konzack
, I am using Debian GNU/Linux (Stable/Etch) and I have a small program which has a config option to retrive a SSL certificate of a IMAP server. The question is, HOW should I ask the IMAP server from a script to send me the certificate? And of course, which module do I need? In Debian I have

LWP useragent and SSL

2007-05-09 Thread Tom Allison
e for authentication and encryption to that site. I can't get it to work. It appears that the SSL layer just balks at the use of the certificate. Right now I'm wondering if there is anyone who has experience with this or knows someplace that I can try. I'm using Crypt::SSLeay as

LWP w/ ssl post problem

2005-12-09 Thread BJ
I am trying to get data from a webpage that I need to log into via a ssl html form. When I try, all I get is the login page html. I have Crypt:SSLeay (I forget the exact module) installed. Am I doing something fundamentally wrong here? I would appreciate any help I could get. Thank you very

Net::POP3 & SSL?

2005-04-06 Thread David Garamond
How do I use Net::POP3 (or is there an alternative to Net::POP3) to talk to an SSL POP3 server (like gmail's)? Regards, dave -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: Net::FTP::SSL ?

2004-12-06 Thread JupiterHost.Net
Kelvin Wu wrote: Hello Perl, Hello, Perl is busy right now, I'm Lee ;p I am looking for a Perl module which is used to access FTPd via SSL, Auth TLS. Is there something called Net::FTP::SSL or others? A quick search on search.cpan.org brought this up: http://search.cpan.org/~drolsky/Net

Net::FTP::SSL ?

2004-12-06 Thread Kelvin Wu
Hello Perl, I am looking for a Perl module which is used to access FTPd via SSL, Auth TLS. Is there something called Net::FTP::SSL or others? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.

RE: using SSL unable to write file

2003-12-29 Thread Dan Muey
> Hi everyone, Howdy > > I'm trying to send info with (https) SSL and my program comes > to a halt when > writing a file and sending an email. > > SSL was set up by my hosting service with an unauthenticated > certificate that > I had them set up fo

using SSL unable to write file

2003-12-26 Thread Motherofperls
Hi everyone, I'm trying to send info with (https) SSL and my program comes to a halt when writing a file and sending an email. SSL was set up by my hosting service with an unauthenticated certificate that I had them set up for demo purposes. Does this have something to do with it? Or is

Re: opening SSL, security, (authorize.net)

2003-07-14 Thread Wiggins d'Anconia
mario kulka wrote: Did enyone have to create a script to process credit cards using the AIM method through the AuthorizeNet gateway? I'm a little bit lost. There are few things I must do and never done before: [e.g. open a SSL connection between my hosting server and their gateway and then

opening SSL, security, (authorize.net)

2003-07-14 Thread mario kulka
Did enyone have to create a script to process credit cards using the AIM method through the AuthorizeNet gateway? I'm a little bit lost. There are few things I must do and never done before: [e.g. open a SSL connection between my hosting server and their gateway and then post the data (c

Re: SSL

2003-02-20 Thread Rob Dixon
Randal L. Schwartz wrote: > > > > > > "Hytham" == Hytham Shehab <[EMAIL PROTECTED]> writes: > > Hytham> hi guys, > Hytham> If someone want some interaction with the web, he might > use LWP and Hytham> WWW::Mechanize, thats good, but tha

Re: SSL

2003-02-19 Thread Randal L. Schwartz
>>>>> "Hytham" == Hytham Shehab <[EMAIL PROTECTED]> writes: Hytham> hi guys, Hytham> If someone want some interaction with the web, he might use LWP and Hytham> WWW::Mechanize, thats good, but thats not good if he wants to work with SSL. Hytham> how

SSL

2003-02-19 Thread Hytham Shehab
hi guys, If someone want some interaction with the web, he might use LWP and WWW::Mechanize, thats good, but thats not good if he wants to work with SSL. how can i integrate my script with SSL? thx. -- Hytham Shehab -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Mail::IMAPClient with SSL

2003-01-18 Thread Rob Dixon
Hi Pete. Pete Emerson wrote: > I'm trying to get Mail::IMAPClient working with SSL. I can get it > working > fine without SSL. Here's my attempt: > > # assume $server, $port, $username, $password are defined correctly > my $ssl = IO::

Mail::IMAPClient with SSL

2003-01-18 Thread Pete Emerson
I'm trying to get Mail::IMAPClient working with SSL. I can get it working fine without SSL. Here's my attempt: # assume $server, $port, $username, $password are defined correctly my $ssl = IO::Socket::SSL->new(Proto=>'tcp',

Perl with SSL

2002-11-21 Thread Pankaj
Any idea if we can use perl /perlldap with SSL. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to get SSL enabled pages using https?

2002-04-19 Thread Sane, Jayant
Newbie question. I am having trouble getting ssl enabled pages/uri using the user-agent/request object. I checked the documentation and it says it is supposed to work w/o requiring to do anything special/more (just as http). Here is excerpt of the test code I am trying: use LWP::UserAgent; use

SSL and IMAP

2002-03-28 Thread Pete Emerson
I'm using Mail::IMAPClient to write a mail filter via IMAP. I'd like to connect to the server using SSL. The instructions in the man page don't help me: $imap=Mail::IMAPClient->new(User => $user, Password => $pass, Server => $host); # blah blah blah (doc's

Re: SSL and HTTPS

2002-01-29 Thread Jon Molin
You have the best(tm) webserver out there: www.apache.org, you can add mod_ssl to it and there you go. An alternative could be http://www.apache-ssl.org/ (not the same as apache with mod_ssl) /Jon Gary Hawkins wrote: > > CommerceSQL uses Perl and needs https, secure server. I already asked

SSL and HTTPS

2002-01-28 Thread Gary Hawkins
CommerceSQL uses Perl and needs https, secure server. I already asked this on their list with no reply. I don't know the first thing about secure servers. Can somebody point me in the general direction of how to set one up on NT4? Thx, /g -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add

IMAP via SSL

2002-01-09 Thread Pete Emerson
I'm using Mail::IMAPClient to get at my mailbox: my $imap = Mail::IMAPClient->new(Server=>'my.mail.server', User=>'username', Password => 'password'); my $messages=$imap->unseen_count('INBOX'); print "$messages\n"; Does a

SSL script troubles

2001-06-22 Thread K Old
Hello, I cannot get the following script using Net::SSLeay and OpenSSL to work correctly. I would really like to print what post_https is sending to the screen before it is sent to the SSL server. Any ideas? #!/usr/local/bin/perl # # CHANGE THE ABOVE TO POINT TO PERL 5.004 ON YOUR

RE: problems following a refresh meta tag using LWP and open SSL (2ed request)

2001-06-05 Thread Hill, Ronald
[snipped] > URL=https://mn1-gx6-ib.banking.wellsfargo.com/cgi-bin/session. > cgi?sessargs=e > > I think your answer is here. > The refresh data is passed as headers. > Just parse the URL field out of the header and do a new request. > > Hope this is what you meant. > > Maarten. Hi Maarten, Th

Re: problems following a refresh meta tag using LWP and open SSL (2ed request)

2001-06-05 Thread M.W. Koskamp
- Original Message - From: Hill, Ronald <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 7:07 PM Subject: problems following a refresh meta tag using LWP and open SSL (2ed request) > Hello All, > > I am trying to connect to the Wells Fargo

problems following a refresh meta tag using LWP and open SSL (2ed request)

2001-06-05 Thread Hill, Ronald
Hello All, I am trying to connect to the Wells Fargo online bank using the LWP and open SSL modules and am having trouble getting past the Authenticating User screen. I was hopeing for a way to have the LWP useragent follow the refreash meta tag the same way it does for a redirect. Does

problems following a refresh meta tag using LWP and open SSL

2001-06-01 Thread Hill, Ronald
Hello All, I am trying to connect to the Wells Fargo online bank using the LWP and open SSL modules and am having trouble getting past the Authenticating User screen. I was hopeing for a way to have the LWP useragent follow the refreash meta tag the same way it does for a redirect. Does

Re: Using SSL and Perl to Gather Process Information

2001-05-17 Thread Matt Cauthorn
gt; from remote machines. I must communicate to the remote machines > using SSL. I'm thinking I can use the Socket method to accomplish > this, but I have had little luck in figuring it out. > > Can anyone point me in the right direction? > > Thank you. > > -- > Ken H

RE: Using SSL and Perl to Gather Process Information

2001-05-16 Thread King, Jason
Ken Hammer writes .. > I need to write a perl script that will gather system information >from remote machines. I must communicate to the remote machines >using SSL. I'm thinking I can use the Socket method to accomplish >this, but I have had little luck in figuring it out. >

Using SSL and Perl to Gather Process Information

2001-05-16 Thread Ken Hammer
I need to write a perl script that will gather system information from remote machines. I must communicate to the remote machines using SSL. I'm thinking I can use the Socket method to accomplish this, but I have had little luck in figuring it out. Can anyone point me in the right dire