Hi
I need some help with the following problem:
This is the source code:
<html>
<body>
<?php
//Retreiving mail messages from mail server
$server = 'localhost';
$port = 110;
$mail = imap_open("\{$server:$port/pop3}INBOX", 'admin', 'password');
?>
</body>
</html>
This is the error message (exception):
Warning: imap_open() [function.imap-open]: Couldn't open stream \{localhost:110/pop3}INBOX in C:\Program Files\xampp\htdocs\MailWebApp\index.php on line 34
What I do know:
- PHP is working
- Port 25 is working (tested it with telnet localhost 25)
- Port 110 is not working. It was tested with telnet localhost 110 in the Command Prompt and the following error message was reported:
-ERR Your connection is temporarily blacklisted - try again later
Connection to host lost.
Anyone knows what this error message means?
Thanks