Translation update for European Portuguese (pt_PT).
- messages.inc
Regards,
DC
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/b3/WumxRQrd/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/
BT/aba52c80
Hello!
Attached file contains translations for managesieve and
kolab_addressbook plugins.
WBR, Sergey Dukachev mailto:admin@mfitness.ru
---------------------------
IT dept
MFitness
+7 (495) 974 1234 (add. 106)
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Un/gUwuSH1m/plugins.tar.bz2
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
No change on the users list, maybe the Dev list can help me here ?
Or should I fill a ticket directly ?
Thanks,
Julien
-------- Original Message --------
Subject: [RCU] Corrupted attached PDF files
Date: Mon, 02 May 2011 10:14:56 -0400
From: Julien Vehent <julien(a)linuxwall.info>
To: Users <users(a)lists.roundcube.net>
Hi list,
I have a 0.5.2 running in a small company and users have been
complaining that attached PDF files don't open properly.
I tried to open one of those emails with thunderbird, the PDFs display
properly. But with roundcube, I get a blank page.
I saved both PDFs (from tbird and roundcube) and it appears that the
one from Roundcube is slightly bigger (by 118 bytes):
$ ls -al
-rw-r--r-- 1 jvehent jvehent 11392 May 2 2011 MicroGate chges avril
2011 -rcube.pdf
-rw------- 1 jvehent jvehent 11274 May 2 09:52 MicroGate chges avril
2011 -tbrid.pdf
$ md5sum *
bfb27d3a439fd4d38a2b6d9bcd827582 MicroGate chges avril 2011.pdf
2fd9859443dfa3696b6e86de9fc0b2d2 MicroGate chges avril 2011 -tbrid.pdf
I opened both documents in Vim, and noticed that the one coming from
Roundcube contains trailing "^M" that don't exist in the PDF coming from
Thunderbird (see attached screenshot, the document from roundcube is on
the right).
I observed this behavior in 0.5.1 and upgraded to 0.5.2 without any
change. I tried deactivated ALL the plugins on my instalation, without
any change. So before feeling a bug ticket, I'd like to confirm there is
not already a solution for this.
Thanks,
Julien
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for
viewing.
http://detached.gigo.com/rc/Gq/QXVz95UJ/roundcube_pdf_bugs.png
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, all
here is the translation update for Bahasa Indonesia and
happy weekend for all.
Sincerely,
Sabda
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/r6/muc533TF/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/
BT/aba52c80
dear Les
thanks for your feedback!
In RC5.x and below, the addressbook fields are static coded and can not
be changed easily (SQL and LDAP).
The next major release of Roundcube (RC6, I hope soon) will contain the
posibility of configuring a plenty of fileds as you need it.
If you like to test it allready, please check out the SVN code as
described on the RC homepage.
Andreas
On Thu, 05 May 2011 16:33:18 -0800, Les Fenison wrote:
> Thanks for your very helpful howto article on setting up LDAP for
> roundcube.
>
> I have one question.. Currently roundcube is able to see the ldap
> server however, the only addressbook fields are Display-name,
> firstname, lastname, and email. What has to happen to get the
> extended
> fields to show up?
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi! Here http://194.150.197.210/rc/test.html I'm testing an idea to
provide simpler/faster method for attachments uploading. The idea is to
get rid of our attachment-form popup. The logic is working. The only
issue I have is the cursor style on the button in FF<4 and webkit. Any
ideas what we can do about this?
--
Aleksander 'A.L.E.C' Machniak
LAN Management System Developer [http://lms.org.pl]
Roundcube Webmail Developer [http://roundcube.net]
---------------------------------------------------
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello!
Sending an updated slovene translation.
Cheers,
Barbara
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/qr/dVYIlLJH/sl_SI.zip
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,
There is a problem with Password plugin's password encryption in Debian
Squeeze. Because of a known bug in Debian's PHP (CRYPT_SALT_LENGTH is
not set*), the password is currently being encrypted with an empty salt
in SQL driver (but I think this might apply to the LDAP driver too,
because it too uses crypt()).
The simple fix is to replace this block of code in drivers/sql.php
(https://svn.roundcube.net/trunk/plugins/password/drivers/sql.php):
$salt = '';
if (CRYPT_MD5) {
$len = rand(3, CRYPT_SALT_LENGTH);
} else if (CRYPT_STD_DES) {
$len = 2;
} else {
return PASSWORD_CRYPT_ERROR;
}
for ($i = 0; $i < $len ; $i++) {
$salt .= chr(rand(ord('.'), ord('z')));
}
$sql = str_replace('%c', $db->quote(crypt($passwd, CRYPT_MD5 ?
'$1$'.$salt.'$' : $salt)), $sql);
with a single line:
$sql = str_replace('%c', $db->quote(crypt($passwd)), $sql);
When called without the second parameter, crypt() will automatically
generate the salt itself. Which makes me wonder: why does the plugin try
to generate this random salt instead of simply relying on PHP to do
that? As far as I know, crypt($text, $salt) is useful when you actually
want to check whether the password is correct, but there's absolutely no
need to use your own random salt when setting user's password – PHP will
take care.
May I suggest to apply this change in SVN? I really don't see why the
plugin should use 12 lines of code to achieve what can be achieved in
one line.
* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603012
Regards,
Rimas
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello list,
I have a patch for the http_authentication plugin. I use http
authentication mainly as protection because I have set
$rcmail_config['default_host'] to '' (host can be chosen
arbitrarily). But with this setting the plugin is not usable! I have
added a configuration option ($rcmail_config['http_authentication_host'])
to make the default host configurable! What do you think?
Greetings,
Johannes Weißl
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/VJ/LNPb0hUc/0001-add-host-config.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 Devs!
Currently the mail editing area captures the mouse right click and display
options such as
CUT, COPY, PASTE, CREATE TABLE (tinymce cut/copy/paste just works in IE).
I'm planning to remove this right click context menu and move the CREATE
TABLE option
to the toolbar area.
With this change the user would not lose any function and can use the
browser's native
functions which is more user-friendly, such browser spelling checker (the
googiespell used
in RC has few languages) and so on.
By eliminating the tinyMCE plugin CONTEXTMENU we also reduce the size of the
loaded code.
Speaking in codes:
editor.js
- plugins:
'paste,emotions,media,nonbreaking,table,searchreplace,visualchars,directionality,tabfocus,
contextmenu' + ...
+ plugins:
'paste,emotions,media,nonbreaking,table,searchreplace,visualchars,directionality,tabfocus'
+ ...
- theme_advanced_buttons2:
'link,unlink,code,|,emotions,charmap,image,media,|,search' + ...
+ theme_advanced_buttons2: 'link,unlink,code,|,emotions,charmap,image,media,
table,|,search' + ...
Does anyone have any objection about this change?
--
Victor Benincasa
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi RC Devs,
I'm planning to move the file *roundcube/program/js/*editor.js to the skin
folder
(*roundcube/skins/default/*editor.js) because this file contains several
options
that can be used as skin basis, like the location and order of buttons, the
theme
and skin of TinyMCE editor and so on.
I'm currently developing a skin and missed some control over TinyMCE.
Does anyone have any objection?
--
Victor Benincasa
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
I use (and develop) the skin Groupvice4. I've just upgraded to v0.5.2
and noticed that the buttons for the plugins Archive and MarkAsJunk
have code in the plugin which is skin unaware:
'width' => 32,
'height' => 32,
The cause of the problem are these width and the height values. why
are they added? Can this be fixed?
For now I've removed these values and the buttons show fine.
--
Kees de Keizer
kees(a)de-keizer.net
http://www.de-keizer.net/
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Roundcube developers,
Hi, I'm Jason Ramsey, I've been working with large php applications
for about 10 years now. I currently work as a consultant, and use/have
clients that use Roundcube. I also use Thunderbird extensively with
syncKolab to sync my contacts between multiple systems. I'm interested
in adding syncKolab support to roundcube. So I figured I would
introduce myself and see if anyone on the team is currently working on
such a thing that I could help or collaborate with.
Regards,
Jason Ramsey
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello everybody,
I created a small plugin, called IdentiTeam.
I post this on these lists because I think it will be very useful for
any company that uses roundcube and an LDAP server for their users'
database.
IdentiTeam automatically creates new users' identities and signatures on
first login, using LDAP entries.
Features:
- Fully customizable HTML or text signatures.
- Read alternate email addresses, from a customisable ldap entry (useful
with eg. Gosa, etc.).
- Automatically detect signatures types (HTML or text) when created.
- You can use custom signatures per domain.
- You can use custom signatures per user.
- Templates folder location is customisable, for instance
'/etc/roundcube/templates'
The license is GPL v3.
Regards,
André Rodier.
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
I found a little problem with the web interface in program/js/app.js.src:4877
When I use "WebKit Nightly Builds" on "mac os x" the indicator of quota appear in a wrong position. I changed the code and now it's works to me.
I post it in the forum: http://www.roundcubeforum.net/5-release-support/17-pending-issues/8300-prob…
If someone can put it inside the core I'll appreciate.
Tk's
Marcio Trindade
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Thanks for fixing this imediately and for not using
the mailing list.
Your fix http://trac.roundcube.net/changeset/4692
solves the issue.
Nethertheless, I think the script is not too bad.
It saves one useless request to the server.
_________
Maybe that's MySQL related.
I'm faced with 'errorsaving' when I submit
prefs saving request twice and no properties have changed.
The problem is in rcube_user.php ::: line 157 ff.
Looks like ...
$this->db->affected_rows()
... returns false.
Well, I have not investigated why the request
is taken when saving prefs on inialial load while
same request throws the error when hitting save
button without changes of prefs in the same session.
Here is a tiny javascript function to prevent users
saving prefs when there is nothing to save:
var request_saver_form_str = null;
var request_saver_form_initial_str = false;
var request_saver_initial_load = true;
$(document).ready(function(){
function request_saver_form_values(){
var str = $("form").serialize();
if(str != request_saver_form_str){
request_saver_form_str = str;
if(!request_saver_initial_load){
$('#formfooter').show();
}
else{
request_saver_form_initial_str = str;
}
if(str == request_saver_form_initial_str){
$("#formfooter").hide();
}
request_saver_initial_load = false;
}
}
if(rcmail.env.task == 'settings' && rcmail.env.action ==
'edit-prefs'){
$(":checkbox, :radio").click(request_saver_form_values);
$("textarea, input").keypress(request_saver_form_values);
$("select").change(request_saver_form_values);
$("#formfooter").hide();
request_saver_form_values();
}
});
As far as I can see, it works well.
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Dear Roundcube users and lovers,
We're happy to announce another release of the Roundcube webmail
suite. This service update brings some more bug fixes and stability
improvements and it includes an updated version of the TinyMCE editor
which is now supposed to work correctly in IE9.
It is considered stable and we recommend to update all existing
Roundcube installation with this release. For a complete list of
changes see http://trac.roundcube.net/wiki/Changelog. Packages can be
downloaded from the usual place: http://roundcube.net/download
Have fun and happy easter,
Thomas
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
I'm working on fixing some namespace issues. It would be simpler to me
to test the fixes directly on some IMAP server with personal namespace
with INBOX. prefix. It's default config of Courier. Could anyone provide
a test account for me, so I'd be able to connect to it from my box?
--
Aleksander 'A.L.E.C' Machniak http://alec.pl gg:2275252
LAN Management System Developer http://lms.org.pl
Roundcube Webmail Developer http://roundcube.net
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Dear all,
please check the Indonesian translation update *even
just one field on messages.inc* and Happy Easter for all!
Sincerely,
Sabda
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Ud/VyKa8PDq/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/
BT/aba52c80