Hi, I've configured:
modparam("auth_db", "calculate_ha1", 0) modparam("auth_db", "password_column", "ha1") # Default value modparam("auth_db", "password_column_2", "ha1b") # Default value
Twinkle softphone uses digest with "username=user@domain" so OpenSer verifies the hash with the "ha1b" column and it works well, it's authenticated.
But Linksys PAP2 uses digest with just "username=user" so OpenSer uses "ha1" column. I don't know why but it fails.
Of course both can authenticate perfectly using modparam("auth_db", "calculate_ha1", 1) modparam("auth_db", "password_column", "password")
Both users are generated with "openserctl add" command. Any idea why it fails with Linksys PAP2?
I use OpenSer 1.2.1 of Debian testing.
Thanks.