Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: ashmandin on November 20, 2016, 09:51:04 PM

Title: Cant reply and compose new mail
Post by: ashmandin on November 20, 2016, 09:51:04 PM
Hi guys,

My account cant reply to anyone and cant compose too  :'( :'( :'(
As long as i can remember, I had only changed the preferences settings.

Is any reset which can make my account back to normal?
Please someone help me?  :'( :'( :'( :'( :'(
Title: Re: Cant reply and compose new mail
Post by: heinrichmartin on January 11, 2017, 07:25:27 AM
All,
this is what happened to me today. Is there any reference around already?

My provider updated to RC 1.2.3 a week ago. Today, I successfully composed emails and suddenly the composer started to redirect to the previous page.
I created an issue on github: https://github.com/roundcube/roundcubemail/issues/5593

Can anyone help?
TIA
Martin
Title: Re: Cant reply and compose new mail
Post by: JohnDoh on January 11, 2017, 09:55:53 AM
Please contact your provider.
Title: Re: Cant reply and compose new mail
Post by: heinrichmartin on January 12, 2017, 08:52:57 AM
Please contact your provider.
I did.

Are developers reading this forum? While the odd behavior was reproducible, the following JS code was executed (see my issue on github):
Code: [Select]
if (this.env.action == 'compose') { if (opener_rc && opener_rc.env.action == 'compose') { setTimeout(function(){ opener.history.back(); }, 100); } } // stripped some code including the call to init_messageform()
It looks like the "compose in new window" setting wass partly enabled. It does not open a new window, but does the cleanup in the original window. If this is a rare and volatile bug, then someone might be interested.