Hello,
The following pertains only to message deleting with the config option
'display_next' set to true.
When I hold the delete/backspace key down with a message selected for
a couple seconds and messages are loaded from the next page, some will
come back more than once.
For example, say this is my message list:
uid = 1
uid = 2
uid = 3
uid = 4
uid = 5
... now if i delete the first three by holding the delete key down for
a second, my message list might look like this:
uid = 4
uid = 5
uid = 6
uid = 6
uid = 7
This also brings up the question as to how fast messages should be
deleted while holding the delete or backspace key down, in my tests it
must be 15-25 messages per second which is quicker than my reflexes
are able to accurately stop deleting at a certain point.
What do you guys think? Would it be best to set a timer so we can only
delete 'x message per second' or maybe wait until the previous message
has been deleted and the new message has come from the next page
before deleting another?...
Thanks!
Ryan Ostrander
_______________________________________________
List info: http://lists.roundcube.net/dev/
ok I Upped my system with PHP 5.2.9. But now I have issues with Fileinfo. Yes may it should be asked at Centos etc I know,
but maybe users here can help me faster.php -v
PHP Warning: PHP Startup: fileinfo: Unable to initialize module
Module compiled with module API=20050922, debug=0, thread-safety=0
PHP compiled with module API=20060613, debug=0, thread-safety=0
These options need to match
in Unknown on line 0
PHP 5.2.9 (cli) (built: Mar 10 2009 16:42:52)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
For now I removed the Fileinfo package.
What is done with this package by RoundCube?And most important...how can I fix this issue?Thanks!
_______________________________________________
List info: http://lists.roundcube.net/dev/
search.inc.patch is for program/steps/addressbook/search.inc
This patch is a workaround for what appears to be a PHP bug that
prevents the setting of multi-dimension associative arrays in $_SESSION
(more specifically, the value of $_SESSION['search'][$search_request]).
The bug causes issues with multiple LDAP searches, and "Contact not
found" error messages.
rcube_ldap.php.patch is for program/include/rcube_ldap.php
This patch allows the user to specify multiple base DN values for
searching. It will not affect users that only have a 'base_dn' value
specified. With this patch, the main.inc.php file can include
'search_base_dn' => array()
in an LDAP configuration. This can be helpful for people dealing with a
poorly implemented LDAP structure.
This patch also returns empty results for searches conducted with only
the default filter (as is done when the LDAP address book is first
selected). These essentially empty searches will return inconsistent
results anyway.
Finally, this patch will check for both case-sensitive and all lowercase
fieldmap values to ensure consistent results are displayed in search
lists and contact details.
Both patches were made against 0.3 RC1.
Kyle
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/PB/tUxKCfdd/search.inc.patchhttp://detached.gigo.com/rc/PB/tUxKCfdd/rcube_ldap.php.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/
Hi devs,
I'm working on a plugin which allows the Admin to configure the TinyMCE toolbar
without hacking in editor.js. It also allows to enable/disable features domain/user based.
The reasons why I need this plugin are:
#1 Editor width is too large when RoundCube is embedded in frameset.
#2 I'd like to restrict some features (media, spellchecker) domein/user based
I don't get it working without patching two files:
#1 ,/program/include/main.inc
... see function rcube_html_editor
#2 ./porgram/js/editor.js
... see function rcmail_editor_init
Attached files are based on trunk r2852. Hope you will commit them to trunk.
Regards,
Roland
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/4C/jhUOCkvG/program.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/
On Thu, 06 Aug 2009 12:34:30 +0200, "A.L.E.C" <alec(a)alec.pl> wrote:
> Julien Vehent wrote:
>
>> OK, so to use STARTTLS with roundcube, the postfix server must be
>> configured with the option smtpd_enforce_tls = yes, right ?
>
> No, it is must not. As I see in the code, STARTTLS is called when
> authentication
> is requested (when smtp_user and smtp_pass options in Roundcube config
are
> set) and
> (from Net_SMTP):
>
> version_compare(PHP_VERSION, '5.1.0', '>=')
> && extension_loaded('openssl')
> && isset($this->_esmtp['STARTTLS'])
> && strncasecmp($this->host, 'ssl://', 6) != 0
OK, It confirms what I read in the postfix doc, that the server must not
enforce STARTTLS (RFC 2487).
So, I have the following roundcube configuration :
------
// use this host for sending mails.
// to use SSL connection, set ssl://smtp.host.com
// if left blank, the PHP mail() function is used
$rcmail_config['smtp_server'] = 'ssl://localhost';
// SMTP port (default is 25; 465 for SSL)
$rcmail_config['smtp_port'] = 25;
// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = '%u';
// SMTP password (if required) if you use %p as the password RoundCube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = '%p';
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$rcmail_config['smtp_auth_type'] = '';
------
The following postfix configuration :
------
# TLS server options
smtpd_use_tls = yes
smtpd_tls_auth_only = yes
smtpd_tls_security_level = may
smtpd_tls_key_file = [keyfile]
smtpd_tls_cert_file = [pemcert]
smtpd_tls_CAfile = [cafile]
smtpd_tls_loglevel = 2
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
smtpd_tls_ask_ccert = yes
smtpd_tls_req_ccert = no
------
and the following trace when I try to send an email from roundcube to my
gmail account :
http://www.linuxwall.info/files/starttlsroundcubetrace.pcap.txt
Postfix sends its banner in packet '12:43:23.225014' and then roundcube
ACK it and does nothing more. It doesn't send any more data.
My understanding is that roundcube should then announce itself through a
'EHLO' command, and postfix would returns its capabilities.
But instead, postfix then announce that the command has not been
recognized (but what command ? ack number didn't change between
'12:43:23.209554' and '12:43:23.225096' so no data have been
transmitted...)
It's weird, and I don't know how to debug it further...
The only thing I'm sure of, is that this postfix configuration works fine
with thunderbird in TLS mode.
Julien
_______________________________________________
List info: http://lists.roundcube.net/dev/
I have CentOS 5.3 running with only BASE repo. So it runs with PHP 5.1.6.
And at the moment I am not going to upgrade tp 5.2 with an other repo.Anyway, I installed RoundCube, changed check.php so it installed with 5.1.6.
And so far it runs fine. Only problem I had, was the check mail/frefresh page issue.
Fixed that with the RECENT / UNSEEN replacement.So why is PHP 5.2 needed? What goes wrong with 5.1.6? Thanks
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi, friends
I adapted the patch to group of contacts in version 3.0 and the biggest
problem is to convert the changes in program/steps/mail/compose.inc as you
can see in http://trac.roundcube
.net/attachment/ticket/1485657/contact_groups.diff could tell me how can set
these variables ? would be in autocomplete.inc? canyou help me for alter the
patch ?
--
----------------------------------------------------------------
Tiago Gomes Pereira http://www.tiagogomes.eti.br
LPI Certified
LPI ID - LPI000129445
IT Service Management - ITIL FOUNDATION V2
ID - SR341901
algodas(a)gmail.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
I'm trying to wrap my head around how the hook for list_prefs_sections
works. I don't think my brain is up to the task today, so I was
wondering if anyone has a small example to show?
I'm assuming:
...
$this->add_hook('list_prefs_sections', array($this, 'opt_block'));
...
function opt_block($args)
{
$args['cols'] = 'optlabel';
$args['list']['optlabel'] = array( 'id' => 'optlabel', 'section' =>
'Option Label');
return $args;
}
Digging through the program/steps/settings/func.inc I can see that list
is a copy of $SECTIONS and I have no idea what cols is used for.
Anyone have a quickie example?
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I’ve attached updated Swedish localizations for the following plug-ins:
- help
- markasjunk
- new_user_dialog
- subsc------ns_option
- userinfo
Regards,
Jonas Nasholm
Bitfuse Network
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/NR/T0ipnVir/plugins-sv_SE.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/
Hello!
I am sending an updated slovenian translation. I have added myself to
the list of authors in case anyone wants to contact me.
Please commit this to svn.
Regards,
Barbara
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/9s/KCWX5qj/RDC_slovenian_transl.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/