Since this morning seems that both trac and svn are down. Could you
post any recent svn snapshot in the forums so I can download that
copy?
Thanks for all
_______________________________________________
List info: http://lists.roundcube.net/dev/
on Sat Jul 21 2007, till <klimpong-AT-gmail.com> wrote:
>> >> Not to rush you, but is anyone looking at these results? I went to
>> >> considerable trouble to produce them, so a simple acknowledgement
>> >> would make me feel better about having done it :)
>> >
>> > Pong!
>> >
>> > I can't provide you with an ETA on when I will look. Probably on the
>> > weekend. Maybe others will look earlier - or later.
>>
>> Just checking in again, thanks...
>
> Sorry, still have no ETA. I can try again next week but I am somewhat
> on vacation.
Sorry to pester, but how about now?
--
Dave Abrahams
Boost Consulting
http://www.boost-consulting.com
The Astoria Seminar ==> http://www.astoriaseminar.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
> Thanks, I've read about both these facilities, and in fact I have them
> installed. However, none of the documentation I've found makes what
> they really do understandable, and especially not how to recover if
> there's a problem during upgrading... which I've had in the past.
I only *minimally* use ports, specifically because of problems upgrading.
I only use ports for minor things. That said, I don' fear upgrading
"/usr/ports", I just do any actual port upgrades cautiously.
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html
gives many ways to update your /usr/ports .
_______________________________________________
List info: http://lists.roundcube.net/dev/
I just submitted a bug to trac about downloading attachments that
aren't of a correct mime type to spawn the window, ie the direct
download, that causes the ui to lock up. (#1484496)
Here is my patch to the solution from the latest svn checkout. It
retains the original behavior of the redirect() function but adds in
the lock that is sent to goto_url().
New to patches, so please forgive if I did this improperly.
Patrick
Index: program/js/app.js
===================================================================
--- program/js/app.js (revision 657)
+++ program/js/app.js (working copy)
@@ -694,7 +694,7 @@
}
}
- this.goto_url('get', qstring+'&_download=1');
+ this.goto_url('get', qstring+'&_download=1', false);
break;
case 'select-all':
@@ -3187,9 +3187,10 @@
/********* remote request methods *********/
/********************************************************/
- this.redirect = function(url)
+ this.redirect = function(url, lock)
{
- this.set_busy(true);
+ if (lock || lock == null)
+ this.set_busy(true);
if (this.env.framed && window.parent)
parent.location.href = url;
else
@@ -3198,11 +3199,8 @@
this.goto_url = function(action, query, lock)
{
- if (lock)
- this.set_busy(true);
-
var querystring = query ? '&'+query : '';
- this.redirect(this.env.comm_path+'&_action='+action+querystring);
+ this.redirect(this.env.comm_path+'&_action='+action+querystring,
lock);
};
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello dev list,
here is a roundcube-0.1-beta2, in front of Courier-imap server.
Effect: when user sends a mail, what contains a subject like:
04.10.
or
2007.06.07.
(these are concrete examples), so the any kind of date-like-pattern
accommodate the string, user can't list the folder.
If user point the browser to an email in Inbox, and then goes to
Sent items, then folder opens.
Could somebody help me, what may be the problem.
(If I remove the mail, what contains the subject above, Sent items
folder opens, when user click to its link).
Thanks:
a.
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
I'm new to RoundCube, just tried it today, liked it very much, so I decided to
modify the code a little to suit my needs, but I'm not a php expert, that's
why I need some help. I wanted to disable the e-mail and reply-to modifying options
in the identities menu.
In the main.inc.php config file I added a new entry:
rcmail_config['can_change_fromaddr'] = TRUE;
but it seems like that $CONFIG['can_change_fromaddr'] is empty when I try to use it in
the edit_identity.inc file.
What am I doing wrong?
Patch attached.
thanks,
Kamm
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/mm/wc/9GX2nH6F/roundcube_fromaddr.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/
Hi Thomas,
I'm sorry to hear your reasons for handing your leadership over to someone
else. Roundcube is so far a great app and I use it often.
Whether I had sufficient webprogrammer skills I would help to develop
roundcube. But for now it's for me an insuperable challenge that would
waste a lot of time even before I can commit my first lines of code. And I
try to commit a patch some day:-)
I hope that roundcube will be develop any longer!
Greetz
On Mon, 23 Jul 2007 17:06:50 +0200, "Thomas Bruederli"
<roundcube(a)gmail.com> wrote:
> There's one simple answer to this question: It just because nobody
> really works on the code. When did you see the last commit that closed
> a bug?
>
> Second: releasing means testing, cleaning up, packaging, distributing,
> writing an announcement, etc. I don't want to do all that stuff every
> time I change two lines of code. But this is not the point. The main
> reason why we're still stuck with 0.1-rc1 is that there are no active
> developers. Unfortunately I hardly have time to work on the project
> and the few minutes that are left, I mostly spend with writing answers
> to (stupid) requests.
>
> I don't say it's all the other's fault. I seriously underestimated the
> meaning of starting an open source project. It's far more work than
> just writing some lines of code and copy them on a server.
>
> Sorry for the bad "service" and the disappointing growth of the
> project but I had to shift my priorities away from RoundCube and this
> situation will remain for the next two years :-(
>
> In other words: everybody is welcome to take over the project lead and
> release more often.
>
> ~Thomas
>
>
> 2007/7/22, Farkas Levente <lfarkas(a)bppiac.hu>:
>> hi,
>> why don't roundcube has regular release like 0.1, 0.2 etc? everybody
>> know it's a beta software and will care according to that. but even in
>> that case it's 0.1rc1 since almost a half a year now! wouldn't it be
>> better to make more regular release, users can test it and comment on
>> it. until it's reach the 1.0 version everybody know it's beta software
>> and use only care. but even if the development moving it seems to
>> standing. as one of the lesson to learn from opensource project "release
>> early".
>> just my 2c.
>>
>> --
>> Levente "Si vis pacem para bellum!"
>>
>>
>>
_______________________________________________
RoundCube Dev mailing list
Dev(a)lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/dev
On 7/24/07, Romain Beauxis <toots(a)rastageeks.org> wrote:
> Le Tuesday 24 July 2007 10:49:21 Thomas Bruederli, vous avez écrit:
> > des.inc is not included in the pure GPL package. It uses mcrypt as
> > suggested in the ticket you mentioned. Please, check it!
>
> Hi Thomas !
>
> Nice to see you're considering this issue !
>
> New package just uploaded to debian !
Thanks, Roman! :)
Till
_______________________________________________
List info: http://lists.roundcube.net/dev/
Just for your information:
I'm working on a patch to select a parent folder when creating a new
one, plus drag/dropping folders from one to another parent.
It's not very close to being finished, but this is what I needed the
changes in revision 651 for.
Robin
_______________________________________________
List info: http://lists.roundcube.net/dev/