
07-08-2009, 09:43 PM
|
 |
|
|
Join Date: May 2007
Location: Atlanta, GA
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Your giving great support to everyone. I've asked many times over many months and got nothing?
How is that fair? I used this product for over 3 years now. If you don't wish to support me then let me know and I will move on.
Quote:
Originally Posted by Cyricx
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.
|
|