On Fri, 26 Feb 2010 12:12:52 -0800, Arne Berglund aberglund@lesd.k12.or.us wrote:
Has anyone had any luck making the new_user_identity plugin work?
It works great (I am using 0.3.1)
Any success stories (and details on your config) would be appreciated.
There is really nothing to detail. Just follow the config instructions listed in new_user_identity.php and you are good to go. The config for this plugin is literally 3 lines (we are checking against an OpenLDAP directory):
main.inc.php
$rcmail_config['plugins'] = array('new_user_identity'); $rcmail_config['new_user_identity_addressbook'] = 'People'; $rcmail_config['new_user_identity_match'] = 'uid';
If it is not working, check these to make sure you've specified the values correctly.
Make sure the value 'new_user_identity_addressbook' is correct:
e.g. the following two lines match:
$rcmail_config['new_user_identity_addressbook'] = 'People';
$rcmail_config['ldap_public']['People']
and that $rcmail_config['new_user_identity_match'] = 'uid';
matches the username value in your directory, that is to say, when I log into Roundcube, what I type in the username box corresponds with the field called 'uid' within the directory.
-ryan