RoundCube fails to display messages in the message-list even though the number of new messages is shown in the page-title ("(11) RoundCube Webmail :: Spam") . This only seems to happen for my Spam folder. Verified the content of the folder with Thunderbird and there are 11 new msgs in the Spam box
Today, one new message was shown in the Spam folder message-list, even though the number of unread messages in that folder was 11. After logging off and loggin on again, the message-list for Spam was empty again.
Anyone any clue? OS: FreeBSD 6.1-RELEASE-p10 Apache 2.2.3 php 5.1.6 RoundCube-0.1.20060928 from ports collection
main.inc.php (comments stripped) $rcmail_config = array(); $rcmail_config['debug_level'] = 1; $rcmail_config['enable_caching'] = FALSE; $rcmail_config['message_cache_lifetime'] = '10d'; $rcmail_config['auto_create_user'] = TRUE; $rcmail_config['default_host'] = 'localhost'; $rcmail_config['default_port'] = 143; $rcmail_config['username_domain'] = ''; $rcmail_config['mail_domain'] = ''; $rcmail_config['virtuser_file'] = ''; $rcmail_config['virtuser_query'] = ''; $rcmail_config['smtp_server'] = ''; $rcmail_config['smtp_port'] = 25; $rcmail_config['smtp_user'] = ''; $rcmail_config['smtp_pass'] = ''; $rcmail_config['smtp_auth_type'] = ''; $rcmail_config['smtp_log'] = TRUE; $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size'); $rcmail_config['skin_path'] = 'skins/default/'; $rcmail_config['temp_dir'] = 'temp/'; $rcmail_config['log_dir'] = 'logs/'; $rcmail_config['session_lifetime'] = 10; $rcmail_config['ip_check'] = TRUE; $rcmail_config['des_key'] = '****************************'; $rcmail_config['locale_string'] = 'en'; $rcmail_config['date_short'] = 'D H:i'; $rcmail_config['date_long'] = 'd.m.Y H:i'; $rcmail_config['useragent'] = 'RoundCube Webmail/0.1b'; $rcmail_config['product_name'] = 'RoundCube Webmail'; $rcmail_config['imap_root'] = ''; $rcmail_config['drafts_mbox'] = 'Drafts'; $rcmail_config['junk_mbox'] = 'Spam'; $rcmail_config['sent_mbox'] = 'Sent'; $rcmail_config['trash_mbox'] = ''; $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Spam'); $rcmail_config['protect_default_folders'] = TRUE; $rcmail_config['skip_deleted'] = FALSE; $rcmail_config['read_when_deleted'] = TRUE; $rcmail_config['flag_for_deletion'] = TRUE; $rcmail_config['enable_spellcheck'] = TRUE; $rcmail_config['spellcheck_uri'] = ''; $rcmail_config['spellcheck_languages'] = NULL; $rcmail_config['generic_message_footer'] = ''; $rcmail_config['mail_header_delimiter'] = NULL; $rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion'); $rcmail_config['include_host_config'] = FALSE; /***** these settings can be overwritten by user's preferences *****/ $rcmail_config['pagesize'] = 40; $rcmail_config['timezone'] = 1; $rcmail_config['dst_active'] = TRUE; $rcmail_config['prefer_html'] = TRUE; $rcmail_config['prettydate'] = TRUE; $rcmail_config['message_sort_col'] = 'date'; $rcmail_config['message_sort_order'] = 'DESC'; $rcmail_config['draft_autosave'] = 300;
On Mon, 16 Oct 2006 14:29:38 +0200, "Spil Oss" spil.oss@googlemail.com wrote:
RoundCube fails to display messages in the message-list even though the number of new messages is shown in the page-title ("(11) RoundCube Webmail :: Spam") . This only seems to happen for my Spam folder. Verified the content of the folder with Thunderbird and there are 11 new msgs in the Spam box
Today, one new message was shown in the Spam folder message-list, even though the number of unread messages in that folder was 11. After logging off and loggin on again, the message-list for Spam was empty again.
Anyone any clue? OS: FreeBSD 6.1-RELEASE-p10 Apache 2.2.3 php 5.1.6 RoundCube-0.1.20060928 from ports collection
I cannot reproduce this, and my setup is almost exactly as yours is (I run Dovecot, the only other variable I can think of). Could you try using the latest SVN? I have docs on how I did it on FreeBSD here: http://fak3r.com/2005/11/15/howto-install-roundcube-webmail-from-svn-was-cvs...
Just put it in a different folder, copy in your config and main, afaik it 'should work'. If not let's look at system logs, as well as rc/logs.
P
main.inc.php (comments stripped) $rcmail_config = array(); $rcmail_config['debug_level'] = 1; $rcmail_config['enable_caching'] = FALSE; $rcmail_config['message_cache_lifetime'] = '10d'; $rcmail_config['auto_create_user'] = TRUE; $rcmail_config['default_host'] = 'localhost'; $rcmail_config['default_port'] = 143; $rcmail_config['username_domain'] = ''; $rcmail_config['mail_domain'] = ''; $rcmail_config['virtuser_file'] = ''; $rcmail_config['virtuser_query'] = ''; $rcmail_config['smtp_server'] = ''; $rcmail_config['smtp_port'] = 25; $rcmail_config['smtp_user'] = ''; $rcmail_config['smtp_pass'] = ''; $rcmail_config['smtp_auth_type'] = ''; $rcmail_config['smtp_log'] = TRUE; $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size'); $rcmail_config['skin_path'] = 'skins/default/'; $rcmail_config['temp_dir'] = 'temp/'; $rcmail_config['log_dir'] = 'logs/'; $rcmail_config['session_lifetime'] = 10; $rcmail_config['ip_check'] = TRUE; $rcmail_config['des_key'] = '****************************'; $rcmail_config['locale_string'] = 'en'; $rcmail_config['date_short'] = 'D H:i'; $rcmail_config['date_long'] = 'd.m.Y H:i'; $rcmail_config['useragent'] = 'RoundCube Webmail/0.1b'; $rcmail_config['product_name'] = 'RoundCube Webmail'; $rcmail_config['imap_root'] = ''; $rcmail_config['drafts_mbox'] = 'Drafts'; $rcmail_config['junk_mbox'] = 'Spam'; $rcmail_config['sent_mbox'] = 'Sent'; $rcmail_config['trash_mbox'] = ''; $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Spam'); $rcmail_config['protect_default_folders'] = TRUE; $rcmail_config['skip_deleted'] = FALSE; $rcmail_config['read_when_deleted'] = TRUE; $rcmail_config['flag_for_deletion'] = TRUE; $rcmail_config['enable_spellcheck'] = TRUE; $rcmail_config['spellcheck_uri'] = ''; $rcmail_config['spellcheck_languages'] = NULL; $rcmail_config['generic_message_footer'] = ''; $rcmail_config['mail_header_delimiter'] = NULL; $rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion'); $rcmail_config['include_host_config'] = FALSE; /***** these settings can be overwritten by user's preferences *****/ $rcmail_config['pagesize'] = 40; $rcmail_config['timezone'] = 1; $rcmail_config['dst_active'] = TRUE; $rcmail_config['prefer_html'] = TRUE; $rcmail_config['prettydate'] = TRUE; $rcmail_config['message_sort_col'] = 'date'; $rcmail_config['message_sort_order'] = 'DESC'; $rcmail_config['draft_autosave'] = 300;
-- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
-- http://fak3r.com - you don't have to kick it
On 16 Oct 2006, at 06:29 , Spil Oss wrote:
RoundCube fails to display messages in the message-list even though the number of new messages is shown in the page-title ("(11) RoundCube Webmail :: Spam") . This only seems to happen for my Spam folder.
Well then it's obviously a FEATURE!
:)
Unfortunately, hardly any differences from the version I have installed. (See diff below) The port seems to be extremely up-to-date :D
Forgot to mention that I'm running courier-imap 4.1.1,1 from the ports collection
Tried getting more output in rc/logs, but was unsuccesfull in getting anything helpful out of the files. Setting the debug-level to 8 only resulted in a file console with kept repeating [16-Oct-2006 13:40:24 +0200]: * CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS cp01 OK CAPABILITY completed Tried PLAIN: Resource id #31
/var/log/maillog has entries in the form Oct 17 09:48:17 beastie imapd: LOGIN, user=bspil01, ip=[127.0.0.1], protocol=IMAP Oct 17 09:48:17 beastie imapd: LOGOUT, user=bspil01, ip=[127.0.0.1], headers=0, body=0, rcvd=405, sent=4017, time=0
What I noticed today is that there were 2 new messages in Spam, when I used 'Check for new messages' the count disappeared from the folders. Hadn't checked the content of the Spam folder yet.
diff -r -x .svn trunk/roundcubemail/program/js/tiny_mce/plugins/spellchecker/config.php 0.1-20060928/roundcubemail/program/js/tiny_m ce/plugins/spellchecker/config.php 10c10
$spellCheckerConfig['enabled'] = false;
diff -r -x .svn trunk/roundcubemail/program/steps/settings/edit_identity.inc 0.1-20060928/roundcubemail/program/steps/settings/edit_ identity.inc 18c18
$Id: edit_identity.inc 344 2006-09-14 03:49:28Z estadtherr $
50,52d49 < "content_css : '$__skin_path' + '/editor_content.css'," . < "popups_css : '$__skin_path' + '/editor_popups.css'," . < "editor_css : '$__skin_path' + '/editor_ui.css'," . 143c140
?>
\ No newline at end of file
On 16/10/06, phil phil@cryer.us wrote:
On Mon, 16 Oct 2006 14:29:38 +0200, "Spil Oss" spil.oss@googlemail.com wrote:
RoundCube fails to display messages in the message-list even though the number of new messages is shown in the page-title ("(11) RoundCube Webmail :: Spam") . This only seems to happen for my Spam folder. Verified the content of the folder with Thunderbird and there are 11 new msgs in the Spam box
Today, one new message was shown in the Spam folder message-list, even though the number of unread messages in that folder was 11. After logging off and loggin on again, the message-list for Spam was empty again.
Anyone any clue? OS: FreeBSD 6.1-RELEASE-p10 Apache 2.2.3 php 5.1.6 RoundCube-0.1.20060928 from ports collection
I cannot reproduce this, and my setup is almost exactly as yours is (I run Dovecot, the only other variable I can think of). Could you try using the latest SVN? I have docs on how I did it on FreeBSD here: http://fak3r.com/2005/11/15/howto-install-roundcube-webmail-from-svn-was-cvs...
Just put it in a different folder, copy in your config and main, afaik it 'should work'. If not let's look at system logs, as well as rc/logs.
P
main.inc.php (comments stripped) $rcmail_config = array(); $rcmail_config['debug_level'] = 1; $rcmail_config['enable_caching'] = FALSE; $rcmail_config['message_cache_lifetime'] = '10d'; $rcmail_config['auto_create_user'] = TRUE; $rcmail_config['default_host'] = 'localhost'; $rcmail_config['default_port'] = 143; $rcmail_config['username_domain'] = ''; $rcmail_config['mail_domain'] = ''; $rcmail_config['virtuser_file'] = ''; $rcmail_config['virtuser_query'] = ''; $rcmail_config['smtp_server'] = ''; $rcmail_config['smtp_port'] = 25; $rcmail_config['smtp_user'] = ''; $rcmail_config['smtp_pass'] = ''; $rcmail_config['smtp_auth_type'] = ''; $rcmail_config['smtp_log'] = TRUE; $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size'); $rcmail_config['skin_path'] = 'skins/default/'; $rcmail_config['temp_dir'] = 'temp/'; $rcmail_config['log_dir'] = 'logs/'; $rcmail_config['session_lifetime'] = 10; $rcmail_config['ip_check'] = TRUE; $rcmail_config['des_key'] = '****************************'; $rcmail_config['locale_string'] = 'en'; $rcmail_config['date_short'] = 'D H:i'; $rcmail_config['date_long'] = 'd.m.Y H:i'; $rcmail_config['useragent'] = 'RoundCube Webmail/0.1b'; $rcmail_config['product_name'] = 'RoundCube Webmail'; $rcmail_config['imap_root'] = ''; $rcmail_config['drafts_mbox'] = 'Drafts'; $rcmail_config['junk_mbox'] = 'Spam'; $rcmail_config['sent_mbox'] = 'Sent'; $rcmail_config['trash_mbox'] = ''; $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Spam'); $rcmail_config['protect_default_folders'] = TRUE; $rcmail_config['skip_deleted'] = FALSE; $rcmail_config['read_when_deleted'] = TRUE; $rcmail_config['flag_for_deletion'] = TRUE; $rcmail_config['enable_spellcheck'] = TRUE; $rcmail_config['spellcheck_uri'] = ''; $rcmail_config['spellcheck_languages'] = NULL; $rcmail_config['generic_message_footer'] = ''; $rcmail_config['mail_header_delimiter'] = NULL; $rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion'); $rcmail_config['include_host_config'] = FALSE; /***** these settings can be overwritten by user's preferences *****/ $rcmail_config['pagesize'] = 40; $rcmail_config['timezone'] = 1; $rcmail_config['dst_active'] = TRUE; $rcmail_config['prefer_html'] = TRUE; $rcmail_config['prettydate'] = TRUE; $rcmail_config['message_sort_col'] = 'date'; $rcmail_config['message_sort_order'] = 'DESC'; $rcmail_config['draft_autosave'] = 300;
-- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
-- http://fak3r.com - you don't have to kick it
-- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
Solved!
Somehow my .Spam folder was corrupted. There were messages in there owned by root, must have been me getting things up-and-running.
Thanks for your help,
Spil.
On 17/10/06, Spil Oss spil.oss@googlemail.com wrote:
Unfortunately, hardly any differences from the version I have installed. (See diff below) The port seems to be extremely up-to-date :D
Forgot to mention that I'm running courier-imap 4.1.1,1 from the ports collection
Tried getting more output in rc/logs, but was unsuccesfull in getting anything helpful out of the files. Setting the debug-level to 8 only resulted in a file console with kept repeating [16-Oct-2006 13:40:24 +0200]: * CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS cp01 OK CAPABILITY completed Tried PLAIN: Resource id #31
/var/log/maillog has entries in the form Oct 17 09:48:17 beastie imapd: LOGIN, user=bspil01, ip=[127.0.0.1], protocol=IMAP Oct 17 09:48:17 beastie imapd: LOGOUT, user=bspil01, ip=[127.0.0.1], headers=0, body=0, rcvd=405, sent=4017, time=0
What I noticed today is that there were 2 new messages in Spam, when I used 'Check for new messages' the count disappeared from the folders. Hadn't checked the content of the Spam folder yet.
diff -r -x .svn trunk/roundcubemail/program/js/tiny_mce/plugins/spellchecker/config.php 0.1-20060928/roundcubemail/program/js/tiny_m ce/plugins/spellchecker/config.php 10c10
< $spellCheckerConfig['enabled'] = true;
$spellCheckerConfig['enabled'] = false;
diff -r -x .svn trunk/roundcubemail/program/steps/settings/edit_identity.inc 0.1-20060928/roundcubemail/program/steps/settings/edit_ identity.inc 18c18
< $Id: edit_identity.inc 360 2006-10-08 23:55:16Z estadtherr $
$Id: edit_identity.inc 344 2006-09-14 03:49:28Z estadtherr $
50,52d49 < "content_css : '$__skin_path' + '/editor_content.css'," . < "popups_css : '$__skin_path' + '/editor_popups.css'," . < "editor_css : '$__skin_path' + '/editor_ui.css'," . 143c140
< ?>
?>
\ No newline at end of file
On 16/10/06, phil phil@cryer.us wrote:
On Mon, 16 Oct 2006 14:29:38 +0200, "Spil Oss" spil.oss@googlemail.com wrote:
RoundCube fails to display messages in the message-list even though the number of new messages is shown in the page-title ("(11) RoundCube Webmail :: Spam") . This only seems to happen for my Spam folder. Verified the content of the folder with Thunderbird and there are 11 new msgs in the Spam box
Today, one new message was shown in the Spam folder message-list, even though the number of unread messages in that folder was 11. After logging off and loggin on again, the message-list for Spam was empty again.
Anyone any clue? OS: FreeBSD 6.1-RELEASE-p10 Apache 2.2.3 php 5.1.6 RoundCube-0.1.20060928 from ports collection
I cannot reproduce this, and my setup is almost exactly as yours is (I run Dovecot, the only other variable I can think of). Could you try using the latest SVN? I have docs on how I did it on FreeBSD here: http://fak3r.com/2005/11/15/howto-install-roundcube-webmail-from-svn-was-cvs...
Just put it in a different folder, copy in your config and main, afaik it 'should work'. If not let's look at system logs, as well as rc/logs.
P
main.inc.php (comments stripped) $rcmail_config = array(); $rcmail_config['debug_level'] = 1; $rcmail_config['enable_caching'] = FALSE; $rcmail_config['message_cache_lifetime'] = '10d'; $rcmail_config['auto_create_user'] = TRUE; $rcmail_config['default_host'] = 'localhost'; $rcmail_config['default_port'] = 143; $rcmail_config['username_domain'] = ''; $rcmail_config['mail_domain'] = ''; $rcmail_config['virtuser_file'] = ''; $rcmail_config['virtuser_query'] = ''; $rcmail_config['smtp_server'] = ''; $rcmail_config['smtp_port'] = 25; $rcmail_config['smtp_user'] = ''; $rcmail_config['smtp_pass'] = ''; $rcmail_config['smtp_auth_type'] = ''; $rcmail_config['smtp_log'] = TRUE; $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size'); $rcmail_config['skin_path'] = 'skins/default/'; $rcmail_config['temp_dir'] = 'temp/'; $rcmail_config['log_dir'] = 'logs/'; $rcmail_config['session_lifetime'] = 10; $rcmail_config['ip_check'] = TRUE; $rcmail_config['des_key'] = '****************************'; $rcmail_config['locale_string'] = 'en'; $rcmail_config['date_short'] = 'D H:i'; $rcmail_config['date_long'] = 'd.m.Y H:i'; $rcmail_config['useragent'] = 'RoundCube Webmail/0.1b'; $rcmail_config['product_name'] = 'RoundCube Webmail'; $rcmail_config['imap_root'] = ''; $rcmail_config['drafts_mbox'] = 'Drafts'; $rcmail_config['junk_mbox'] = 'Spam'; $rcmail_config['sent_mbox'] = 'Sent'; $rcmail_config['trash_mbox'] = ''; $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Spam'); $rcmail_config['protect_default_folders'] = TRUE; $rcmail_config['skip_deleted'] = FALSE; $rcmail_config['read_when_deleted'] = TRUE; $rcmail_config['flag_for_deletion'] = TRUE; $rcmail_config['enable_spellcheck'] = TRUE; $rcmail_config['spellcheck_uri'] = ''; $rcmail_config['spellcheck_languages'] = NULL; $rcmail_config['generic_message_footer'] = ''; $rcmail_config['mail_header_delimiter'] = NULL; $rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion'); $rcmail_config['include_host_config'] = FALSE; /***** these settings can be overwritten by user's preferences *****/ $rcmail_config['pagesize'] = 40; $rcmail_config['timezone'] = 1; $rcmail_config['dst_active'] = TRUE; $rcmail_config['prefer_html'] = TRUE; $rcmail_config['prettydate'] = TRUE; $rcmail_config['message_sort_col'] = 'date'; $rcmail_config['message_sort_order'] = 'DESC'; $rcmail_config['draft_autosave'] = 300;
-- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
-- http://fak3r.com - you don't have to kick it
-- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.