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
Hi,
attachment contains Russian translation.
Anton
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/vU/BPcbA4vc/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