// sent mail folder
$_prefs['sent_mail_folder'] = array(
- // The mailbox value must be encoded in the UTF7-IMAP charset (see RFC
- // 3501 [5.1.3]). For Exchange, uncomment the entry below and remove the
- // default value entry.
- // 'value' => 'Sent Items',
'value' => 'Sent',
+ // If the mailbox value contains non-ASCII characters, it must be encoded
+ // in the UTF7-IMAP charset (RFC 3501 [5.1.3]). This entry will do the
+ // necessary conversion.
+ // 'value' => Horde_String::convertCharset('Sent', null, 'UTF7-IMAP'),
+ // Exchange servers use this default value instead.
+ // 'value' => 'Sent Items',
'locked' => false,
'shared' => false,
'type' => 'implicit');
// drafts folder
$_prefs['drafts_folder'] = array(
- // The mailbox value must be encoded in the UTF7-IMAP charset (see RFC
- // 3501 [5.1.3]).
'value' => 'Drafts',
+ // If the mailbox value contains non-ASCII characters, it must be encoded
+ // in the UTF7-IMAP charset (RFC 3501 [5.1.3]). This entry will do the
+ // necessary conversion.
+ // 'value' => Horde_String::convertCharset('Drafts', null, 'UTF7-IMAP'),
'locked' => false,
'shared' => false,
'type' => 'implicit');
// trash folder
$_prefs['trash_folder'] = array(
- // The mailbox value must be encoded in the UTF7-IMAP charset (see RFC
- // 3501 [5.1.3]). For Exchange, uncomment the entry below and remove the
- // default value entry.
- // 'value' => 'Deleted Items',
'value' => 'Trash',
+ // If the mailbox value contains non-ASCII characters, it must be encoded
+ // in the UTF7-IMAP charset (RFC 3501 [5.1.3]). This entry will do the
+ // necessary conversion.
+ // 'value' => Horde_String::convertCharset('Trash', null, 'UTF7-IMAP'),
+ // Exchange servers use this default value instead.
+ // 'value' => 'Deleted Items',
'locked' => false,
'shared' => false,
'type' => 'implicit');
// spam folder
$_prefs['spam_folder'] = array(
- // The mailbox value must be encoded in the UTF7-IMAP charset (see RFC
- // 3501 [5.1.3]).
'value' => 'Spam',
+ // If the mailbox value contains non-ASCII characters, it must be encoded
+ // in the UTF7-IMAP charset (RFC 3501 [5.1.3]). This entry will do the
+ // necessary conversion.
+ // 'value' => Horde_String::convertCharset('Spam', null, 'UTF7-IMAP'),
'locked' => false,
'shared' => false,
'type' => 'implicit');