Page 1 of 1
Mass release of messages
Posted: 07 Feb 2014 16:58
by nicolatiana
Good morning
In message operations the R option (release) does not work if you try to mark all messages.
This is the error
Not Found
The requested URL /mailscanner/\"javascript:SetRadios('R')" was not found on this server.
Apache/2.2.15 (CentOS) Server at 192.168.0.7 Port 80
Nicola
Re: Mass release of messages
Posted: 07 Feb 2014 19:52
by shawniverson
Re: Mass release of messages
Posted: 10 Feb 2014 14:46
by buzzzo
It's a stupid syntax error on the script functions.php:
To solve:
First of all backup the file: cp /var/www/html/mailscanner/functions.php /tmp/functions.php.bak
open with an editor: /var/www/html/mailscanner/functions.php
Search the following line: <a href="javascript:SetRadios(\'F\')">F</a>
You would find a bunch of similar lines:
<a href="javascript:SetRadios(\'S\')">S</a>
<a href="javascript:SetRadios(\'H\')">H</a>
<a href="javascript:SetRadios(\'F\')">F</a>
You would see that the lines related to "R" is different from the others, cut it and replace with the following one:
<a href="javascript:SetRadios(\'R\')">R</a>
Save.
NOTE TO DEVS: for simple bugs like this would be better to fix by themself ?
Thx
Re: Mass release of messages
Posted: 10 Feb 2014 21:33
by shawniverson
Yep plan on fixing this. It is a very minor edit.