Re: [PHP] problem with pop3 check

2003-06-01 Thread Jason k Larson
Shouldn't the correct suntax for pop3 be: $mbox = imap_open ({mail.hot.ee:110/pop3}, pop3testing, testing); http://us2.php.net/imap_open -- Jason k Larson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] problem with pop3 check

2003-06-01 Thread Jason k Larson
To correct myself ... I believe you actually require the INBOX attribute as well. $mbox = imap_open ({mail.hot.ee:110/pop3}INBOX, pop3testing, testing); if you still have problems you might also try (explictly request non-SSL connection): $mbox = imap_open ({mail.hot.ee:110/pop3/notls}INBOX,