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
New translation update for European Portuguese (pt_PT) for "labels.inc" and
"messages.inc" files.
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/a9/uN88fSxJ/messages.inchttp://detached.gigo.com/rc/a9/uN88fSxJ/labels.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
Please add this new language to the translation page.
It is not yet available there to be translated.
Best,
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/55/SsTzQRai/kh_KH.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,
currently the virtuser creation and working is described here
http://trac.roundcube.net/wiki/Howto_Config, section "Configuring for
Virtual Users"
It was ok for 0.3x but not for 0.4
- "To reset and try again, delete that user from the roundcube users and
identities tables" -> if tables are correctly innodb, and all fk's are
active, the cascade will handle all connected record deletion upon deleting
the user entry
- virtuser is not a config option, but separate plugins now
regards,
--
Péter
XMPP, MSN: peter.laszlo.szabo(a)gmail.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
hi,
i have a big mailbox with a slow courier based imap server.
upon login, i see the "loading" screen at the top and no message
is displayed in the list.
then, the loading screen disappears but it still takes a couple of
seconds until the messages appear.
i did not find the time to look weather the ajax requests finished
before the loading disappeared, but my guess would be that
the loading screen has either a certain timeout which makes it
disappear, or it vanishes after the first ajax request has
finished (i think it is the one related to the folder tree?)
and is then closed by the program.
any thoughts?
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
hello A.L.E.C
and others developers
the plugin password is not fully functional whit pam
there is a bug in the documentation page pam
http://pecl.php.net/bugs/bug.php?id=16995
but is for other platform ( gentoo ) not CentOS ( my platform )
But I think the procedure correctly realize
i add in my php.ini
pam.servicename = "php"
cp /etc/pam.d/login /etc/pam.d/php
service httpd restart
This is the right procedure I think
but when I try to change password, change is denied
may be /etc/pam.d/php is not apache not readable
my permissions of /etc/pam.d/php is
# ls -al /etc/pam.d/php
-rw-r--r-- 1 root root 643 ao� 19 04:28 /etc/pam.d/php
I listen to all proposals to help
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
Did anyone notice any problems with the recipient selection with the
newest 0.4 stable? If I am starting to type in some letters to the
recipient field, a red rectangle appears at the top which states:
"Server Error! (SERVICE CURRENTLY NOT AVAILABLE)". No matter what I
type in, I get nothing back (my address book is not empty!). Moreover
if a correct address is already typed in and I poke with the recipient
field, the red rectangle appears also.
Which could be the problem? I am on Firefox 3.6.6. I tested it also in
IE 7.0.5 and it gives me also no results from the address book, it just
don't show the rectangle. Could this be a problem of a not properly
done upgrade?
After the upgrade with the shell script I also updated my rc database
with the attached mysql.update.sql query script. However, I noticed
that this SQL script contains several modifications commented with
several versions. Was I right to import the whole SQL, or should have I
only import the 0.3 part? It threw some errors during the upgrade.
Regards,
Viktor
--
Visit my panoramic photoblog!
http://vrphoto.hu
Spherical panoramas by Viktor Balogh
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80