Re: [galaxy-dev] use external authentication bare username as email address without appending any email domain

2011-06-10 Thread Leandro Hermida
Hi again, Commenting out the following if-then-else as Nate recommended works in remoteuser.py works to achieve this goal: #if not environ[ 'HTTP_REMOTE_USER' ].count( '@' ): #if self.maildomain is not None: #environ[ 'HTTP_REMOTE_USER' ] += '@' +

Re: [galaxy-dev] use external authentication bare username as email address without appending any email domain

2011-06-09 Thread Nate Coraor
Leandro Hermida wrote: Hi, Is it possible to tell Galaxy to use the bare username passed back by external authentication as the email address without appending any domain? It seems to complain if it isn't in email address format and asks you to set up a domain to append in universe.wsgi.

Re: [galaxy-dev] use external authentication bare username as email address without appending any email domain

2011-06-09 Thread Leandro Hermida
Hi Nate, Thank so much for the instructions :) , yes this is what I would want to do as Galaxy was adding an empty @ after the username. Yep in a Windows domain environment the bare username (sAMAccountName) is also an email nickname and works with the Exchange server when you use SMTP services.