> But since we have an authentication
> mechanism with a smart card in place and the user name is handed on
> automatically to the Trac by the web server authentication plugin,

Oh, ok, I got it.

Maybe there's an easier way, but you could do the following: grab the
sqlite3 tool (assuming you have a recent SQLite database, which is the
default setting)

sqlite3 /path/to/tracenv/db/trac.db

insert into session (sid,authenticated,last_visit) values('team', 1,
strftime('%s','now'));
insert into session_attribute (sid,authenticated,name,value)
values('team', 1, 'email', '[EMAIL PROTECTED]');

.quit

HTH,
Manu

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to