Displaying 1 result from an estimated 1 matches for "ldap_username_2006".
2006 May 24
1
Authentication between Instiki and Mailman Solved!
...y, we needed to authenticate against the cookie written by Ruby.
It turns out that you can write a cookie for the entire TLD of
*.example.com from Instiki (Rails). So, I changed the cookie writing
code in the wiki_controller to the following.
# app/controllers/wiki_controller.rb
cookies[''ldap_username_2006''] = {:value =>emailaddress,
:expires =>30.days.from_now,
:domain => ''.example.com''
}
cookies[''session_id''] = {:value =>session.session_id,
:expires...