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
Progress!
So looks like SELinux was the culprit after all. After I turned it
off, my config files were found and read by the Roundcube installer.
However, now it is telling me that the database DSN (write) failed:
"(MDB2 Error: connect failed)
Make sure that the configured database exists and that the user has
write privileges
DSN: mysql://roundcube:[password]@localhost/roundcubedb"
where [password] is the password I set up for the roundcube MySQL user.
Sorry to keep bugging you all, but:
(1) How do I troubleshoot this database issue?
(2) Is it OK to have SELinux completely off?
Thanks!!
On 14 February 2012 23:30, Ben Schmidt <mail_ben_schmidt(a)yahoo.com.au> wrote:
>> In fact I would welcome someone to connect to the server and check
>> things out for me. Unfortunately, it is actually running in a
>> VirtualBox virtual machine with NAT, so I don't know how a remote
>> connection to it would work..... But thank you so much Bem Schmidt
>> for the offer!
>
> If you ssh to me with port forwarding, I could connect back to you
> through the ssh tunnel. I just have to make my machine temporarily
> accessible and give you a user account to log in with. Let me know if
> you want to try it.
>
> Cheers,
>
> Ben.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
The following are my current permissions setting for Roundcube:
[root@scientific-vb config]# ls -l
total 84
-rw-r--r--. 1 apache apache 2663 Feb 13 17:05 db.inc.php
-rw-r--r--. 1 apache apache 2662 Sep 28 06:16 db.inc.php.dist
-rw-r--r--. 1 apache apache 33274 Feb 13 17:05 main.inc.php
-rw-r--r--. 1 apache apache 33208 Nov 30 08:11 main.inc.php.dist
-rw-r--r--. 1 apache apache 2450 Oct 20 2010 mimetypes.php
However, the Roundcube installer keeps saying: "Unable to read file.
Did you create the config files?"
What am I doing wrong?
Thanks!
P.S. My Roundcube resides in /var/www/html/webmail/, it is connected
to MySQL, and the web server user is "apache" (sans quotes).
On 13 February 2012 01:08, Ben Schmidt <mail_ben_schmidt(a)yahoo.com.au> wrote:
> That should be OK. I don't have any other ideas right now, so perhaps send
> your reply to the mailing list to see if others have any.
>
> Ben.
>
> On 13/02/12 4:47 PM, Advrk Aplmrkt wrote:
>>
>> They are all read and writable by my webserver user and group (i.e.
>> apache). Should it be something else?
>>
>> On 13 February 2012 00:20, Ben Schmidt<mail_ben_schmidt(a)yahoo.com.au>
>> wrote:
>>>
>>> Maybe the permissions of the config directory are wrong (or even a
>>> directory higher up the file hierarchy)?
>>>
>>> Ben.
>>>
>>> On 13/02/12 3:36 PM, Advrk Aplmrkt wrote:
>>>>
>>>> Hello,
>>>>
>>>> I managed to setup latest Roundcube on my server (w/ MySQL and Apache)
>>>> up and through the config file setup.
>>>>
>>>> I downloaded the two config files and moved them into
>>>> /var/www/html/webmail/config (webmail is my Roundcube directory), and
>>>> chown'ed them to apache.apache (apache is my webserver user). However,
>>>> the Roundcube installer says it can't read the config files.
>>>>
>>>> Am I doing anything wrong? Can someone help me troubleshoot this?
>>>> Thank you very much!
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
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/9b404e9e
Hello,
I managed to setup latest Roundcube on my server (w/ MySQL and Apache)
up and through the config file setup.
I downloaded the two config files and moved them into
/var/www/html/webmail/config (webmail is my Roundcube directory), and
chown'ed them to apache.apache (apache is my webserver user). However,
the Roundcube installer says it can't read the config files.
Am I doing anything wrong? Can someone help me troubleshoot this?
Thank you very much!
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
Newbie question: After following the instructions on the website to
install Roundcube (unpack into /var/www/html/, setup MySQL database,
etc.), I encountered a Forbidden error when trying to access the
installer page.
How do I troubleshoot this issue?
Thank you very much.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Every time I try to log on to the site to check mail I get an error message saying, “There is a problem with this web site’s security certificate,” is there a fix for this? I attach a screen capture of the error message. I am running Windows 7 and using Internet Explorer 9.
John
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/dD/yFcTa+IL/Security_Certificate.JPG
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
I am running Roundcube v 0.7 on Ubuntu with posfix and dovecot. I can
see sent messages, drafts, and trash in the client, but can not see new
messages. My new messages on the server are stored in /var/mail/user
I set my configuations to use Maildir. Any ideas of where I can look to
fix this issue?
Thanks
Randy
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
You're almost done! Visit the URL below to finish subscribing to users(a)lists.roundcube.net:
https://fiesta.cc/join_public?e=users-post-archive-x9851%40gigo.com&l=Tx85y…
If you did not mean to subscribe to users(a)lists.roundcube.net, or if this was sent in error, please ignore this email. You won't be subscribed to the list.
Am I doing something wrong to be seeing all these errors?
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Only variables should be
assigned by reference in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1221
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1222
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1227
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2.php on line
3972
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2.php on line
4070
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/mysql.php
on line 1616
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Only variables should be
assigned by reference in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1117
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1118
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Only variables should be
assigned by reference in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1221
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1222
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1227
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/mysql.php
on line 1651
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/mysql.php
on line 1656
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/include/rcube_mdb2.php
on line 200
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Only variables should be
assigned by reference in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1117
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1118
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Only variables should be
assigned by reference in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1221
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1222
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1227
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2.php on line
3972
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2.php on line
4070
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/mysql.php
on line 1616
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Only variables should be
assigned by reference in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1117
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1118
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Only variables should be
assigned by reference in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1221
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1222
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/Datatype/Common.php
on line 1227
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/mysql.php
on line 1651
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::isError() should not be called statically, assuming $this from
incompatible context in
/var/www/roundcube_local/roundcubemail-0.7.1/program/lib/MDB2/Driver/mysql.php
on line 1656
[30-Jan-2012 18:00:34 UTC] PHP Strict Standards: Non-static method
PEAR::setErrorHandling() should not be called statically in
/var/www/roundcube_local/roundcubemail-0.7.1/program/include/iniset.php on
line 131
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I've recently updated roundcube from 0.5.4 to 0.7.1. At first it looks
like all went well (db update and such).
Anyway now I don't manage to have the flag and attachment columns in
my email list (I click on the icon top left of the list, I check these
amongst others, but these 2 won't be displayed anyway).
That's annoying (especially the flag one, which allowed me to flag or
set emails to (un)read in one click without loading them, and see if
an email has been answered/transfered).
Also when displaying an email on the preview panel, there was this
very practical feature to display the email's headers (a small arrow
just under the main header data (title, sender, recipient, date)). I
can still use the action menu and select the whole source to be
displayed, but that's far from being as practical as this
one-click-no-load arrow was. As I still see this arrow in screenshots
on the website, I sure hope I have just an issue in my installation,
and the feature has not been removed.
Would anyone be able to help me to get back these column and this
headers button? What could be the issues here?
Thanks.
Jehan
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi. Bumbing this, hoping that somebody has an idea what the root cause
could be and how it could be fixed... Thanks.
-------- Original Message --------
Subject: [RCU] 0.7.1 - inbox greyed out
Date: 2012-01-13 14:37
To: <users(a)lists.roundcube.net>
Hi - since I migrated from rcm 0.5 to 0.6, my inbox is greyed out. I
cannot click on the inbox anymore in the folders list, but have to use
the e-mail button in the top menu bar. Any idea what may have triggered
this behavior?
I just upgraded further to 0.7.1 (all via the installto.sh script), but
the issue persists.
Thanks for any help you can provide,
Chris
--
List info: http://lists.roundcube.net/users/
BT/0794d264
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Our team is considering building a cloud drive service for our ISP
customers, possibly using webdav as a backend, as a plugin for Roundcube.
I was wondering if there has been any development done in this regard that
we could start on, or whether or not this has been discussed in the past?
Thanks in advance.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Does anyone have any sense of when 0.7.2 will be released? I see on the
Trac pages that the 5 listed bugs are all Closed, and have been for a
while? I'd rather not upgrade to 0.7.1 if 0.7.2 is just around the
corner.
--
Arne Berglund
System Administrator, Internet Services
Lane Education Service District
Eugene, OR
____________
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi All,
I apologize if this is an inappropriate place to post such things but I recall seeing messages as recently as last month from people having difficulties using Alex Li's rc-cas-plugin (http://code.google.com/p/rc-cas-plugin/) so I thought this may be of interest to them.
I have created a fork of his plugin that works with stock Roundcube 0.6 and greater. It can be found here:
https://github.com/dfwarden/Roundcube-CAS-Authn
Most of the relevant info is in the README and the default config file.
We have been using this plugin since the beginning of 2012 on our production Roundcube cluster without a problem. (8 RHEL 6.2, RC 0.7 hosts behind LVS load balancer)
Hope this helps,
David Warden
SUNY Geneseo
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi There,
I have roundcube 0.3.1 and daovecot 1.2.15 from the debian squeeze
repo installed. I am trying to send email via MSP (port 587).
here are the pertinent config lines:
$rcmail_config['smtp_server'] = 'tls://localhost';
$rcmail_config['smtp_port'] = 587;
$rcmail_config['smtp_user'] = '%u(a)dmtserv.com';
$rcmail_config['smtp_pass'] = '%p';
$rcmail_config['smtp_auth_type'] = 'CRAM-MD5';
and this is what I get when I tried to send email:
(I just cut and pasted relevant lines)
220 smmtp2.dmtserv.com ESMTP Sendmail 8.14.3/8.14.3/Debian-9.4; Thu, 19
Jan 2012 18:31:08 -0500; (No UCE/UBE) logging access from:
localhost(OK)-localhost [127.0.0.1]
\026\003\001
500 5.5.1 Command unrecognized: "\026\003\001"
500 5.5.1 Command unrecognized: ""
421 4.4.1 smmtp2.dmtserv.com Lost input channel from localhost [127.0.0.1]
localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during
connection to MSP-v4
I know my MSP port is Working. I setup my thunderbird client like:
Port: 587
Connection Security: STARTTLS
Authentication: Encrypted password
User Name: robertof(a)dmtserv.com
And I can send via port 587 (did a tcpdump on port 587 and saw
my email transaction going)
If I set the roundcube config like so:
$rcmail_config['smtp_server'] = 'localhost';
$rcmail_config['smtp_port'] = 587;
$rcmail_config['smtp_user'] = '%u(a)dmtserv.com';
$rcmail_config['smtp_pass'] = '%p';
$rcmail_config['smtp_auth_type'] = 'CRAM-MD5';
It works but it sends it via port 25 using CRAM-MD5 as auth.
Thank you for your time,
--
Roberto Fulgado
DM&T Service Ltd.
Tel: (905)731-0142 ext. 64
Email: robertof(a)dmtserv.com
---------------------------------------------------------------------------------
No act of kindness, no matter how small, is ever wasted.
-- Aesop
--
Message clean
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi all,
I've tried to update our Roundcube installation (currently r5634) to
the latest version r5772, but installto.sh quits with following message:
"Installation at target location is up-to-date!"
How do I have to upgrade from one trunk release to another ?
Thank you for your kind help.
best regards
Andreas
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Dear Techies,
I have a Roundcube version 0.7.1 setup with cyrus-imapd-2.3.7 as mailbox
server. When a message is forwarded as an attachment it fails to save
message in
Sent or Draft folder. I have enabled cyrus' IMAP protocol debugging where
I get error after APPEND command that "NO Message contains bare newlines".
I have tested it setting all the combinations of '\r' and '\n'
for $rcmail_config['mail_header_delimiter'], but no luck.
I saw a number of posts explaining the same problem and providing various
patches but they all are for
older versions of RC.
So it would be great, if some developers look into it.
Thanks.
--
Regards,
Sachin Divekar
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Greetings,
Is it possible to dynamically assign the value of skin_logo in roundcube
through a plugin? i cant find a hook that seems to do manage to correctly
set and display the resulting parameter by the time the first page loads
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
Is it possible to set Round Cube to delete messages older than some
time automatically?
Thanks,
Vedran
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I attempted to set this by changing
// SMTP port (default is 25; 465 for SSL)
$rcmail_config['smtp_port'] = 587;
// 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';
but I got 250 errors in roundcube (and nothing but a connect followed by
a quick disconnect in the MTA log)... so I'm guessing it doesn't? That
or I missed something...
--
Best regards,
Charles
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi - since I migrated from rcm 0.5 to 0.6, my inbox is greyed out. I
cannot click on the inbox anymore in the folders list, but have to use
the e-mail button in the top menu bar. Any idea what may have triggered
this behavior?
I just upgraded further to 0.7.1 (all via the installto.sh script), but
the issue persists.
Thanks for any help you can provide,
Chris
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
People are able to login with 'username' and 'username(a)domain.com' and
it seems like this is resulting in two entries into the database, one
for each. Is there a way to allow both to login, but only use one for
the identity in the database?
thanks!
micah
--
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
We upgraded our RC from 0.6 to 0.7 and we have an issue with
skip_deleted flag.
If we set the skip_deleted flag, no folder shows any messages. Flag
worked fine under 0.6.
Anybody experienced the same issue?
We use sql db and it looks like RC is parsing preferences wrong.
Help appriceated.
Jure
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
what maillist?, plase let me hold your pocket :)
-------- Original Message --------
Subject: Re: [RCU] How to make roundcube show user quota information
Date: Mon, 09 Jan 2012 18:52:37 -0600
From: paul(a)shopterraforma.com
To: Benny Pedersen <me(a)junc.org>
Hi,
Would you please take me off your mailing list.
Thanks,
Paul
On 07.01.2012 17:48, Benny Pedersen wrote:
> On Sat, 7 Jan 2012 14:16:37 +0100, Krisztián Gulyás wrote:
>
>> I would like to make roundcube show the quota bar for logged in
>> users.
>
> http://wiki.dovecot.org/Quota
>
>> Could you help me?
>
> i hope :-)
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Dear all,
We're happy to announce another release of the Roundcube webmail
suite. This service update brings some bug fixes and translation
updates to the 0.7 stable release. See
http://trac.roundcube.net/wiki/Changelog file for details.
It is considered stable and we recommend to update all existing
Roundcube installation with this release. Get it from
http://roundcube.net/download as usual.
Have fun and happy new year to everybody!
Thomas
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
IMAP/SMTP usernames on my server are in form user_domain.tld. When
this user first time log in to RoundCube, new identy for him is
created with default e-mail adress in form user_domain.tld@localhost,
which is unfortunately not accepted by SMTP server (because this user
does not exist). So my question is, if there is any way to change this
behavior (just pick IMAP username and substitute _ by @).
Thank you very much for your help.
Martin Šťastný
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
Two weeks ago I also tried to ask you (with no success) but I would take a
chance again.
My problem is that our roundcube version does not show the quota usage
information of the logged-in user.
I managed to make exim-dovecot to create the maildirsize file. The location
for a certain e-mail is: /home/<username>/imap/<domain>/<e-mail address
name>/Maildir/maildirsize. For example the maildirsize file for test@
company.hu is located in /home/ownerOfTest/imap/company.hu/test
/Maildir/maildirsize.
I would like to make roundcube show the quota bar for logged in users.
Could you help me?
Best regards,
Chris
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I just upgraded my company's Roundcube installation from 0.5.3 to 0.7,
and I have an interesting problem.
We have the force_https option set to true. In the past, if you went to
the unencrypted address and tried to login, you would be redirected to
the encrypted connection, and your login would succeed.
Now, if you go to the http address and try to login, you are not
redirected to the encrypted connection, and you get an error stating
that "Your session is invalid or expired" when you try to login.
Can anyone else confirm this error? It's not a show stopper, but it is
a little annoying that the behavior is different. I'm sure to get
complaints on Monday. *sigh*
Thanks,
Fred Bacon
Aerodyne Research, Inc.
--
----------------------------------------------------------------------------
"A bus station is where a bus stops. A train station is where a train stops.
On my desk, I have a work station…."
— William Faulkner
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
Recently my mailbox went from being 25% to 81% full very quickly. I
use this email address for business so it's very important I add more
mailbox space. How can I do so?
Thank you,
Paul
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I'm having a little trouble with address book groups. I think I'm really
looking for a little clarification on expected functionality and help
with my current set up.
I'm running Roundcube 0.7 with individual's contacts stored in an LDAP
directory (OpenLDAP). For the most part it is working great - big thank
you to the devs : )
I have a 'Private Address Book' and all contacts are listed under
'Contacts' in the next column, great. I can also add groups, which are
then nested under the 'Private Address Book' and adding contacts to
those groups seems to work well also.
However, selecting one of the nested groups does not display any of the
members under the 'Contacts' column - Should it?. There is a count at
the bottom ('Contact 1 to 11 of 11', for example) but it is always one
higher than the number of contacts in the group.
Also, adding a group to the 'to' field when composing a message does not
seem to work. Typing 'my g' brings up 'My Group (2)' correctly (apart
from the number of contacts in the group) but when I select it, it is
replaced with a ','.
Here are the appropriate sections of my config, I'd be grateful of any help:
$rcmail_config['ldap_public']['Private'] = array(
'name' => 'Private Address Book',
'hosts' => array('my.server.com'),
'port' => 389,
'use_tls' => true,
'ldap_version' => 3,
'user_specific' => true,
'base_dn' => 'ou=Address Book,cn=%fu,%dc',
'bind_dn' => 'cn=%fu,%dc',
'bind_pass' => '',
'search_base_dn' => '',
'search_filter' => '',
'search_bind_dn' => '',
'search_bind_pw' => '',
'search_dn_default' => '',
'auth_cid' => '',
'auth_method' => '',
'hidden' => false,
'searchonly' => false,
'writable' => true,
'LDAP_Object_Classes' => array("top", "person", "inetOrgPerson",
"organizationalPerson", "evolutionPerson"),
'LDAP_rdn' => 'cn',
'required_fields' => array("cn", "sn"),
'search_fields' => array('cn'),
'sort' => 'cn',
'scope' => 'one',
'filter' => '(objectClass=evolutionPerson)',
'fuzzy_search' => true,
'vlv' => false,
'numsub_filter' => '(objectClass=organizationalUnit)',
'sizelimit' => '0',
'timelimit' => '0',
'referrals' => true|false,
'groups' => array(
'base_dn' => 'ou=Groups,cn=%fu,%dc',
'filter' => '(objectClass=groupOfNames)',
'object_classes' => array("top", "groupOfNames"),
'member_attr' => 'member',
'name_attr' => 'cn',
As you can see, the structure of my LDAP directory is like this:
ou=Address Book,cn=username(a)server.com,dc=server,dc=com
ou=Groups,cn=username(a)server.com,dc=server,dc=com
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I am testing roundcube 0.7-stable. I configured LDAP Adressbook with the
following groups properties:
'groups' => array(
'base_dn' => 'dc=mydomain',
'filter' => '(objectClass=rmailGroup)',
'object_classes' => array("top", "mailGroup"),
'member_attr' => 'rfc822member', // name of the member
attribute, e.g. uniqueMember
'name_attr' => 'cn', // attribute to be used as group name
),
I can see the users and groups emails in address book but not group
members. When i click on group no member listed.
After enabling rouncube debug, I saw the following LDAP query. It seems
that RC users full dn as a filter value.
[29-Dec-2011 17:20:55 +0200]: C: Search
[(|(member=uid=user@test.com,ou=test.com,o=mail,dc=mydomain)(uniqueMember=uid=user@test.com,ou=test.com,o=mail,dc=mydomain)(*rfc822member=uid=user@test.com,ou=test.com,o=mail,dc=mydomain*))][dn:
dc=mydomain]
But the filter value must be username not full dn as above.
Any idea?
--
Ismail YENIGUL
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I'm using rcmail 0.7 from source. I setup everything but don't understand
the identitities_level feature in main.inc.php and the identities
generally.
I want to create a new mail, but even if I have
identities_level = 3, I can specify the From: address and even if I don't
enter any, I'm noticed with message box, that I must enter some
From: address. Why?? Because
I can enter ANY address for example something like 'nonexistent(a)email.com'
if I really want (the only domain part is checked).
How is the idea of this? Am I missing something or do I have to configure
something more?
According to me, the textbox for entering ANY email address should be
replaced with label 'myownemail(a)address.com' and link for editing
identities should disappear...
Thank you
Best regards, Tomas
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e