> Matt Kaatman said:
>
> Do we have any goals before we release the next beta?
>
> Maybe a feature freeze is in order to get a newer beta out?
I think a release that includes the vulnerability fix -
<http://trac.roundcube.net/trac.cgi/ticket/1484109>
should be made, so new RoundCube users don't have to patch their
fresh install.
Many first time users will likely choose to download a beta release
rather than an SVN snapshot that contains the fix.
Charles Dostale
System Admin - Silver Oaks Communications
http://www.silveroaks.com/
824 17th Street, Moline IL 61265
Hi Pierre
Please update your local copy to the latest revision (svn update) and
then create the diff again. The current one removes newly added features :-(
~Thomas
Pierre Lena wrote:
> Here is the diff file.
>
> Regards.
>
Hi everybody,
Looks like the others are getting closer:
Gmail like AJAX powered Web 2.0 version of IMP
http://janschneider.de/news/25/252
Duroty System (BETA) is the open source Gmail
http://www.duroty.com/en/index.jsp
The main problem of RoundCube is the project manager's lack of time and
as a consequence of that the bad project organization, both my faults.
If somebody thinks he or she could afford some time (actually it's a
full-time job) and who has some experience in project management, I'm
willing to give away the "power" and become a regular developer (that's
what I really am).
Regards,
Thomas
As Jim stated in the previous email...
"On another subject: It seems we have a lot of sysadmins offering
time, so we might even be able to dedicate certain ones to certain
setups ("specialists" I guess they could be called). For example, it
would be best to have an admin who uses Dovecot on a daily basis to be
responsible for its testing. They would be more likely to know quirks
and what might be a configuration issue. If someone reports a problem,
a specialist could test, attempt to reproduce the problem, and gather
more information before the ticket is passed on to an actual
developer. Just another idea..."
If you are a SysAdmin and would like to be involved in a
non-developer aspect please respond to this email. It sounds like Jim
has some resources at his disposal and we could pool our efforts to
produce a good testing environment. What Jim and I have already
discussed is scheduling a script to pull down the current versions
from SVN and redeploy and test the RC installs. Scripting the syncing
via SVN, putting the files in place, adjusting the config file and
rebuilding the database are all simple steps that we can put together.
From there we need to generate a set of sample emails into the
system so that we can test show RC handles it. One way to automate
those test is the Selenium tool. (http://www.openqa.org/selenium/) We
can put together a series of testing using Selenium IDE
(http://www.openqa.org/selenium-ide/) which one of can run manually to
go through each of the automated tests. We can log any bugs as they
happen.
And the Selenium tests will run in FireFox, MSIE, Opera or Safari,
so once we have these tests working we can make the available for
testers to run on the various browser and platform versions beyond
what we may test among ourselves. I expect to just test FireFox and
MSIE.
These tests will help accelerate development and offload some of the
testing done by the developers.
Brennan Stehling Offwhite.net LLC brennan(a)offwhite.net
I've been hacking away at this trying to get it to work with the latest svn, mostly by
manually going through and patching everything. So far, no luck. I get to the Mail rules
page and the button to add new rules does nothing. I guess the next step is for me to
backup to v400 and try it first. Has anyone gotten this working yet?
-Ryan
Network Administrator
Goshen College
(574) 535-7004
Pierre Lena wrote:
> The diff file can be downloaded there
> http://www.mangoose.org/RoundCube/filters/filters_diff.diff
>
> The table structure to handle mailrule is:
> CREATE TABLE `mailrules` (
> `mailrule_id` int(11) NOT NULL auto_increment,
> `from` varchar(128) default NULL,
> `to` varchar(128) default NULL,
> `subject` varchar(128) default NULL,
> `user_id` int(10) unsigned NOT NULL default '0',
> `del` tinyint(1) NOT NULL default '0',
> `location` varchar(128) default NULL,
> PRIMARY KEY (`mailrule_id`)
> ) TYPE=MyISAM;
>
> Here are the added files:
> http://www.mangoose.org/RoundCube/filters/addmailrule.html goes to skins/default/templates
> http://www.mangoose.org/RoundCube/filters/delete_mailrule.inc goes to program/steps/settings/
> http://www.mangoose.org/RoundCube/filters/editmailrule.html goes to skins/default/templates
> http://www.mangoose.org/RoundCube/filters/edit_mailrule.inc goes to program/steps/settings/
> http://www.mangoose.org/RoundCube/filters/mailrules.html goes to skins/default/templates
> http://www.mangoose.org/RoundCube/filters/mailrules.inc goes to program/steps/settings
> http://www.mangoose.org/RoundCube/filters/save_mailrule.inc goes to program/steps/settings/
>
> Regards.
>
>
> On Wed, 20 Dec 2006 20:37:40 +0100, Pierre Lena <plena(a)mangoose.org> wrote:
>> Here is the diff file.
>>
>> Regards.
>>
>> On Wed, 20 Dec 2006 20:17:59 +0100, Pierre Lena <plena(a)mangoose.org>
>> wrote:
>>> How do I create the diff?
>>> Do I need to reload the svn400 to create it?
>>>
>>> On Wed, 20 Dec 2006 20:14:53 +0100, Tomasz Pajor <t.pajor(a)kei.pl>
>> wrote:
>>>> You send the diff to mailing list, or create a ticket on
>>>> http://trac.roundcube.net/
>>>>
>>>> --
>>>> Best regards
>>>> Tom
>>>>
>>>> Dnia Wed, 20 Dec 2006 19:56:36 +0100 napisales[as]:
>>>>> Hi,
>>>>>
>>>>> I am new to the list.
>>>>> I developped mail filters for roundcube based on svn400.
>>>>> How can I send the file I modified to make them part of the project?
>>>>>
>>>>> Regards.
>>>>> Pierre
>>>>>
>>>>>
>>>>> ---
>>>>> Antivirus avast! : message Sortant sain.
>>>>> Base de donnees virale (VPS) : 0661-0, 20/12/2006
>>>>> Analyse le : 20/12/2006 19:56:37
>>>>> avast! - copyright (c) 1988-2006 ALWIL Software.
>>>>> http://www.avast.com
>>>>>
>
>
>
The diff file can be downloaded there
http://www.mangoose.org/RoundCube/filters/filters_diff.diff
The table structure to handle mailrule is:
CREATE TABLE `mailrules` (
`mailrule_id` int(11) NOT NULL auto_increment,
`from` varchar(128) default NULL,
`to` varchar(128) default NULL,
`subject` varchar(128) default NULL,
`user_id` int(10) unsigned NOT NULL default '0',
`del` tinyint(1) NOT NULL default '0',
`location` varchar(128) default NULL,
PRIMARY KEY (`mailrule_id`)
) TYPE=MyISAM;
Here are the added files:
http://www.mangoose.org/RoundCube/filters/addmailrule.html goes to skins/default/templates
http://www.mangoose.org/RoundCube/filters/delete_mailrule.inc goes to program/steps/settings/
http://www.mangoose.org/RoundCube/filters/editmailrule.html goes to skins/default/templates
http://www.mangoose.org/RoundCube/filters/edit_mailrule.inc goes to program/steps/settings/
http://www.mangoose.org/RoundCube/filters/mailrules.html goes to skins/default/templates
http://www.mangoose.org/RoundCube/filters/mailrules.inc goes to program/steps/settings
http://www.mangoose.org/RoundCube/filters/save_mailrule.inc goes to program/steps/settings/
Regards.
On Wed, 20 Dec 2006 20:37:40 +0100, Pierre Lena <plena(a)mangoose.org> wrote:
> Here is the diff file.
>
> Regards.
>
> On Wed, 20 Dec 2006 20:17:59 +0100, Pierre Lena <plena(a)mangoose.org>
> wrote:
>> How do I create the diff?
>> Do I need to reload the svn400 to create it?
>>
>> On Wed, 20 Dec 2006 20:14:53 +0100, Tomasz Pajor <t.pajor(a)kei.pl>
> wrote:
>>> You send the diff to mailing list, or create a ticket on
>>> http://trac.roundcube.net/
>>>
>>> --
>>> Best regards
>>> Tom
>>>
>>> Dnia Wed, 20 Dec 2006 19:56:36 +0100 napisales[as]:
>>>> Hi,
>>>>
>>>> I am new to the list.
>>>> I developped mail filters for roundcube based on svn400.
>>>> How can I send the file I modified to make them part of the project?
>>>>
>>>> Regards.
>>>> Pierre
>>>>
>>>>
>>>> ---
>>>> Antivirus avast! : message Sortant sain.
>>>> Base de donnees virale (VPS) : 0661-0, 20/12/2006
>>>> Analyse le : 20/12/2006 19:56:37
>>>> avast! - copyright (c) 1988-2006 ALWIL Software.
>>>> http://www.avast.com
>>>>
Here is the diff file.
Regards.
On Wed, 20 Dec 2006 20:17:59 +0100, Pierre Lena <plena(a)mangoose.org> wrote:
> How do I create the diff?
> Do I need to reload the svn400 to create it?
>
> On Wed, 20 Dec 2006 20:14:53 +0100, Tomasz Pajor <t.pajor(a)kei.pl> wrote:
>> You send the diff to mailing list, or create a ticket on
>> http://trac.roundcube.net/
>>
>> --
>> Best regards
>> Tom
>>
>> Dnia Wed, 20 Dec 2006 19:56:36 +0100 napisales[as]:
>>> Hi,
>>>
>>> I am new to the list.
>>> I developped mail filters for roundcube based on svn400.
>>> How can I send the file I modified to make them part of the project?
>>>
>>> Regards.
>>> Pierre
>>>
>>>
>>> ---
>>> Antivirus avast! : message Sortant sain.
>>> Base de donnees virale (VPS) : 0661-0, 20/12/2006
>>> Analyse le : 20/12/2006 19:56:37
>>> avast! - copyright (c) 1988-2006 ALWIL Software.
>>> http://www.avast.com
>>>
For example:
diff -aur newdir olddir
for more information: man diff
--
Best regards
Tom
Dnia Wed, 20 Dec 2006 20:17:59 +0100 napisales[as]:
> How do I create the diff?
> Do I need to reload the svn400 to create it?
>
> On Wed, 20 Dec 2006 20:14:53 +0100, Tomasz Pajor t.pajor(a)kei.pl> wrote:
>> You send the diff to mailing list, or create a ticket on
>> http://trac.roundcube.net/
>>
>> --
>> Best regards
>> Tom
>>
>> Dnia Wed, 20 Dec 2006 19:56:36 +0100 napisales[as]:
>>> Hi,
>>>
>>> I am new to the list.
>>> I developped mail filters for roundcube based on svn400.
>>> How can I send the file I modified to make them part of the project?
>>>
>>> Regards.
>>> Pierre
>>>
>>>
>>> ---
>>> Antivirus avast! : message Sortant sain.
>>> Base de donnees virale (VPS) : 0661-0, 20/12/2006
>>> Analyse le : 20/12/2006 19:56:37
>>> avast! - copyright (c) 1988-2006 ALWIL Software.
>>> http://www.avast.com
>>>
>
--
--
Pozdrawiam
Tomasz Pajor