Hello, I am trying to set-up my Mautic installation in Bluehost shared hosting, particularly Mautic’s Configuration->Email Settings->Monitored Inbox Settings.
Below is my monitored_email details from app/config/local.php
'monitored_email' => array(
"general" => array(
"address" => "sample@mydomain.net", // Not actual email address
"host" => "box1234.bluehost.com", // Not actual Bluehost box
"port" => "993",
"encryption" => "/ssl/novalidate-cert",
"user" => "sample@mydomain.net", // Same with "address"
"password" => "****hidden passphrase****"
),
"EmailBundle_bounces" => array(
"address" => "",
"host" => "",
"port" => "993",
"encryption" => "/ssl/novalidate-cert",
"user" => "",
"password" => "",
"override_settings" => "",
"folder" => "Trash",
"ssl" => "1"
),
"EmailBundle_unsubscribes" => array(
"address" => "",
"host" => "",
"port" => "993",
"encryption" => "/ssl/novalidate-cert",
"user" => "",
"password" => "",
"override_settings" => "",
"folder" => "",
"ssl" => "1"
)
),
With these settings, I am getting an error message upon Cron job execution of “app/console mautic:email:fetch”, “Error communicating with the IMAP server: [CLOSED] IMAP connection broken (server response)”
When I remove “user” in “general”, as mentioned here:
'monitored_email' => array(
"general" => array(
"address" => "sample@mydomain.net", // Not actual email address
"host" => "box1234.bluehost.com", // Not actual Bluehost box
"port" => "993",
"encryption" => "/ssl/novalidate-cert",
"user" => "", // Removed user email address
I get “No mailboxes are configured..”
Any help would be appreciated.