After a long debugging session I found out the problem lies in the function imap_fetch_overview
in the file /modules/InboundEmail/InboundEmail.php
change ALL :
Code:
$searchOverviews = imap_fetch_overview($bean->conn, implode(',', $searchResult), SE_NOPREFETCH+SE_UID); into
Code:
$searchOverviews = imap_fetch_overview($bean->conn, implode(',', $searchResult, FT_UID)); replace all the , SE_NOPREFETCH+SE_UID with ,FT_UID
make sure to backup the file, no guarantees it will work for you, if it does let it know here.tested on sugar 520c
Bookmarks