Hi,
When the mail parser cron job (functions_parser.php), finds a mail larger than the message allowed size it rejects this message. No text is displayed to explain why the mail was rejected.
Personally I have added some text on the debug output to explain more information which I found useful:
Code:
if ($kb > $_SWIFT["settings"]["pr_sizelimit"]) {
// Reject the Message
echo "Rejecting message because exceeds limit (Msg: ".round($kb)."kb / Limit: ".$_SWIFT["settings"]["pr_sizelimit"]."kb)";
$rejected++;
} else {
I know this is a very small FR but I found it useful when trying to resolve mail parser issues, which I know can be one area that requires careful tweaking.
Rob