Hello,
Is there plugin or feature to store main.inc.php configuration to store
on sql table for easy management?
I see that "Admin interface for managing users and settings" feature in
the roadmap "milestone:Later"
Does this feature will cover this request?
Thanks
--
Ismail YENIGUL
Team Leader / Takım Lideri
SurGATE Labs
Phone :+90 216-4709423 | Mobile:+90 533 747 36 65
SurGATE: West Coast Labs Premium Anti-Spam Certificated
Twitter: http://www.twitter.com/surgate
Blog: http://www.surgate.com/blog
Hi,
yes it works, i'm using procmail that call sieve and also the file .forward in home directory of user.
I in the .forward file call sieve so : | /usr/libexec/dovecot/deliver
Bye
----Messaggio originale----
Da: gedeon007(a)gmail.com
Data: 07/03/2012 11.05
A: "Roundcube Users mailing list"<users(a)lists.roundcube.net>
Ogg: Re: [RCU] plugin to set forwarding in a roundcube-exim configuration
Hello,
Thank you for your answer.
Actually we don't use sieve (I haven't heard about it yet). We are using a multi tenanted environment. We configure forwarders in the following way: we have a folder for each domains in the /etc/virtual folder and each folder contains a file called aliases. All of the forwarders for domain example.com are configured in /etc/virtual/example.com/aliases file. If I add a new alias then I only run newaliases and it's working.
Do you have experiences such configuration and do you know whether this method and sieve works together?
Thank you once more.
Best regards,
Chris
2012/3/6 Benny Pedersen <me(a)junc.org>
Den 2012-03-05 16:04, Krisztián Gulyás skrev:
I would like to install a plugin (or any solution) next to my
roundcube-exim configuration to let my users set forwarding on their
own.
managesieve, if you got exim sieve working aswell
from that on make a forward sieve rule in roundcube
_______________________________________________
Roundcube Users mailing list
users(a)lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users
Hi all,
I would like to install a plugin (or any solution) next to my
roundcube-exim configuration to let my users set forwarding on their own.
Has anyone experienced something similar or could anyone help me?
Thank you very much.
Best regards,
Chris
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi All,
it's me again :-) !!!!!!!
I would use roundcube with autologin from another php script. I found the
plugin "autologin" but it seems to work.
This is my php script :
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<?
$_POST['password'] = 'password in clear and in plain text';
$_SESSION['userpassword'] = strrev(base64_encode('*yourkey*'.$_POST
['password']));
?>
<form name="roundcubelogin" action="http://192.168.254.201/roundcube/?
_task=mail" method="post" target="roundcube">
<input type="hidden" name="_timezone" value="_default_" />
<input type="hidden" name="_task" value="mail" />
<input type="hidden" name="_autologin" value="1" />
<input type="hidden" name="_user" value="mark" />
<input type="hidden" name="_host" value="192.168.254.201:143" />
<input type="hidden" name="_pass" value="<?echo $_SESSION['userpassword']?>"
/>
<input type="submit" name="submit" value="SUBMIT" />
</form>
</body>
</html>
The plugin autologin.php :
<?php
/**
* This plugin performs an automatic login if accessed
* with post Data from other Site an Portal or CMS
* Based on sample autologon PlugIn
*
* @version 0.2
* @author Eric Appelt (lacri)
*
* show into README to install and config
*
* changes
* 0.2 make a little bit secure with base64_encode strrev
* and a key thats replace after submitting encoded pass data
*
*/
class autologin extends rcube_plugin
{
function init()
{
$this->add_hook('startup', array($this, 'startup'));
$this->add_hook('authenticate', array($this, 'authenticate'));
}
function startup($args)
{
$rcmail = rcmail::get_instance();
$autologin = get_input_value('_autologin', RCUBE_INPUT_POST);
// change action to login
if ($args['task'] == 'mail' && empty($args['action']) && empty($_SESSION
['user_id']) && !empty($autologin)) {
$args['action'] = 'login';
// decode pass, revert and replace key
$_POST['_pass'] = str_replace('*yourkey*','',base64_decode(strrev
(get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'))));
// set initial cookie without this cookie login is not possible
$_COOKIE['roundcube_sessid'] = session_id();
}
return $args;
}
function authenticate($args)
{
$autologin = get_input_value('_autologin', RCUBE_INPUT_POST);
if (!empty($autologin)) {
$args['user'] = get_input_value('_user', RCUBE_INPUT_POST);
$args['pass'] = get_input_value('_pass', RCUBE_INPUT_POST);
$args['host'] = get_input_value('_host', RCUBE_INPUT_POST);
}
return $args;
}
}
Dear subscribers of the Roundcube mailing lists
I'd like to announce the migration of our mailing lists to a new host
which is planned to take place on Monday, March 5th at 3pm GMT.
There's no action required on your side, all subscriptions and
settings will be transferred to the new host. There might be some
delay until all nodes on the net have updated their DNS entries for
lists.roundcube.net and to avoid any loss of messages during that
period, we recommend to suspend posting between 3pm and 9pm GMT on
Monday.
This is also a good occasion to thank Jason at gigo.com for offering
the list hosting for the last couple of years and to Jeroen at
kolab.org to take over.
Best,
Thomas
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi All,
I configured the ldap server and roundcube to manage contacts. I used the
howto : http://trac.roundcube.net/wiki/Howto_Ldap. It work quite, I have only
a problem for credentials in private addressbook. The public addressbook works
fine, I can search and add contacts.
I checked the Mark's password and it is correct. I tried to use rootpw but it
doesn't works.
My versions are :
openldap-servers-2.4.19-6
php-5.3.3-1
roundcube 0.7.1
I report the error in ldap log of rouncube, my slapd.conf and my main.inc.php.
Thanks a lot
Mark
--------------------------------
logs/ldap :
[05-Mar-2012 10:09:01 +0100]: C: Connect [localhost:389]
[05-Mar-2012 10:09:01 +0100]: S: OK
[05-Mar-2012 10:09:01 +0100]: C: Bind [dn: cn=mark,ou=private,ou=rcabook,
dc=localhost] [pass: xxxx]
[05-Mar-2012 10:09:01 +0100]: S: Invalid credentials
[05-Mar-2012 10:09:01 +0100]: C: Close
[05-Mar-2012 10:14:24 +0100]: C: Connect [localhost:389]
[05-Mar-2012 10:14:24 +0100]: S: OK
[05-Mar-2012 10:14:24 +0100]: C: Bind [dn: cn=mark,ou=private,ou=rcabook,
dc=localhost] [pass: xxxx]
[05-Mar-2012 10:14:24 +0100]: S: Invalid credentials
[05-Mar-2012 10:14:24 +0100]: C: Close
[05-Mar-2012 10:27:42 +0100]: C: Connect [localhost:389]
[05-Mar-2012 10:27:42 +0100]: S: OK
[05-Mar-2012 10:27:42 +0100]: C: Bind [dn: cn=mark,ou=private,ou=rcabook,
dc=localhost] [pass: xxxx]
[05-Mar-2012 10:27:42 +0100]: S: Invalid credentials
[05-Mar-2012 10:27:42 +0100]: C: Close
[05-Mar-2012 10:27:52 +0100]: C: Connect [localhost:389]
[05-Mar-2012 10:27:52 +0100]: S: OK
[05-Mar-2012 10:27:52 +0100]: C: Bind [dn: cn=mark,ou=private,ou=rcabook,
dc=localhost] [pass: xxxx]
[05-Mar-2012 10:27:52 +0100]: S: Invalid credentials
[05-Mar-2012 10:27:52 +0100]: C: Add [dn: mail=ssssss(a)iiii.uu,cn=mark,
ou=private,ou=rcabook,dc=localhost]: Array
(
[cn] => ssssssss sss
[sn] => sss
[givenname] => ssssssss
[mail] => ssssss(a)iiii.uu
[objectClass] => Array
(
[0] => top
[1] => inetOrgPerson
)
)
[05-Mar-2012 10:27:52 +0100]: S: Strong(er) authentication required
[05-Mar-2012 10:27:52 +0100]: C: Close
------------------------------------------------------------
config/main.inc.php
$rcmail_config['ldap_public']['public'] = array(
'name' => 'Public LDAP Addressbook',
'hosts' => array('localhost'),
'use_tls' => false,
'ldap_version' => 3, // using LDAPv3
'port' => 389,
'auth_method' => '',
'user_specific' => false,
'writable' => true,
'base_dn' => 'ou=public,ou=rcabook,dc=localhost',
'bind_dn' => 'cn=rcuser,ou=rcabook,dc=localhost',
'bind_pass' => 'rcpass',
'fieldmap' => array(
'name' => 'cn',
'surname' => 'sn',
'firstname' => 'givenName',
'email' => 'mail',
'phone:home' => 'homePhone',
'phone:work' => 'telephoneNumber',
'phone:mobile' => 'mobile',
'street' => 'street',
'zipcode' => 'postalCode',
'locality' => 'l',
'country' => 'c',
'organization' => 'o',
),
'LDAP_Object_Classes' => array('top', 'inetOrgPerson'),
'LDAP_rdn' => 'mail',
'required_fields' => array('cn', 'sn', 'mail'),
'filter' => '(objectClass=inetOrgPerson)',
'groups' => array(
'base_dn' => '', // in this Howto, the same base_dn as
for the contacts is used
'filter' => '(objectClass=groupOfNames)',
'object_classes' => array("top", "groupOfNames"),
),
);
$rcmail_config['ldap_public']['private'] = array(
'name' => 'Private LDAP Addressbook',
'hosts' => array('localhost'),
'use_tls' => false,
'ldap_version' => 3, // using LDAPv3
'port' => 389,
'auth_method' => '',
'user_specific' => true,
'writable' => true,
'base_dn' => 'cn=%u,ou=private,ou=rcabook,dc=localhost',
'bind_dn' => 'cn=%u,ou=private,ou=rcabook,dc=localhost',
'bind_pass' => '', // the user login password is used
'fieldmap' => array(
'name' => 'cn',
'surname' => 'sn',
'firstname' => 'givenName',
'email' => 'mail',
'phone:home' => 'homePhone',
'phone:work' => 'telephoneNumber',
'phone:mobile' => 'mobile',
'street' => 'street',
'zipcode' => 'postalCode',
'locality' => 'l',
'country' => 'c',
'organization' => 'o',
),
'LDAP_Object_Classes' => array('top', 'inetOrgPerson'),
'LDAP_rdn' => 'mail',
'required_fields' => array('cn', 'sn', 'mail'),
'filter' => '(objectClass=inetOrgPerson)',
'groups' => array(
'base_dn' => '', // in this Howto, the same base_dn as
for the contacts is used
'filter' => '(objectClass=groupOfNames)',
'object_classes' => array("top", "groupOfNames"),
),
);
-------------------------------------------
openldap/slapd.conf
#
# See slapd.conf(5) for details on configuration options.
# This file should NOT be world readable.
#
include /etc/openldap/schema/corba.schema
include /etc/openldap/schema/core.schema
include /etc/openldap/schema/cosine.schema
include /etc/openldap/schema/duaconf.schema
include /etc/openldap/schema/dyngroup.schema
include /etc/openldap/schema/inetorgperson.schema
include /etc/openldap/schema/java.schema
include /etc/openldap/schema/misc.schema
include /etc/openldap/schema/nis.schema
include /etc/openldap/schema/openldap.schema
include /etc/openldap/schema/ppolicy.schema
include /etc/openldap/schema/collective.schema
# Allow LDAPv2 client connections. This is NOT the default.
allow bind_v2
# Do not enable referrals until AFTER you have a working directory
# service AND an understanding of referrals.
#referral ldap://root.openldap.org
pidfile /var/run/openldap/slapd.pid
argsfile /var/run/openldap/slapd.args
SIZELIMIT 100000
#
# if no access controls are present, the default policy
# allows anyone and everyone to read anything but restricts
# updates to rootdn. (e.g., "access to * by * read")
#
# rootdn can always read and write EVERYTHING!
#######################################################################
# ldbm and/or bdb database definitions
#######################################################################
database bdb
suffix "dc=localhost"
checkpoint 1024 15
rootdn "cn=admin,dc=localhost"
# Cleartext passwords, especially for the rootdn, should
# be avoided. See slappasswd(8) and slapd.conf(5) for details.
# Use of strong authentication encouraged.
rootpw {SSHA}xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# The database directory MUST exist prior to running slapd AND
# should only be accessible by the slapd and slap tools.
# Mode 700 recommended.
directory /var/lib/ldap
# Indices to maintain for this database
index objectClass eq,pres
index ou,cn,mail,surname,givenname eq,pres,sub
index uidNumber,gidNumber,loginShell eq,pres
index uid,memberUid eq,pres,sub
index nisMapName,nisMapEntry eq,pres,sub
# Replicas of this database
#replogfile /var/lib/ldap/openldap-master-replog
#replica host=ldap-1.example.com:389 starttls=critical
# bindmethod=sasl saslmech=GSSAPI
# authcId=host/ldap-master.example.com(a)EXAMPLE.COM
# Grant the Roundcub user to create private users
access to dn.one="ou=private,ou=rcabook,dc=localhost" attrs=userPassword
by dn="cn=rcuser,ou=rcabook,dc=localhost" write
by anonymous auth
by self write
by * none
# For user authentication and password change
access to attrs=userPassword
by dn="cn=admin,dc=localhost" write
by anonymous auth
by self write
by * none
# Grant the Roundcube users access to their private addressbooks
access to dn.regex="^.*cn=([^,]+),ou=private,ou=rcabook,dc=localhost$"
by dn="cn=admin,dc=localhost" write
by dn="cn=rcuser,ou=rcabook,dc=localhost" write
by dn.exact,expand="cn=$1,ou=private,ou=rcabook,dc=localhost" write
# Grant the Roundcube user access to the whole addressbook
access to dn.subtree="ou=rcabook,dc=localhost"
by dn="cn=admin,dc=localhost" write
by dn="cn=rcuser,ou=rcabook,dc=localhost" write
# For direcory access
access to *
by dn="cn=admin,dc=localhost" write
# enable monitoring
database monitor
-----------------------------------------
openldap/ldap.conf
#
# LDAP Defaults
#
# See ldap.conf(5) for details
# This file should be world readable but not world writable.
#BASE dc=example,dc=com
#URI ldap://ldap.example.com ldap://ldap-master.example.com:666
#SIZELIMIT 12
#TIMELIMIT 15
#DEREF never
URI ldap://127.0.0.1/
BASE dc=localhost
TLS_REQCERT never
TLS_CACERTDIR /etc/openldap/cacerts
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hey Marcel,
2012/3/2 Marcel Herrguth <mherrguth(a)mrgeneration.de>
> Hey,
>
> Am 2.3.2012 04:51, schrieb rapaterres Oo.:
>
>> i'm just upgraded 7.0 to 7.1 roundcube and i can't access into
>> webmail, i have the error "Session invalid or expired" when i try to
>> login
>>
>> here the logs...
>> [..]
>>
>> i don't know what's going on because all looks fine... but it isn't :(
>>
>> anyone can guide me with this error?
>>
>>
> I had similare Errors. These errors occur soemtimes, but simply seem to be
> a Browser Problem. (for me it was Firefox).
> If you delete all cookies that Roundcube writes (especially the session
> cookie) and then refresh the page, a login should work fine to you.
>
> You can also use the plugin that keeps you logged in. It may sometimes
> display this error as well, but if you refresh it without doing anything
> else, it logs you in most of the times.
>
> Hope I could help you
>
thank you for your help but...
I already read that this problem could be the browser and I deleted all
cookies, and tried from another browser too... but it did not work. I even
tried from another computer (and other ip), and even tried to delete the
sessions in the bbdd, but I have the same error.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
In my system I have multiple domains with many users, all set up in mysql.
MTA is served by Exim 4, Backend and IMAP is handled by dovecot 2.0.
Some of my users have mail aliases, what means that for example john(a)test.com
is able to log in also as johny(a)test.com as well as john(a)williams.com. All these
accounts lead to the same mailbox, and check the password for the same
basic user, which is john(a)test.com.
And everything works fine, until they log in to roundcube. Lightweight issue is that
settings are separate for each email that they used to log in - annoying, but you could
live with it. But another thing is much worse: when users set up sieve rules in roundcube,
these settings are also separate for each mail alias - what is hardly acceptable. But what
is absolutely unacceptable is the fact, that actually only rules set up for the basic account
(john(a)test.com) are working. This is quite understandable, since dovecot during delivery
checks the basic account sieve file instead of checking all possible variants :)
Now I'd like to find out if there is any solution for repairing this.
Dovecot, for example, uses its user_query and password_query, that always return the
same no matter which credentials were used to log in.
Maybe there is a way for roundcube to identify user not by credentials but by eg. inbox path?
That would help a lot...
Am I the only one who needs such functionality?
Greetings,
--
Jacek
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi Devs, you're probably getting this question every day now, but will we
be seeing a February announcement for the beta release including the new
skin for Roundcube?
Thanks for all your hard work and talent!
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Good afternoon,I have a problemin myPostfix/Roundcube.I noticedthat in
the lastthree monthsallusers createdin the tablewere not
fed"identities."I do not knowwhat was doneto make it happen.The
problemis that thesender fieldis open forthe user inputs theemailyou want.
Something interestingI noticedis thatat the time offirstlogin
(hourshecreatesrecords)it displaysthe error "Your sessionis invalid or
expired"
db.inc.phpfileis right...$rcmail_config['db_table_identities']=
'identities';
the fileis$main.inc.phprcmail_config['identities_level']=3;
I do not knowwhat can be...Can someonehelp me?
Note:Myenglishisbad....
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
We've got our RoundCube install tied into our LDAP server, and we'd
like to populate the "Display Name" field from LDAP's "sn" field so
that new users, upon logging in, will have new mail appear to come
from their full name instead of their username.
Is that even possible? If so, what steps would I need to take? Which file(s) need to be edited?
Running RoundCube-0.7.1.
Thanks!
--
Josh Whitver
whitverj(a)urbandale.k12.ia.us / josh(a)whitver.net
"Write a wise saying and your name will live forever." -Unknown
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I'm currently studying roundcube with ldap as its DEFAULT addressbook. I
have a running ldap for addressbook and it is working fine in an email
client such as Thunderbird. Below is my setup in TB
Base DN : dc=mail,dc=foo,dc=com
Port 388
Port 388 is being forward to 389 of my ldap server. However, I cannot
configure Roundecube to query on ldap. Below is my config in ldap settings
in main.inc.php.
$rcmail_config['address_book_type'] = 'ldap';
$rcmail_config['ldap_public']['Addbook'] = array(
'name' => 'foo.com',
'hosts' => array('localhost'),
'port' => 389,
'use_tls' => false,
'user_specific' => false,
'base_dn' => 'dc=mail,dc=foo,dc=com',
'LDAP_Object_Classes' => array("top", "inetOrgPerson"),
'required_fields' => array("cn", "sn", "mail"),
'LDAP_rdn' => 'mail',
'search_fields' => array('mail', 'cn'),
'name_field' => 'cn',
'email_field' => 'mail',
'surname_field' => 'sn',
'firstname_field' => 'gn',
'sort' => 'cn',
'fuzzy_search' => true,
'sizelimit' => '0',
'timelimit' => '0',
);
$rcmail_config['autocomplete_addressbooks'] = array('ldap','foo.com');
$rcmail_config['autocomplete_min_length'] = 1;
After saving main.inc.php, I can no longer access Addressbook Tab. Probably
of the wrong settings in my ldap. I can query ldap when I do ldapsearch -x
-b 'dc=mail,dc=foo,dc=com'. The settings above is based on the default
file main.inc.php.
I just followed the procedures.
Can anyone give a hint?
TIA,
Nelson
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I'm trying Roundcube and I think it's great !!!!!!!
But I have not found an advanced search of messages, you can't search and
filtering for multiple fields of message at the same time.
For example, I want search messages from one date to a date (period).
For example, messages that the recipient equal to "X" and the sender equal to
"Y" and that the subject contains "Z".
I did not find it or is there not ? if there is not, it planned in future
releases? there is a plugin ?
Thank you
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I am sure this must be a common question. How does one imports a set
of contacts from a Horde:IMP:turba environment?
I can export the raw data from the source system into a CVS like file.
Is it a simple matter to just use perl:DBI to insert the data into the
roundcubemail:contacts table? I have looked at that option and noticed
that contacts are referenced via user_id. My roundcube instance
already has all the roundcubemail:users table populated. Or is there
some php code in the source tree which I can leverage to make the job
easier. I have about 5000 contacts or else I could do things manually.
Many thanks in advance.
Russell
--
Russell Sutherland
email: russ(a)quist.ca
cell: +1.416.803.0080
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
To the Round Cube community.
Today I've made changes to the mail server, that will hopefully enable me to continue serving as your list host. I've changed the numeric IP address used for posts being sent from this mailing list. This change *may* cause some of you to see delays, as ISPs do not yet have any reputation recorded for this new IP address. Many ISPs delay mail in this circumstance until more of a reputation is earned.
If you want to catch up in the list, and you think mail to your ISP is being delayed, you can read the archives at http://lists.roundcube.net/users/ .
[Stop reading here, unless you want more background info.]
This change is regrettable an important one, for me to continue hosting.
Until today, mail for my users (many of which have been here for 10-15 years) was sharing the same physical server and IP address as hosting the mailing lists. Most of those years, this was not a problem. However, in the last year or two, there has been increasing tension with this setup.
Why the tension? People who subscribed to the list, then later complain to their ISP that the mail is spam. Pure and simple. These people build a negative reputation for my server's IP address. This in turn causes the ISPs to block *all* mail from my IP address. This affects the CRPL list, the Woodworkers list (who's now moved off), the Round Cube lists, and all the personal users on my server (including my family). Many of us use the server for contact with our families, or (in my case) for professional reasons.
For example, nobody on my server can mail AT&T owned domains. This includes worldnet, pacbell, prodigy, swbell, and other related businesses. This failure mode has caused several long time users and organizations both to leave my server. All of it is directly attribution to the mailing list hosting.
This tension has been so bad that I asked your list *owners*, in December, to look for a new host to move to. This has been a terrible ask - both my act of doing so; as well as the effort it takes for your list owners to find a new home. This has been quite difficult for your list owners to actually act on.
I've finally come up with a solution (and had the time to implement it), to avoid moving the mailing lists to a different physical server. New posts will come from a dedicated IP address just for mailing lists; all other mail will remain on the original IP. Until the ISPs of the world stop delaying mail from this new IP, I'll ask you for your patience.
With these changes, I hope that I'll be able to host the list for another 10-15 years after all.
-jason
list *host* .
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/FF/HVKuFZRK/smime.p7s
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Testing mailing list server changes.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ek/nTjsWPn2/smime.p7s
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi All,
I setup a rouncube (svn current) with two cyrus imap servers and
openldap/mysql.
I managed to extend my ldap hierarchy to include following:
ou=People,dc=xxxx,dc=org for public address book
this works fine and all users are visible from the roundcube via public
address - readonly book
i have private address books under user uid
uid=xxxx,ou=People,dc=xxxx,dc=org
as ou=addressbook,uid=xxxx,ou=People,dc=xxxx,dc=org
slapd.conf is modified with appropriate rules to allow users to create
addditional address books and contacts
everything works fine.
I changed search criteria on the public address book to "one" from "sub" to
avoid picking up private group names under public address group listing.
However, when I create user private address book, e.a.
cn=My Friends,ou=addressbook,uid=xxxx,ou=People,dc=xxxx,dc=org
this private group will show under both, public and private address space
in roundcube.
I thought that by limiting search criteria in public address space from sub
to one will prevent private address books from showing, but that did not
work.
What do you suggest as easiest approach to solve this issue.
btw, I registered to http://www.roundcubeforum.net and I can't post email
to any forum.
I sent email to support folks and nothing...
Regards, --sasha
--
Aleksandar Kacanski
--
Aleksandar Kacanski
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
My fear is that the garbage collection from one or more webmail machines is
somehow stomping over active sessions
On Tue, Feb 14, 2012 at 10:10 AM, Jernej Porenta <jernej.porenta(a)arnes.si>wrote:
>
> On Feb 14, 2012, at 5:19 PM, James Devine wrote:
>
> > I have 3 machines running identical instances of roundcube setup in a
> load balanced cluster sharing an instance of mysql. We seem to have issues
> at times where people's sessions expire in the middle of using roundcube.
> Is the best way to fix this to set the session_lifetime to 0 and do manual
> cleanup of sessions? --
> > List info: http://lists.roundcube.net/users/
> > BT/ef886a1a
>
>
> Did you try using memcache for session data?
>
> It might solve some issues, since it is way better performing than session
> data in MySQL and the paradigm is almost the same. I believe memcache
> session driver is available in 0.7 series, however you will still need
> MySQL for other caches, if you are using them.
>
> Regards,
> --
> Jernej Porenta <jernej.porenta(a)arnes.si>
> ARNES, Tehnološki park 18, p.p. 7, SI-1001 Ljubljana, Slovenia
> tel: +386 1 479 8800, fax: +386 1 479 88 99
>
>
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e