Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Find all from_uri==myself tests and change them to is_from_local(). This function checks from domain part against domain table
  • Remove domain name from authentication challenge. Server challenges several domains so the client is responsible to chose the right one.
    No Format
    
        if (!proxy_authorize("", "subscriber")) {
                proxy_challenge("", "0");
                break;
        };
    
    
        if (!www_authorize("", "subscriber")) {
                www_challenge("", "0");
                break;
        };
    

Domain manipulation

  • serctl domain add domainname adds a new domain
  • serctl domain rm domainname removes domain

...