Hi everybody
The second stable version of the RoundCube Webmail package completes
unfinished work from the 0.2-stable release. It comes up with about 80
bug fixes as well as some performance improvements. See
http://trac.roundcube.net/wiki/Changelog for details.
You can download the package from http://roundcube.net/downloads and
we recommend to update all existing installations of RoundCube.
The upgrading process now became very easy with the integrated update
script. It's runnable from the shell or from within the web-based
installer. Read the UPGRADING instructions for details.
Happy new year!
Thomas
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi, Im attaching a "new" (modified and completed) version of es_ES
lang, I renamed it to es_AR because i did some changes.
Bye!
PS: After I finished this, I discover the online translation tool...
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/5u/n9UR55hM/es_AR.rar
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
> Date: Tue, 13 Jan 2009 23:04:06 +0600
> From: Artur Smolkin <dev(a)roundcube.ru>
> Subject: [RCD] RoundCube Logo
> To: dev(a)lists.roundcube.net
> Message-ID: <496CC986.9050204(a)roundcube.ru>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> Hello everybody!
> Do anyone have RoundCube logo with white or transparent background?
>
Hi, the official logo has transparent background, found at the path;
skins/default/images/roundcube_logo.png
--
Gokdeniz Karadag
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello everybody!
Do anyone have RoundCube logo with white or transparent background?
--
Artur Smolkin
Manager of Russian RoundCube Webmail Project
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I have finished localizing the labels.inc and messages.inc files for bangla
( বাংলা ) language
please see the attached files
thanks
sincerely
Shah Chandon
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Wb/94q5UxRy/labels.inchttp://detached.gigo.com/rc/Wb/94q5UxRy/messages.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/
Hello
I suggest the addition of a Company field in the address book. It should be easy to do and add value to the software.
If needed, I can code that and send you a patch
Thanks
Jonathan Araújo
Administrador de Infraestrutura de TI
Gerência de TI - INDG S.A.
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi devs,
We have been following this application for some time now and we like it a lot.
It would be nice to be able to retrieve alternate email addresses from LDAP to generate multiple identities instead of the current identities section.
Can this be implemented as this is what is holding us back to implement RC for our clients.
PS: We estimate to enable this application for some 60,000 email accounts as soon as this hurlde is resolved.
For that reason we want this extention to be a standard implementation in the application so it upgrades easily in the future.
Please give us some feedback on your views about this.
-----------------------
Wkr,
Dirk Rennen
KPN Belgium N.V.
Koningin Astridlaan 166
1780 Wemmel
Belgium
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I've been using RC for a while and there's really only 1 feature I really
miss. The ability for RC to learn email addresses when you send email.
Would anyone be interested if I were to develop a patch for this? I've not
yet looked at the code but I can't imagine it could possibly be too
horrific.
Cheers
Steve
_______________________________________________
List info: http://lists.roundcube.net/dev/
I was looking into the development guidelines File Naming conventions and I have a suggestion:
I should mention that certain extentions output plain text from standard browsers which can be easily fixed.
Secondly the fix open an opportunity to expand and clarify the intention of the files by adding the intention in front of the file
Screen output files: filename.php
Process files: filename.php => process/filename.php or process.filename.php (with filename same as calling or pulling filename so you know what it relates to)
Includeble script block: filename.inc => inc.filename.php
Includeble functions: filenmame.inc => fie.filename.php or lib.filename.php (personally prefer the first)
Includeble classes: filename.class.php => class.filename.php
That way output is always empty + you know what's in the file without opening it.
You basically can do the same for javascript:
Basic js file: filename.js
Included js file: filename.js.src => src.filename.js
You should also consider putting html comment tags around the javascript code (<!-code //-->) so it wont output if javascript is turned off.
To make sure javascript is turned on, you should consider disabling all process buttons and turning them on at runtime.
I haven't looked at the database conventions, but what I personally always do is the following:
SELECT field FROM Table WHERE otherfield LIKE 'value' LIMIT 0,1;
As you can see sql-specific parts are in uppercase, fields in lowercase and table in ucfirst. This way you can separate what they are by simply looking how it's written.
PS the LIMIT 0,1 (mysql) is a faster query then without, even when you know there can only be one value returned, as it stops looking after it's found one which it wont if the limit is not there.
Note that it's just a suggestion, which I've used myself for a few years now. Especially in complicated applications it's proven to be very useful to me as it reduces time when searching for the wright file, even after some time has passed working on the application.
-----------------------
Wkr,
Dirk Rennen
KPN Belgium N.V.
Koningin Astridlaan 166
1780 Wemmel
Belgium
_______________________________________________
List info: http://lists.roundcube.net/dev/