I got a MySQL syntax error from this bit of the code (I believe)
Code:
$mimehandler = new mimepart( $s );
$mmsgid = $mimehandler->get_pretty_header( "Message-ID" );
$db->query_write( "INSERT INTO " . TABLE_PREFIX . "wmail_readmarks (userid, msgid) VALUES ('" . $vbulletin->userinfo["userid"] . "', '" . $mmsgid . "')" );
Where the mmsgid code had an extra ' at the end so MySQL wouldn't allow this in the '" . $mmsgid . "' bit of the INSERT into the database. Do you think the $mmsgid needs to be striped of any extra marks that could be included by the mimehandler bit?
Thanks,
Parker