• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Solutions for Error: Can't open mailbox

Solutions for Error: Can't open mailbox 14 years 2 months ago #9801

I was stuck with the following error when I try to run my cronjob with POP3, NO SSL connection:
Testing your email settings ...ERROR: Could not connect !

Can't open mailbox {mycompany.com:110/pop3/novalidate-cert}INBOX: invalid remote specification

I resolved my problem with editing /components/com_rstickets/plugins/cron.php

Locate line 45:
$mbox = @imap_open("{".$T_SETTINGS['Email_Server'].":".$T_SETTINGS['Email_Server_Port'].$T_SETTINGS['Email_Server_Protocol'].$T_SETTINGS['Email_Server_Security']."/novalidate-cert}INBOX", $T_SETTINGS['Email_Address_Account'], $T_SETTINGS['Email_Address_Password']);

Remove "/novalidate-cert" because this is not a valid part for the mailbox connection string (http://php.net/manual/en/function.imap-open.php):
$mbox = @imap_open("{".$T_SETTINGS['Email_Server'].":".$T_SETTINGS['Email_Server_Port'].$T_SETTINGS['Email_Server_Protocol'].$T_SETTINGS['Email_Server_Security']."}INBOX", $T_SETTINGS['Email_Address_Account'], $T_SETTINGS['Email_Address_Password']);
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!