The nice functionality of seing the TO-field in mailboxes
with outgoing mails, was mistaking my INBOX for such
an outgoing mailbox. The TO-field was shown instead
FROM-field.
In the functions/imap_mailboxes.php
Replace the following functions
function isSentMailbox($box) {
global $sent_folder, $move_to_sent;
return $move_to_sent && $sent_folder &&
( $box == $sent_folder || isBoxBelow($box,
$sent_folder) ) && (strtolower($box) != 'inbox') ;
}
function isDraftMailbox($box) {
global $draft_folder, $save_as_draft;
return $save_as_draft &&
( $box == $draft_folder || isBoxBelow($box,
$draft_folder) ) && (strtolower($box) != 'inbox');
}
/Frans
Logged In: YES
user_id=644252
replace the functions with what...
Logged In: YES
user_id=257630
With the listed. I've added :
&& (strtolower($box) != 'inbox') to the end of each function.
Sorry it was unclear.
Logged In: YES
user_id=285765
I guess something else is wrong then, since $box ==
$sent_folder cannot be true for INBOX, can it? So it would
return false. Or are there valid situations where
$sent_folder == INBOX ?