I was doing today a small exercise to see the status of branch 0.5.x
I am looking for the bugs we know that release have, and we have fixed
but didn't released in 0.5.1 yet
i have made a query into trac:
http://trac.roundcube.net/query?status=closed&type=Bugs&type=Bug
+Patches&version=!
svn-trunk&resolution=fixed&milestone=0.6-beta&col=id&col=summary&col=milestone&col=status&col=type&col=priority&col=component&order=priority
the filter i have chosen for this small exercise didn't include any bug
that the original version was svn-trunk, and didn't check for closed
tickets in 'later' milestone; only ticket which type is a
Bug/BugPatches, fixed and closed in the next milestone (0.6-beta).
that brings to me 7 patches:
- Ticket #1487784 Fixed in r4543.
- Ticket #1485975 Done in r4547.
- Ticket #1487664 Fixed in r4551
- Ticket #1487673 Fixed in r4433.
- Ticket #1487775 Fixed in r4535
- Ticket #1487785 Fixed in r4540
- Ticket #1487789 Fixed in r4556.
After doing a svn copy on my Working copy and reviewing each .diff, only
one (r4433) was applied to tags/roundcubemail/v0.5.1 but the others not
yet and they are fixing interesting things for production environment.
pending fixes are:
- Ticket #1487784 Fixed in r4543 !
- Ticket #1485975 Done in r4547 !
- Ticket #1487664 Fixed in r4551 !
- Ticket #1487775 Fixed in r4535 !
- Ticket #1487785 Fixed in r4540 !
- Ticket #1487789 Fixed in r4556 !
those changes can be applied to 0.5.1 and get a more stable 0.5.x
version available for production.
Can we get a release 0.5.2 with these patches applied?
regards
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hey all, could someone explain what the idea is with the svn branches? I see Alec is doing updates of 0.5 from trunk patches. Does this mean there is a supported 0.5 branch, that will include most bugfixes from trunk? If one wanted to follow an svn repo to stay current, would you suggest following a branch, or trunk?
Regards,
Cor
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
I'm writing a little filter extension to get spam out of the way.
My MTA writes ***SPAM*** in the subject line if this is the case.
As far as I can see I followed the rules for plugins, activated it,
but : no go.
This is the code :
<?php
class incoming_filter extends rcube_plugin
{
public $task = 'mail';
function init()
{
$this->add_hook('message_load', array($this,'header'));
}
function header($args)
{
$text = trim($args->headers['subject']);
$pos = stristr($text, "SPAM");
if($pos == 0)
return $args;
$rcmail = rcmail::get_instance();
if (($junk_mbox = $rcmail->config->get('junk_mbox')) && $mbox !=
$junk_mbox) {
$rcmail->output->command('move_messages', $junk_mbox);
}
}
}
?>
Can anybody point me in the direction what i'm doing wrong ???
Thanks in advance,
Steven
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi
You were introducing (better) CSRF protection in RC 0.5.1. In RC 0.5 we were able to provide our own custom login forms (on a different domain) for Roundcube. In 0.5.1 those forms no longer work, probably due to the missing "_token" POST request param. We're getting redirected to the login form right after submitting the login credentials.
We provide both "_user" and "_pass" input fields but are not able to provide the hidden "_token" field as this token gets generated by RC.
Example login form that works perfectly under RC 0.5:
https://my.onlime.ch/index/webmail
Is there any workaround for this in RC 0.5.1? I couldn't find any hints about custom login forms in your Wiki.
Thanks!
Regards, Philip
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi
Labels in Khmer updated
Cheers,
Sengtha
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/re/PdGv3lGD/labels.inc
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
Is there any translation tool for Managesieve plugin?
How can I translate the Managesieve plugin?
Regards,
DC
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Or am I missing something?
Because users just had addresses in their addressbooks, without filing
them under contact groups, then 0.5 shows empty addressbooks with queries
like:
SELECT * FROM contactgroups WHERE del<>1 AND user_id='23' ORDER BY name
Seems like there's some mysql Fu that needs to happen to put each users's
contacts into a contactgroup. . .
Ben
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80