[Tickets #7545] Re: Translation and Pseudo default folders

bugs at horde.org bugs at horde.org
Sun Nov 16 15:44:18 UTC 2008


DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.

Ticket URL: http://bugs.horde.org/ticket/7545
------------------------------------------------------------------------------
  Ticket             | 7545
  Updated By         | m.ferrero at midhgard.it
  Summary            | Translation and Pseudo default folders
  Queue              | IMP
  Version            | 4.3
  Type               | Enhancement
  State              | Accepted
  Priority           | 1. Low
  Milestone          |
  Patch              |
  Owners             |
+New Attachment     | imp_lib_IMAP_Tree.php.patch
------------------------------------------------------------------------------


m.ferrero at midhgard.it (2008-11-16 10:44) wrote:

Here is a patch that solves the isuue:

You also have to set in imp prefs.php

// 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",
//    'value' => _("Sent"),
     '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",
//    'value' => _("Drafts"),
     '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",
//    'value' => _("Trash"),
     '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",
//    'value' => _("Spam"),
     'locked' => false,
     'shared' => false,
     'type' => 'implicit');


Best regards
Massimiliano Ferrero





More information about the bugs mailing list