|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-02-17 22:05 UTC] mike@php.net
[2006-02-25 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sat May 23 20:00:01 2026 UTC |
Description: ------------ I've an error when trying to connect with imap_open on a server which need the full email adress to connect like "username@domain.com" PHP send me this error : Couldn't open stream {pop.xxxx.com:110/pop3}INBOX and imap_errors() tell me "Can't login to this server." I've tried the same code on a different pop3 server which username don't need the domain and it works. Thanks in advanced Reproduce code: --------------- $sServer = "pop.xxxx.com"; $sPort = "110"; $sLogin = "username@domain.com"; $sPassword = "mypassword"; $rIMAP = imap_open("{" . $sServer . ":" . $sPort . "/pop3}INBOX", $sLogin, $sPassword); imap_close($rIMAP);