Quote:
Originally Posted by lbernstein
Still not able to get the replies to post to the board. My host sees the reply coming into the mailbox, but when I perform a manual cron job, the email is purged (and fails to get posted to the forum).
The cron job log usually says that there are no emails in the box, but at times the cron log gives me the following:
"Email Integration results Opened mailbox for General Discussion Blocked from xxxx57@gmail.com Opened mailbox for Touchworks v11 No messages found for Touchworks v11 Opened mailbox for Modules No messages found for Modules"
The reply is originating from the address xxxx57@gmail.com.
I would be willing to pay someone to help get the mod working. PM me if you're interested.
|
in the cron file there is this code:
PHP Code:
// checks for blocked subject lines
$blocks = explode(',', $vbulletin->options['ei_block_list']);
foreach($blocks as $block)
{
if (preg_match("/(.*)" . $block . "(.*)/i", $subject, $subjectnothin))
{
if (!$debug)
{
imap_delete($mailbox,$msgno);
}
$eilog .= "Blocked from " . $fromaddress . "\r\n";
continue 2;
}
}
In your admincp -> vbulletin options -> email integration settings
You need to correct this entry
Blocked Subject Text
Please enter the list of any text you wish to search for in the subject that you will reject any emails for having. Separate each one by a comma.
No Title,(no subject),Your email requires verification,Mail delivery failed,Autoreply,Undelivered Mail Returned to Sender,failure notice
You've added something in there that is causing the issue.