Re: Change email of users

2011-09-27 Thread Chris Clark

Martin wrote:

Hi, I'm using RB 1.6.1 with LDAP authentication.
I want to each user can modifiy his email address.
I tried add the users a group with auth|user|Can change user, but it 
still not working...



NOTE I'm not using LDAP with RB :-)

Usually when using LDAP it is a read only resource, updates are usually 
performed via ldap (or rather via the team/person administering LDAP). 
How are users in LDAP handled? Do you have a way for users to update 
their own details in LDAP?


My guess is you can't do this via RB.

If you're not using LDAP you can update the email addresses for the 
users via the management shell, I had to do this recently to automate a 
domain change for users in batch. I suspect this won't work for LDAP.


   $ cd /var/www/reviewboard/conf ; django-admin.py shell 
   --settings=settings_local --pythonpath=/var/www/reviewboard/conf


   from  reviewboard.accounts.models import User
   for x in User.objects.all():
   print x.email
   x.email  = gen_new_email(x.email)  # defined somewhere else.
   x.save()  # commit


--
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Change email of users

2011-09-27 Thread Martin
Thanks a lot Chris.
I am managing my own instance of ReviewBoard, but, the LDAP is under the 
client control.
So, the only chance to change the email is from the admin account.

I will tell you if  I can figure out an alternative way.

Thanks you very much.

Regards.

MArtin.




-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en