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}IN

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

[PHP] problem with pop3 check

2003-06-01 Thread joe111
Hi I have been trying to get to know the imap functions for checking pop3 email account with php. i have had absolutely no luck. just cant get the script to connect to the server. here is a sample: it just loads and loads doesnt even give an error. could somebody please look into it and see