Reading mail using PHP 4.0 on Linux connecting to MS Exchange 2000 server fails on accounts where the password is blank.

$username = "JohnDoe";
$password = "";
$mbox = imap_open ("{servername:143}INBOX", "$username", "$password"); 

imap_last_error() reports Login aborted

Some special way to send a blank (or null?) password to Exchange?

    Write a Reply...