![]() |
|
|
|||||||
| For more information about the ads and why they're here, please see the FAQ |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hi all,
This is my first time to setup Roundcube and Apple Mail Server. I have a problem that's keeps bugging me off. In Apple Mail app I have setup an IMAP account and IMAP prefix = INBOX when the creation of the account has done I have two copies of folders (JUNK, TRASH and SENT) with this configuration on Apple Mail App logging in to roundcube mail was perfect no double folders. However I want to have the same folders without duplication on both Roundcube WebMail and Apple Mail app. Changing the IMAP prefix = "" would deem the Apple Mail app to work perfectly without duplication of folders (TRASH, JUNK and SENT) but logging in on roundcube wenmail with these setting would result double duplication of folders on (JUNK, TRASH and SENT) this would cause our users to e confused on where the messages are saved. here is my config on main.inc.php Code:
// store draft message is this mailbox
// leave blank if draft messages should not be stored
$rcmail_config['drafts_mbox'] = 'Drafts';
// store spam messages in this mailbox
//$rcmail_config['junk_mbox'] = 'Junk';
$rcmail_config['junk_mbox'] = 'Junk Email';
// store sent message is this mailbox
// leave blank if sent messages should not be stored
//$rcmail_config['sent_mbox'] = 'Sent';
$rcmail_config['sent_mbox'] = 'Sent Messages';
// move messages to this folder when deleting them
// leave blank if they should be deleted directly
//$rcmail_config['trash_mbox'] = 'Trash';
$rcmail_config['trash_mbox'] = 'Deleted Messages';
// display these folders separately in the mailbox list.
// these folders will also be displayed with localized names
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
|
|
#2
|
|||
|
|||
|
to answer my question. I turned off the auto creation of folder in main.inc.php and all is well now.
note: Entourage Email Client will create the following folders Inbox Deleted Items Drafts Sent Items Junk E-Mail Apple Mail Client will create the following folders Inbox Deleted Messages Drafts Sent Messages Junk E-Mail Roundcube by default will create folders Inbox Drafts Sent Junk |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
| For more information about the ads and why they're here, please see the FAQ |