![]() |
|
|
|||||||
| For more information about the ads and why they're here, please see the FAQ |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hello there.
I really love the Roundcube Mail Interface but am having a problem with the deletion of emails. When I click the delete icon, the email disappears from view but reappears on refreshing the inbox again. I've tried all combinations of not specifying a Trash folder, changing the way emails are processed etc but all with the same result. My configuration is: Windows 2k3 Server IIS 6.0 PHP 4.3.11 MailEnable IMAP Server If anyone could offer me any advice or if you require any further information, please do not hesitate to contact me. If you require an email account setting up on this server to experiment with, I'll create one in order for this issue to be resolved. Thanks for any assistance in advance. Regards Mark |
|
#2
|
|||
|
|||
|
yea this happens to me too sometimes.
but most of the times i logout and log back in again and the mail is then deletable. |
|
#3
|
|||
|
|||
|
I have the exact same issue with my installation which is on a completely different system.
FreeBSD Apache 1.3.x php4.3 qmail/bincimapd Though I have not been able to solve my issue, I was able to get the delete button to work properly by changing this from the default value of 'Trash' to '' in main.inc.php Code:
$rcmail_config['trash_mbox'] = ''; |
|
#4
|
|||
|
|||
|
Just an FYI, in case anyone else has this problem. My issue was that my IMAP Server was storing Directories like this on the server:
INBOX/ INBOX/Sent INBOX/Drafts INBOX/Trash Rather than the way some IMAP servers use which is by using a system like this. INBOX/ Sent/ Drafts/ Trash/ The reason that the deletion was "hanging" was because, Roundcube could not move the piece of mail to the folder "Trash" on my system. So of course changing the values to something like this worked for me. Code:
$rcmail_config['trash_mbox'] = 'INBOX/Trash'; |
![]() |
| 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 |