Hi All,
Find attached a patch for ticket #1487747. I'm not able to upload it in
trac. It keeps telling me that it's spam.
I've tested it in FF & Chrome browsers in Linux and looks good. Could
anyone take a look at IE please?
P.S Sorry but I'm not so active in this list as I wish because I'm on
exams period at University.
Thanks,
Adolfo.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/f8/X9BkDq8d/1487747.patch
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
Sorry. :-)
Now with patchs files in attach.
This patchs is for enable or disable the attach preview window and you can
configure it from "personal settings > message view".
DC
2011/2/18 邓卫华 <dengwh(a)bestcheer.com>
> HI,dc
>
> thanks for your reply ASAP, how to find the patch file?
>
> Thanks
>
> Deng
>
> On Fri, 18 Feb 2011 14:21:53 +0000, Ling Fude wrote:
>
> Hi,
>
> I have the same problem you have.
> I made a patch to solve this problem but the Roundcube developers are not interested
> to apply it (I don't know why).
> Feel free to apply the patch attached at your own risk.
> I stopped having problems opening attachments after applying these patches.
>
> Regards,
> DC
>
> 2011/2/18 邓卫华 <dengwh(a)bestcheer.com>
>
>> Hi,
>>
>> im useing roudceubemail 0.5stable, i have a problem about open pdf file
>> in roundcubemail. the roudcubemail can not load PDF files and has been
>> displayed "LOADING data".
>>
>> please the attached file.
>>
>> IE8.0
>>
>> --
>> Best Cheer (XiaMen) Stone Works CO.,LTP.
>> Phone: 0592-7221600
>>
>>
>> *Detachments* -The following attachments have been detached and are
>> available for viewing.
>>
>> - http://detached.gigo.com/rc/C3/yP1E6Odf/pic.PNG
>>
>> Only click these links if you trust the sender, as well as this message.
>>
>>
>>
>>
>>
>> --
>> List info: http://lists.roundcube.net/users/
>> BT/1987eeeb
>>
>>
>
>
> --
> Best Cheer (XiaMen) Stone Works CO.,LTP.
> Phone: 0592-7221600
>
>
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/y4/nlJlEZ2Q/app.js.patchhttp://detached.gigo.com/rc/y4/nlJlEZ2Q/func.inc.patchhttp://detached.gigo.com/rc/y4/nlJlEZ2Q/func.php.patchhttp://detached.gigo.com/rc/y4/nlJlEZ2Q/labels.inc.patchhttp://detached.gigo.com/rc/y4/nlJlEZ2Q/main.inc.patchhttp://detached.gigo.com/rc/y4/nlJlEZ2Q/save_prefs.inc.patch
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,
I have the same problem you have.
I made a patch to solve this problem but the Roundcube developers are
not interested
to apply it (I don't know why).
Feel free to apply the patch attached at your own risk.
I stopped having problems opening attachments after applying these patches.
Regards,
DC
2011/2/18 邓卫华 <dengwh(a)bestcheer.com>
> Hi,
>
> im useing roudceubemail 0.5stable, i have a problem about open pdf file
> in roundcubemail. the roudcubemail can not load PDF files and has been
> displayed "LOADING data".
>
> please the attached file.
>
> IE8.0
>
> --
> Best Cheer (XiaMen) Stone Works CO.,LTP.
> Phone: 0592-7221600
>
>
> *Detachments* -The following attachments have been detached and are
> available for viewing.
>
> - http://detached.gigo.com/rc/C3/yP1E6Odf/pic.PNG
>
> Only click these links if you trust the sender, as well as this message.
>
>
> --
> List info: http://lists.roundcube.net/users/
> BT/1987eeeb
>
>
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello,
I'm experiencing a quite high load (for a webmail interface) on our
server with roundcube 0.5.1. The old server was an Opteron Single Core
CPU with 2.2 GHz and only 1 GB RAM. It had a load of >30, but it was
old. So I moved the webmail to a newer server with Opteron Dual Core and
8 GB RAM, but the load is still very high (around 15).
What's the reason for this? Is it normal? I mean: roundcube is very AJAX
heavy, is it due to the IMAP connection pools, frequent polls etc.? I
don't know how many users are connection concurrently, but it shouldn't
be more than 50.
Kind regards
Marten
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
We use postfixadmin and have a mailbox_postdeletion_script which does the
job of "removing" the actual maildir (though we don't delete, we move it
aside for a couple of weeks, so we can help folks restore when they've
made mistakes.) That script also does some cleanup on the roundcubemail
database -- and I want to enhance it to similarly not actually delete
users roundcube data, but just mark the del columns -- Then we
can periodically use the roundcube/bin/cleandb.sh script to make the
removal permanent.
My question is, not all tables have the del column, like the root of all
tables: the users table. (Also the contactgroups table -- but it looks
like the cleandb.sh script might deal with that??) So what exactly is
recommend db maintenance when removing a mailbox?
I was looking at doing something like::::::
SELECT user_id FROM users WHERE username LIKE '$ARGV'
UPDATE identities SET del=1 WHERE user_id = '$user_id'
DELETE FROM cache WHERE user_id = '$user_id'
UPDATE contacts SET del=1 WHERE user_id = '$user_id'
UPDATE contactgroups SET del=1 WHERE user_id = '$user_id'
DELETE FROM messages WHERE user_id = '$user_id'
??DELETE FROM users WHERE username = '$ARGV' LIMIT 1??
This last line is where I get stuck because I don't really want to delete
it, but there is no del column to mark. . .
Any input much appreciated ;)
Ben
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
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