Is it possible to give the user the possibility to select if he/she
wants the saved sent message (not to save the message, assuming he is
saving it), without the attachments?
Thanks
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello Roundcube users
We just published a new release which fixes a recently reported XSS
vulnerability as an update to the stable 0.5 branch. Please update
your installations with this new version or patch them with the fix
which is also published in the downloads section or our
sourceforge.net page [1].
And stay tuned, 0.6-beta is on the way with lots of new features ;-)
~Thomas
[1] https://sourceforge.net/projects/roundcubemail/files/roundcubemail/0.5.4/
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I have set in config/main.inc.php :
$rcmail_config['timezone'] = 'America/New_York';
And /etc/php.ini:
; Defines the default timezone used by the date functions
; http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone
date.timezone = "America/New_York"
However, whenever a user logs into Roundcube (and gets a new record in
the database with no user-specific preferences yet), they are still
seeing the date/times of messages in the Inbox as UTC.
I have to login as that user, go to their user-specific settings and set
the timezone to the "(GMT -5:00) Eastern Time" choice in the drop-down
menu for the timezone.
Does Roundcube not understand 'America/New_York'?
For the moment I've resorted to setting a default value for that field
in the database so that new users end up in the EST timezone as a default.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I had problem with this user logged in, the login is k2r8ne(a)domain.com
log error roundcube:
[11-Aug-2011 14:57:12] MDB2 Error: unknown error (-1): _doQuery: [Error
message: Could not execute statement]
[Last executed query: SET NAMES iso-8859-1]
[Native code: 1115]
[Native message: Conjunto de caracteres 'iso' desconhecido]
[11-Aug-2011 14:57:12 -0300]: DB Error: MDB2 Error: unknown error Query:
_doQuery: [Error message: Could not execute statement] [Last executed query:
SET NAMES iso-8859-1] [Native code: 1115] [Native message: Conjunto de
caracteres 'iso' desconhecido] in
/www/roundcubemail/program/include/rcube_mdb2.php on line 642 (POST
/webmail/?_task=login&_action=login)
[11-Aug-2011 14:57:12] MDB2 Error: constraint violation (-3): _doQuery:
[Error message: Could not execute statement]
[Last executed query: EXECUTE
mdb2_statement_mysql_745c23f46228824963c0c2bd2ce109b4f660a2a34 USING @0, @1,
@2, @3]
[Native code: 1062]
[Native message: Entrada 'k2r8ne(a)domain.com-mail.domain.com' duplicada para
a chave 2]
[11-Aug-2011 14:57:12 -0300]: DB Error: MDB2 Error: constraint violation
Query: _doQuery: [Error message: Could not execute statement] [Last executed
query: EXECUTE
mdb2_statement_mysql_745c23f46228824963c0c2bd2ce109b4f660a2a34 USING @0, @1,
@2, @3] [Native code: 1062] [Native message: Entrada '
k2r8ne(a)domain.com-mail.domain.com' duplicada para a chave 2] in
/www/roundcubemail/program/include/rcube_mdb2.php on line 642 (POST
/webmail/?_task=login&_action=login)
[11-Aug-2011 14:57:12 -0300]: PHP Error: Failed to create new user in
/www/roundcubemail/program/include/rcube_user.php on line 472 (POST
/webmail/?_task=login&_action=login)
[11-Aug-2011 14:57:12 -0300]: PHP Error: Failed to create a user record.
Maybe aborted by a plugin? in /www/roundcubemail/program/include/rcmail.php
on line 747 (POST /webmail/?_task=login&_action=login)
version roundcube: 0.5.1
the user login perfect in squirrelmail
Marlon
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I have several domains hosted on my box. At the moment, I am logging on
with username@domain scheme, but I'd like to be able to login with the
username scheme. I've already configured the drop-down with the mail
servers. A row from my database looks like this
+---------------------------+------------------------------------+-----------------+----------------------------+-------+------------+---------------------+---------------------+---------------------+--------+
| username | password |
name | maildir | quota | local_part |
domain | created | modified | active |
+---------------------------+------------------------------------+-----------------+----------------------------+-------+------------+---------------------+---------------------+---------------------+--------+
| bilgi(a)bilgisayarciniz.org | x | bilgisayarciniz |
bilgisayarciniz.org/bilgi/ | 0 | bilgi | bilgisayarciniz.org |
2011-04-10 11:28:58 | 2011-06-22 13:15:09 | 1 |
+---------------------------+------------------------------------+-----------------+----------------------------+-------+------------+---------------------+---------------------+---------------------+--------+
1 row in set (0.00 sec)
and the related line in main.inc.php looks like this
$rcmail_config['virtuser_query'] = "SELECT username FROM postfix.mailbox
WHERE local_part = '%u'";
How should I change the virtuser_query?
Regards,
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I want to decrease the check-recent interval to 10s. I have looked around in the config file and set the following values:
//sec
$rcmail_config['keep_alive'] = 12;
//min
$rcmail_config['session_lifetime'] = 10;
//sec
$rcmail_config['min_keep_alive'] = 10;
I also understood that the users preferences override these settings in the configfile so I changed the following as well.
In programs/steps/settings/save_prefs.inc:
'keep_alive' => isset($_POST['_keep_alive']) ? intval($_POST['_keep_alive'])*10 : $CONFIG['keep_alive'],
Changing 60 to 10 would, in my opinion, let me choose between 10, 30 och 50 seconds interval for check recent
(Because the select-list in the gui has 3 values: 1,3 and 5).
But this doesn't work for me. It still checks every 1min, even after restart of apache2.
Is there anywhere else I need to change to get my desired interval?
Kind Regards
Erik
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I have several domains hosted on my box. At the moment, I am logging on
with username@domain scheme, but I'd like to be able to login with the
username scheme. I've already configured the drop-down with the mail
servers. A row from my database looks like this
+---------------------------+------------------------------------+-----------------+----------------------------+-------+------------+---------------------+---------------------+---------------------+--------+
| username | password |
name | maildir | quota | local_part |
domain | created | modified | active |
+---------------------------+------------------------------------+-----------------+----------------------------+-------+------------+---------------------+---------------------+---------------------+--------+
| bilgi(a)bilgisayarciniz.org | x | bilgisayarciniz |
bilgisayarciniz.org/bilgi/ | 0 | bilgi | bilgisayarciniz.org |
2011-04-10 11:28:58 | 2011-06-22 13:15:09 | 1 |
+---------------------------+------------------------------------+-----------------+----------------------------+-------+------------+---------------------+---------------------+---------------------+--------+
1 row in set (0.00 sec)
and the related line in main.inc.php looks like this
$rcmail_config['virtuser_query'] = "SELECT username FROM postfix.mailbox
WHERE local_part = '%u'";
How should I change the virtuser_query?
Regards,
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hey, i want to ask you, in the contact list has another list at the left side called: Teams (Personal address book).
How i can erase that so cannot appear?
Thank you very much.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e