In the AS12.1 branch, the following settings exist that would be very useful:
// Additionally you have to have a Sent Items folder in case you plan to sync with Nokia MfE Built in client / certain HTC Adnroid devices!
define('IMAP_SENTFOLDER', 'Sent'); // already exists in PHP-Push
// You have to have a Deleted Items folder in case you plan to sync with Nokia MfE Built in client / certain HTC Adnroid devices!
define('IMAP_DELETEDITEMSFOLDER', 'Trash');
// You have to have a Draft folder in case you plan to sync with Nokia MfE Built in client / certain HTC Adnroid devices!
define('IMAP_DRAFTSFOLDER', 'Drafts');
// forward messages inline (default off - as attachment)
define('IMAP_INLINE_FORWARD', false);
// Define username => fullname changes here
define('IMAP_USERNAME_FULLNAME', serialize(array(
'first@last.tld'=>'Last, First M.',
'user2'=>'Lastname2, Firstname2',
)));
In the AS12.1 branch, the following settings exist that would be very useful: