RoundCube Webmail Forum  

Go Back   RoundCube Webmail Forum > SVN Releases > Issues & Bugs

For more information about the ads and why they're here, please see the FAQ
Reply
  #1  
Old 09-30-2006, 10:52 AM
Super Moderator
 
Join Date: Jul 2006
Location: Dronten | The Netherlands
Posts: 150
Downloads: 0
Uploads: 0
Default Unable to delete a email...

When I try to delete a email after reading the email by pushing the trash can I get the following error from IE 6 / 7

Line: 1304
Char: 5
Error: 'this.message_list'is null or not an object
Code: 0
URL: http://webmail.domain.com/?_task=mai...70&_mbox=INBOX

When I go back to the default view where I can see al the emails I'm able to delete the email....??
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 10-02-2006, 04:29 PM
Registered User
 
Join Date: Jun 2006
Posts: 5
Downloads: 0
Uploads: 0
Default Re: Unable to delete a email...

I'm seeing the same behavior, I'm not sure what caused the change. I'm currently running revision 359.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 10-03-2006, 11:23 AM
Registered User
 
Join Date: Jul 2006
Posts: 4
Downloads: 0
Uploads: 0
Default Re: Unable to delete a email...

Ack. Same here.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 10-04-2006, 03:18 PM
Registered User
 
Join Date: Oct 2006
Posts: 1
Downloads: 0
Uploads: 0
Default Re: Unable to delete a email...

I, too, am seeing the same error in IE. On top of this, Firefox, while not reporting an error, also produces the same symptom (cannot delete an email while reading it).

I am not sure if it is related, but after selecting "Empty" while on the Trash folder screen, I receive the confirmation dialogue, but none of the emails in the Trash are deleted. This, too, happens in both IE and Firefox.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 10-06-2006, 07:11 PM
Registered User
 
Join Date: Oct 2006
Posts: 2
Downloads: 0
Uploads: 0
Default Re: Unable to delete a email...

Quote:
Originally Posted by Reload
When I try to delete a email after reading the email by pushing the trash can I get the following error from IE 6 / 7

Line: 1304
Char: 5
Error: 'this.message_list'is null or not an object
Code: 0
URL: http://webmail.domain.com/?_task=mai...70&_mbox=INBOX

When I go back to the default view where I can see al the emails I'm able to delete the email....??

On firefox, while reading the message, i can't delete it by using the delete icon...
Then if i go to my inbox, i can delete it from there...
Does anybody know how can i solve this problem?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 10-09-2006, 01:47 PM
taz
Guest
 
Posts: n/a
Downloads:
Uploads:
Default Re: Unable to delete a email...

To workaround this problem run "svn -r353 update". This reverts the code to before the "Partial client re-write with a common list class" commit which seemed to break deleting messages.

I too find I can not do a select all, delete and various other things unless I'm on revision 353 or before.

You can then check if there have been any updates to fix this with "svn -u status" to see if there are aany new revisions, and then see what the log entry for them is with something like "svn -354:HEAD log".

Hope this helps till it's fixed!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 10-11-2006, 02:07 AM
Registered User
 
Join Date: Jul 2006
Posts: 51
Downloads: 0
Uploads: 0
Default Re: Unable to delete a email...

Quote:
Originally Posted by yakuza
I'm seeing the same behavior, I'm not sure what caused the change. I'm currently running revision 359.
i'm running svn 360, still the same behavior, can't delete the mail when you're reading it
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 10-16-2006, 09:21 AM
prx prx is offline
Registered User
 
Join Date: Oct 2006
Posts: 2
Downloads: 0
Uploads: 0
Default Re: Unable to delete a email...

Revision 360 - i can't move messages too. Maybe someone have a solution, how to change the code?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 10-16-2006, 01:26 PM
taz
Guest
 
Posts: n/a
Downloads:
Uploads:
Default Re: Unable to delete a email...

I gave a solution! run svn -r353 update to revert to working code.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 10-16-2006, 06:36 PM
Registered User
 
Join Date: Oct 2006
Posts: 3
Downloads: 0
Uploads: 0
Default Re: Unable to delete a email...

Well, i'm running 360, and i managed to patch the js script to make the delete button work.
Although it works for me, i don't guarantee anything:
you have to edit program/js/app.js

line 1236: replace
Code:
  var selection = this.message_list.get_selection();
  if (!mbox || !(selection.length || this.env.uid) || mbox==this.env.mailbox)
   return;
by
Code:
  if (!(this.env.uid)){
   var selection = this.message_list.get_selection();
   if (!mbox || !(selection.length) || mbox==this.env.mailbox)
    return;
  }
line 1273: replace
Code:
  var selection = this.message_list.get_selection();
  if (!(selection.length || this.env.uid))
   return;
by
Code:
  if (!(this.env.uid)){
   var selection = this.message_list.get_selection();
   if (!(selection.length))
    return;
  }
And at line 1303, replace:
Code:
  var selection = this.message_list.get_selection();
  if (!(selection.length || this.env.uid))
   return;
by
Code:
  if (!(this.env.uid)){
   var selection = this.message_list.get_selection();
   if (!(selection.length))
   return;
  }
Hope that helps
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

For more information about the ads and why they're here, please see the FAQ

All times are GMT. The time now is 05:46 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright © 2006-2008 RoundCube Webmail Community