Hi, developers!
There is an attachment with some translations into Ukrainian language.
Thanks.
Anton
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Sr/ChJADQ4k/patch_uk_UA.tgz
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
Can anyone confirm this bug?
When composing a new message, click on the Attach icon (or + icon).
Browse a file and double-click on it, then the upload window closes.
Instead it remain open if I select file with a single click
and click open from the selection dialog.
It doesn't happen with Opera where I can double click on the selected
file and the upload window remain open.
The effect is the same than opening upload window, then click on any other
place of the screen (the window hides). So it may be the second click
is going out after selection and is being intercepted by another window
event that hide the upload window.
Firefox is 3.6.8 version.
Mirko
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Please find attached the updated "labels.inc" and "messages.inc" files for
the European Portuguese translation (pt_PT).
I've also made quite a few changes to strings that were already translated
in order to use a more correct Portuguese.
Hope that has everything correct.
Regards,
David Cunha
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/fH/sraTwsp1/labels.inchttp://detached.gigo.com/rc/fH/sraTwsp1/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
Hallo devs of roundcube, i today translated into italian language your
product only missing string, please add to my work on the your product.
good works
Riccardo
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Bd/c2P4QVj/labels.inchttp://detached.gigo.com/rc/Bd/c2P4QVj/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
Hi,
I am missing the delivery/read receipt request checkbox from the
newest 0.4 version. Did it disappear entirely or only became a custom
setting? How could I get back the checkbox?
Regards,
Viktor
--
Visit my panoramic photoblog!
http://vrphoto.hu
Spherical panoramas by Viktor Balogh
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi!
i'm working on implementing the Last Password Change in the LDAP driver
of the Password plugin
ho is working con this plugin?
do you recommend me to make some changes or to make a patch for
ldap_simple.php too?
i've attached a patch to the ticket but have no answer yet.
http://trac.roundcube.net/ticket/1486927
it would be great to have some guide
regards
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Thanks for the email. Please email the dev@ mailing list in the future.
Alec committed your suggestion:
http://trac.roundcube.net/changeset/3901
Till
On Mon, Aug 23, 2010 at 11:35 AM, HÖLTZL Péter <peter(a)holtzl.hu> wrote:
> Dear team,
>
> I use and love roundcube. I have just realized it is possible to log to
> syslog, but in syslog it violates the syslog format which is defined in
> RFC3164:
>
> <pri>DATE HOST PRG[PID]: Message
>
> If I use syslog driver your message is this:
>
> <pri>DATE HOST PRG[PID]: [DATE] Message
>
> the 2nd date is defined by the log_date_format variable.
>
> It is very simple to modify is, just change the php code:
>
> program/include/main.inc
>
> if ($CONFIG['log_driver'] == 'syslog') {
> $prio = $name == 'errors' ? LOG_ERR : LOG_INFO;
> syslog($prio, $line);
> return true;
> }
>
>
> Best wishes,
>
> Peter
>
>
>
> --
> e-mail: peter @ holtzl.hu
> mobile: +36 30 251-2986
>
>
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
On 08/21/2010 02:52 PM, l.chelchowski wrote:
> I make tests with the name of file ąĄęʜ揣ó.zip and I don't have any
> problems. Are you using default skin?
Default skin, svn-trunk.
Another thing I've noticed.
1. Add an attachment abc.zip
2. Press F5 (browser refresh)
Everything is fine.
Doing the same as above, but with a file like
ąĄęʜ揣ó.zip will regenerate the session id
(I think it is the session id), anyway, _id
in the url changes after pressing F5, and the
attachment dissapears...
I'm testing this on a clean svn-trunk.
--
Thomas 'websafe' Szteliga | http://websafe.pl/ | gg:2348251
-
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello :-)
Reproducing the problem
1. Compose a new message
2. Attach a file named for example ąĄęʜ揣ó.zip
3. Now try attach another file...
The animation spins forever, no errors shown
or logged, strange, huh?
Another scenario:
1. Compose a new message
2. Attach a file named abc.zip
3. Attach a file named 123.zip
4. Attach a file named for example ąĄęʜ揣ó.zip
5. Now try attach another file...
Same thing. After attaching a file with a name containing
unicode characters it is NOT possible to attach another file.
But no errors are shown or logged...
What I've done (don't laugh):
# svn diff app.js
Index: app.js
===================================================================
--- app.js (revision 3899)
+++ app.js (working copy)
@@ -3062,16 +3062,16 @@
// have to do it this way for IE
// otherwise the form will be posted to a new window
if (document.all) {
- var html = '<iframe name="'+frame_name+'" src="program/blank.gif" style="width:0;height:0;visibility:hidden;"></iframe>';
+ var html = '<iframe name="'+frame_name+'" src="program/blank.gif" style="position:absolute; left:0px; top:0px; width:200px; height:200px; visibility:visible; z-index:9999; font-weight: bold; color: red;"></iframe>';
document.body.insertAdjacentHTML('BeforeEnd',html);
}
else { // for standards-compilant browsers
var frame = document.createElement('iframe');
frame.name = frame_name;
frame.style.border = 'none';
- frame.style.width = 0;
- frame.style.height = 0;
- frame.style.visibility = 'hidden';
+ frame.style.width = '200px';
+ frame.style.height = '200px';
+ frame.style.visibility = 'visible';
document.body.appendChild(frame);
}
Now I can see "Invalid session var!".
This error is shown, because:
if (!$_SESSION['compose']){
die("Invalid session var!");
}
which is found in ./program/steps/mail/attachments.inc.
Any ideas how can fix this? I'm kinda new to roundcube-dev 8-)
--
Thomas 'websafe' Szteliga | http://websafe.pl/ | gg:2348251
-
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
> [Native message: Table 'roundcubemail.contactgroups' doesn't exist]
>
> So the DB structure seems to be corrupted, I will modify it per hand.
creating the contactgroups table failed. things i did:
1. all my existing tables were of latin1_swedish_ci collation. i changed
that to utf8.
2. all my tables were myisam, i updated to innodb
3. users.user_id defaults to null. i do not know if the constraint
has been a problem too..
> CREATE TABLE `contactgroups` (
> `contactgroup_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
> `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
users.user_id defaults null. contactgroups.user_id defaults '0'..
> `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
> `del` tinyint(1) NOT NULL DEFAULT '0',
> `name` varchar(128) NOT NULL DEFAULT '',
> PRIMARY KEY(`contactgroup_id`),
> CONSTRAINT `user_id_fk_contactgroups` FOREIGN KEY (`user_id`)
> REFERENCES `users`(`user_id`) ON DELETE CASCADE ON UPDATE CASCADE,
maybe this constraint might be an issue?
i then managed to create the table when ommiting the
/*!40000 ENGINE=INNODB */
command and then altered the engine from myisam to innodb.
i also omitted the ENGINE declaration for contactgroupmembers
and again altered the engine afterwards.
fyi: i'm running an older mysql 5.0 release.
maybe this will help you in tracking down this issue?
thanks for creating such a great release!
cheers,
raoul
--
____________________________________________________________________
DI (FH) Raoul Bhatia M.Sc. email. r.bhatia(a)ipax.at
Technischer Leiter
IPAX - Aloy Bhatia Hava OG web. http://www.ipax.at
Barawitzkagasse 10/2/2/11 email. office(a)ipax.at
1190 Wien tel. +43 1 3670030
FN 277995t HG Wien fax. +43 1 3670030 15
____________________________________________________________________
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80