i have a problem with the pipe.
This is my hesk_piep.php
define('IN_SCRIPT',1);
define('HESK_PATH', dirname(dirname(dirname(__FILE__))) . '/');
// Get required files and functions
require(HESK_PATH . 'hesk_settings.inc.php');
require(HESK_PATH . 'inc/common.inc.php');
// Is this feature enabled?
if (empty($hesk_settings['email_piping']))
{
die($hesklang['epd']);
}
// Email piping is enabled, get other required includes
require(HESK_PATH . 'inc/pipe_functions.inc.php');
// Parse the incoming email
$results = parser();
// Convert email into a ticket (or new reply)
hesk_dbConnect();
hesk_email2ticket( $results );
return NULL;
Question: Why the messages are not converted into tickets. Just one week ago everything worked fine.
I have a connection to the database and connect to the mailbox. Both things working fine.
Is there any way the messages manually insert in the ticket system.
I need you HELP Pls

MfG Greiling