Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/01/2014 in all areas

  1. This made me laugh so much I was in tears haha... Come on I had to share it haha
    1 point
  2. Thanks for the warning Please send us your feedback if its working ok or you found any bugs. Regards, PV
    1 point
  3. I heard this one probably a year ago, still funny. But at work I can't stand it when people don't wash their hands.. or they do that quick 1 second hand rinse no soap thing, even worse it just mobilizes all the germs.
    1 point
  4. In /plugins/support_manager/components/ticket_manager/ticket_manager.php This will tell you if an errors were thrown when connecting to or reading from the mail server. From: } catch (Exception $e) { // Ignore errors, continue on to the next department } To: } catch (Exception $e) { echo $e->getMessage(); echo $e->getTraceAsString(); die; } This will tell you if any messages were found on the mail server. From: foreach ($mailbox->searchMailbox($search_type) as $mail_id) { $email = new MimeMailParser(); To: foreach ($mailbox->searchMailbox($search_type) as $mail_id) { echo "\nfound message ID: " . $mail_id . "\n"; $email = new MimeMailParser();
    1 point
  5. Try modifying the code that suppresses errors in ticket_manager.php catch (Exception $e) { // Ignore errors, continue on to the next department } catch (Exception $e) { echo "Error processing e-mail: ".$e->getMessage()."\n"; }
    1 point
  6. Paul

    Cpanel Contact Email

    Yup, added in 3.1. [CORE-503] - Module: cPanel - when creating new accounts include an email address
    1 point
×
×
  • Create New...