When I try running the client on a different machine from the server, the IO::Socket new method returns 'connection refused'. Here is the server:
use IO::Socket::INET;
my $s = IO::Socket::IN...
Hi all,
I'm adapting a proxy script I got from:http://www.accordata.de/downloads/port-proxy/index.html
This script can be used for port forwarding but is written for TCP connections only. We al...
GOAL:
Connect to Gmail or other SSL IMAP store via a perl script to scan messages.
PROGRESS SO FAR:
I've used Mail::IMAPClient to connect to a server that doesn't require SSL, and the...