Changes between Initial Version and Version 1 of Ticket #10689


Ignore:
Timestamp:
Dec 9, 2012, 2:38:20 AM (11 years ago)
Author:
Steffen Hoffmann
Comment:

reformatting for readability

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10689

    • Property Keywords SessionStore added
  • Ticket #10689 – Description

    initial v1  
    1 As a test I set the password of my user (james) through the account settings on trac to 'helloworld'. In the database this set the password to :f4a19cee25aae3fe30d7a319fb7c5144
     1As a test I set the password of my user (james) through the account settings on trac to 'helloworld'. In the database this set the password to ':f4a19cee25aae3fe30d7a319fb7c5144'
    22
    33I can reproduce this hash like so:
     4{{{
    45echo -n james::helloworld | md5
    56f4a19cee25aae3fe30d7a319fb7c5144
    6 
     7}}}
    78However I thought trac would use the realm set in trac.ini to essentially do this:
     9{{{
    810echo -n james:TracDB:helloworld | md5
    9118c41eb73b4e4d22f173b2a302d52dfdd
    10 
     12}}}
    1113I'm obviously missing something, can anyone see what is it? Here are my account manager settings:
    12 
     14{{{
     15#!ini
    1316[account-manager]
    1417account_changes_notify_addresses =
     
    3639trac.web.auth.loginmodule = disabled
    3740tracopt.versioncontrol.git.* = enabled
     41}}}