I am currently testing this on my 4.2.0pl3 build, and so far so good.
I wish to change the third option from other than inbox & outbox, to both inbox AND outbox and no others.
The original code in the php file is:
Code:
case '3':
$pms_query_where_clouse .= " AND pm.folderid NOT IN (0, -1)";
break;
Would I change the code in prunepms.php to:
Code:
case '3':
$pms_query_where_clouse .= " AND pm.folderid = (0, -1)";
break;
I am not sure about the syntax, so if anyone has any input on this I would like that.