Author Topic: Can't save messages to folders.  (Read 4844 times)

Offline Jonn3

  • Jr. Member
  • **
  • Posts: 23
Can't save messages to folders.
« on: October 30, 2006, 06:07:30 AM »
Can't save messages to folders.
IMAP Error: Could not save message in INBOX/Sent in /var/www/htdocs/mail/program/steps/mail/sendmail.inc on line 0

Im running postfix and courier. I have ~/Maildir in each home directory...
Any clues?

Please let me know if i should provide more information...

my setup file is like this;

// only list folders within this path
$rcmail_config['imap_root'] = '';

// store draft message is this mailbox
// leave blank if draft messages should not be stored
$rcmail_config['drafts_mbox'] = 'INBOX/Drafts';

// store spam messages in this mailbox
$rcmail_config['junk_mbox'] = 'INBOX/Junk';

// store sent message is this mailbox
// leave blank if sent messages should not be stored
$rcmail_config['sent_mbox'] = 'INBOX/Sent';

// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = 'INBOX/Trash';

// display these folders separately in the mailbox list.
// these folders will automatically be created if they do not exist
$rcmail_config['default_imap_folders'] = array('INBOX', 'INBOX/Drafts', 'INBOX/Sent', 'INBOX/Junk', 'INBOX/Trash');

Offline phoe

  • Newbie
  • *
  • Posts: 5
Re: Can't save messages to folders.
« Reply #1 on: January 18, 2007, 05:41:47 PM »
i cant either
same problem

any1 can help us?

Offline NaiosKae

  • Jr. Member
  • **
  • Posts: 40
Re: Can't save messages to folders.
« Reply #2 on: January 19, 2007, 11:40:40 AM »
Are you sure that your Imap folder separator is "/" instead of "." ?

Offline phoe

  • Newbie
  • *
  • Posts: 5
Re: Can't save messages to folders.
« Reply #3 on: January 19, 2007, 02:00:02 PM »
thanks, it works now;)
although i didn change a bit

// 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';

// store sent message is this mailbox
// leave blank if sent messages should not be stored
$rcmail_config['sent_mbox'] = 'Sent';

// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = 'Trash';

// display these folders separately in the mailbox list.
// these folders will automatically be created if they do not exist
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');

this is how it looks in my config.

strange... but it works
thanks for your help