I'm writing a small script that moves selected emails from INBOX to INBOX.User
Using imap_mail_move seems to work well, the message is moved. BUT:
When I view the moved message via squirrelmail, they have no FROM address.
Actually SQ doesn't show the FROM, but it's in the header.
If I use SQ to move the messages back to INBOX, it shows the FROM Address..
Is this an issue with SQ, imap_mail_move or Mercury32 ( mail server ) ?
This is the move command I'm using:
$inbox = imap_open($hostname,$username,$password)
imap_mail_move($inbox,$msg_id,'INBOX.User');
imap_close($inbox);
Thanks