Jump to content

Recommended Posts

Posted

$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- #
Posted

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?
Posted

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- #
Posted

I do? "Ooops".

Will you (and most rogues that may also read these forums) be using the password you have listed?

"Oooops" !!!

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
×
×
  • Create New...