Hi,
I had a lot of problems after upgrading from PHP 5.2 to 5.3, but have fixed a lot of them.
But the mail fetch I can't get working.
I get error:
PHP Warning: imap_open(): Couldn't open stream {10.0.0.14/pop3/novalidate-cert}INBOX in /var/www/vhosts/osticket/include/class.mailfetch.php on line 71
(to get this output I change
$this->mbox =@imap_open($this->serverstr,$this->username,$this->password); to
$this->mbox = imap_open($this->serverstr,$this->username,$this->password);
)
Does anyone have a solution to this?