On Wed, Sep 15, 2010 at 5:31 PM, mgl <[email protected]> wrote:

> Hello list,
>
> I've got a trac 0.11.1 setup running, with basic HTTP auth running
> against a
> Drupal database in PostgreSQL, with the following setup in my Apache
> configuration:
>
> <Location /trac/login>
>   AuthType Basic
>   AuthName "Trac Auth"
>   AuthBasicAuthoritative Off
>
>   Auth_PG_host localhost
>   Auth_PG_port 5432
>   Auth_PG_user drupal
>   Auth_PG_pwd ******
>   Auth_PG_database drupal
>   Auth_PG_pwd_table users
>   Auth_PG_uid_field name
>   Auth_PG_pwd_field pass
>   Auth_PG_pwd_whereclause  " and users.status = 1 and users.access <>
> 0"
>   AUTH_PG_hash_type MD5
>
>   Require valid-user
>   RewriteEngine On
>   RewriteCond %{HTTPS} off
>   RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
> </Location>
>
> This works perfectly fine, except that users do not have email
> addresses
> associated with them.  I want to be able to somehow pull the user's
> email
> addressed out of the database as well, so that things like ticket
> creation/updates can be configured to send emails.
>
> I looked at the AccountManagerPlugin, but I'm not sure that provides
> what I
> need to accomplish this.  Can anyone recommend something else that
> might do
> this?
>
Maybe this will be helpful?
http://www.pacopablo.com/blog/pacopablo/blog/set-assign-to-drop-down

>
> Sorry if this is the second time anyone is getting this - the fist
> copy of it seem to have disappeared.
>
> Thanks,
> Mike
>
> --
> You received this message because you are subscribed to the Google Groups
> "Trac Users" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<trac-users%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/trac-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.

Reply via email to