I'm an newbie at PHP. How would I authenticate a login against my existing pop3 server? If I can just get a return for a valid user/pass combination I think I can handle the rest.
Brad Pinkston Centenary College of LA bpinksto@centenary.edu
http://www.php.net/manual/en/function.imap-open.php
You can use the imap functions with pop3 as well.
Demo: <?php $popserver=""; $username=""; $password="";
$mbox=imap_open("{".$popserver.":110/pop3}",$username,$password); ?>
More at IMAP Functions: http://www.php.net/manual/en/ref.imap.html