Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lotus Notes Pop3 access

Status
Not open for further replies.

kiperez

Programmer
Feb 9, 2005
11
US
We have a Lotus Notes server and I am trying to use the Pop3 module to access it to grab a message and save off an attachment. Unfortunately, I'm stuck at steo on - Connecting.

I'm using the same server as I do for the SMTP connection to send messages.

Do I need to setup something on the server?
Do I need to use a different method to get at the email messages?
What gives?

BTW... Thanks for the help on the Mime encoding stuff it all works now.
 
What module are you using to connect Net::pOP3?
--Paul

cigless ...
 
Yes.
I do
...
use Net::pop3;

# Constructors
my $conn = Net::pOP3->new("mylotusnotes" , Debug=>1)
or die "[err] There was a problem connecting to the server mailhost.noc.duncllc.com\n";
...
and it bombs!!

Of course that's a Lotus Notes Server... I'm trying to get access to another Pop3 server that's more standard.
 
mylotusnotes is unlikely to be the name of your lotus notes server, or at least a host name that is likely to be resolved.

Try
Code:
C:\>ping mylotusnotes

You could use the IP address of your Notes Server as well as the name mylotusnotes

Let us know if that helped any
--Paul

cigless ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top