Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Re: Net::SMTP_auth

by Lev Altshuler (Initiate)
on Jun 01, 2003 at 00:33 UTC ( [id://262145]=note: print w/replies, xml ) Need Help??


in reply to Re: Net::SMTP_auth
in thread Net::SMTP_auth

I was trying to use created by you Net::SMTP_auth package with the following code:
#!perl -w use Net::SMTP; use Net::SMTP_auth; my $serverName = "smtp.ym.phub.net.cable.rogers.com"; $smtp = Net::SMTP_auth->new($serverName, Timeout => 30, Debug =>1); $smtp->auth('levalt@rogers.com', '123456'); my $mailFrom = "levalt\@rogers.com"; my $mailTo = "levalt\@rogers.com"; $smtp->mail( $mailFrom ); $smtp->to( $mailTo ); $smtp->data(); $smtp->datasend("Subject: Updates To My Home Page\n"); $smtp->datasend("\n"); $smtp->datasend("Here are all the cool new links...\n\n"); $smtp->dataend(); $smtp->quit();
I get an error: Unsupported authentication mechanism.

Could you please give me a clue how to solve this problem?
Please email me: levalt@rogers.com

edit: jeffa - code tags

Replies are listed 'Best First'.
Re^3: Net::SMTP_auth
by Anonymous Monk on Dec 23, 2004 at 02:21 UTC
    I too am with rogers and used the following to get mine to work:
    $smtp-auth('LOGIN', 'username@rogers.com', 'password');
    
    you may be able to substitute LOGIN with PLAIN but I have not tried. Give it a whirl.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://262145]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (8)
As of 2024-04-25 08:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found