> Recently upgraded to the lastest release, and all works great except
when I send an email. I get this error.
> IMAP Error in
/home/xxx/public_html/webmail/program/steps/mail/sendmail.inc (): Could
not save
My guess is that you need to check your RC/config/main.inc.php and
ensure that your folder paths are setup correctly. Such as, should you
have an 'imap_root' specified, or should 'Sent' be 'INBOX/Sent'? The
relevant variables:
============
// only list folders within this path
$rcmail_config['imap_root'] = '';
// 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
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts',
'Sent', 'Junk', 'Trash');
============
Yes the last variable is for display purposes only, but when those are
set correctly you'll see the sort order correct in the folders
navigation. So it's a nice hint that RC found those folders and saves
"should" work, assuming nothing was recently broken with your IMAP
server, or mailbox.
Ethan