Jump to content

POP3 Problems. Anyone know whats up?


Recommended Posts

$MyPopServer = "pop.mail.yahoo.com"
$MyLogin = "a3831361z@yahoo.com"
$MyPasswd = "2022425"
TCPStartup()
AdlibEnable("recv", 1)
$sock = TCPConnect(TCPNameToIP($MyPopServer), 110)
TCPSend($sock, "USER " & $MyLogin & @CRLF)
TCPSend($sock, "PASS " & $MyPasswd & @CRLF)

While 1
    Sleep(100)
WEnd
    
Func recv()
    $recv = TCPRecv($sock, 2048)
    If $recv <> "" Then ConsoleWrite($recv)
EndFunc

If I run it, I get a response from the server saying the user/pass is wrong.

Have I dont something wrong on my end?

Or is it yahoo's pop3 server that is just... Crap.

# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Link to comment
Share on other sites

If I run it, I get a response from the server saying the user/pass is wrong.

Have I dont something wrong on my end?

Or is it yahoo's pop3 server that is just... Crap.

Don't you have to subscribe to the Yahoo! Mail Plus Service to get POP access to your Yahoo mail? Did you sign up for that?
Link to comment
Share on other sites

Don't you have to subscribe to the Yahoo! Mail Plus Service to get POP access to your Yahoo mail? Did you sign up for that?

I do? "Ooops".
# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...