Skip to content
Snippets Groups Projects
  1. Dec 10, 2019
  2. Dec 05, 2019
  3. Nov 27, 2019
  4. Oct 24, 2019
  5. Oct 23, 2019
  6. Oct 22, 2019
  7. Aug 30, 2019
  8. Jul 30, 2019
    • Richard van der Hoff's avatar
      Remove non-functional 'expire_access_token' setting (#5782) · 8c97f641
      Richard van der Hoff authored
      The `expire_access_token` didn't do what it sounded like it should do. What it
      actually did was make Synapse enforce the 'time' caveat on macaroons used as
      access tokens, but since our access token macaroons never contained such a
      caveat, it was always a no-op.
      
      (The code to add 'time' caveats was removed back in v0.18.5, in #1656)
      Unverified
      8c97f641
  9. Jul 24, 2019
  10. Jul 23, 2019
  11. Jul 05, 2019
    • Richard van der Hoff's avatar
      Fixes to the federation rate limiter (#5621) · 9481707a
      Richard van der Hoff authored
      - Put the default window_size back to 1000ms (broken by #5181)
      - Make the `rc_federation` config actually do something
      - fix an off-by-one error in the 'concurrent' limit
      - Avoid creating an unused `_PerHostRatelimiter` object for every single
        incoming request
      Unverified
      9481707a
  12. Jul 03, 2019
  13. Jun 24, 2019
  14. Jun 20, 2019
  15. Jun 06, 2019
  16. May 15, 2019
  17. May 14, 2019
  18. May 13, 2019
  19. May 10, 2019
  20. Apr 01, 2019
  21. Mar 25, 2019
  22. Mar 20, 2019
  23. Mar 19, 2019
    • Richard van der Hoff's avatar
      Use a regular HomeServerConfig object for unit tests · 13bc1e07
      Richard van der Hoff authored
      Rather than using a Mock for the homeserver config, use a genuine
      HomeServerConfig object. This makes for a more realistic test, and means that
      we don't have to keep remembering to add things to the mock config every time
      we add a new config setting.
      13bc1e07
  24. Mar 18, 2019
  25. Mar 15, 2019
  26. Mar 11, 2019
  27. Mar 08, 2019
  28. Mar 05, 2019
    • Brendan Abolivier's avatar
      Add rate-limiting on registration (#4735) · a4c3a361
      Brendan Abolivier authored
      
      * Rate-limiting for registration
      
      * Add unit test for registration rate limiting
      
      * Add config parameters for rate limiting on auth endpoints
      
      * Doc
      
      * Fix doc of rate limiting function
      
      Co-Authored-By: default avatarbabolivier <contact@brendanabolivier.com>
      
      * Incorporate review
      
      * Fix config parsing
      
      * Fix linting errors
      
      * Set default config for auth rate limiting
      
      * Fix tests
      
      * Add changelog
      
      * Advance reactor instead of mocked clock
      
      * Move parameters to registration specific config and give them more sensible default values
      
      * Remove unused config options
      
      * Don't mock the rate limiter un MAU tests
      
      * Rename _register_with_store into register_with_store
      
      * Make CI happy
      
      * Remove unused import
      
      * Update sample config
      
      * Fix ratelimiting test for py2
      
      * Add non-guest test
      Unverified
      a4c3a361
  29. Mar 04, 2019
  30. Feb 27, 2019
  31. Jan 25, 2019
  32. Jan 24, 2019
  33. Jan 22, 2019
  34. Dec 24, 2018
  35. Dec 14, 2018
    • Neil Johnson's avatar
      create support user (#4141) · d2f7c4e6
      Neil Johnson authored
      Allow for the creation of a support user.
      
      A support user can access the server, join rooms, interact with other users, but does not appear in the user directory nor does it contribute to monthly active user limits.
      Unverified
      d2f7c4e6
  36. Dec 07, 2018
    • Richard van der Hoff's avatar
      Implement SAML2 authentication (#4267) · c7401a69
      Richard van der Hoff authored
      This implements both a SAML2 metadata endpoint (at
      `/_matrix/saml2/metadata.xml`), and a SAML2 response receiver (at
      `/_matrix/saml2/authn_response`). If the SAML2 response matches what's been
      configured, we complete the SSO login flow by redirecting to the client url
      (aka `RelayState` in SAML2 jargon) with a login token.
      
      What we don't yet have is anything to build a SAML2 request and redirect the
      user to the identity provider. That is left as an exercise for the reader.
      Unverified
      c7401a69
  37. Nov 15, 2018
Loading