Skip to content
Snippets Groups Projects
  1. Mar 29, 2021
  2. Mar 01, 2021
  3. Jan 28, 2021
  4. Jan 12, 2021
  5. Jan 08, 2021
  6. Dec 17, 2020
  7. Dec 15, 2020
  8. Dec 07, 2020
  9. Oct 09, 2020
    • MichaIng's avatar
      Fix Argon2 descriptions · ab323443
      MichaIng authored
      
      The threads option for the password_hash function does not define the maximum allowed number of CPU threads to be used by the hashing algorithm but the exact number of threads that is used.
      
      Similarly the memory_cost option for the password_hash function does not define the maximum allowed memory to be used by the hashing algorithm, but the exact amount of memory that is used by the hashing table. The minimum value is 8 KiB per thread.
      
      The time_cost option for the password_hash function does not define the allowed time in seconds, but the number of iterations for the hash function.
      
      If the minimum values are understood, the minimum values are used instead.
      
      Signed-off-by: default avatarMichaIng <micha@dietpi.com>
      ab323443
  10. Oct 04, 2020
  11. Sep 17, 2020
  12. Aug 19, 2020
  13. Aug 11, 2020
  14. Aug 06, 2020
  15. Jun 23, 2020
  16. May 04, 2020
  17. Apr 23, 2020
  18. Apr 14, 2020
  19. Apr 08, 2020
  20. Mar 31, 2020
  21. Mar 26, 2020
  22. Mar 06, 2020
  23. Feb 29, 2020
    • Mohammed Abdellatif's avatar
      Add support for GuzzleHTTP 'no' proxy · 98d64152
      Mohammed Abdellatif authored
      The custom config allows to setup a proxy URI that is passed to
      GuzzleHTTP client as request options. Guzzle has the option to receive
      an array of proxies for each URI scheme as well as 'no' key value pair
      to provide a list of host names that should not be proxied to.
      
      Guzzle would automatically populate these options with HTTPS_PROXY
      and NO_PROXY environment variables. However, when providing a 'proxy'
      request option, default values will be overriden and it is required to
      explicitly provide the 'no' value if needed.
      
      More info:
      http://docs.guzzlephp.org/en/stable/request-options.html#proxy
      
      
      
      This commit will add support for a new config 'proxyexclude', which
      takes a list of host names to be excluded.
      
      It will also provide 'proxy' request option as an array instead of a
      string to Guzzle, and populate 'http' and 'https' URI schemes with
      proxy URI, and 'no' with 'proxyexclude' list.
      
      Also, if no 'proxy' is configured, it will leave out 'proxy' request
      option, so it won't override Guzzle default values.
      
      Sample config file includes a hint on how to explicitly sync
      'proxyexclude' with NO_PROXY, and a note about default values.
      
      Signed-off-by: default avatarMohammed Abdellatif <m.latief@gmail.com>
      98d64152
  24. Feb 03, 2020
  25. Jan 22, 2020
  26. Jan 20, 2020
  27. Jan 16, 2020
  28. Jan 09, 2020
  29. Dec 16, 2019
  30. Nov 19, 2019
  31. Sep 26, 2019
  32. Aug 22, 2019
  33. Aug 19, 2019
  34. Jul 31, 2019
    • brad2014's avatar
      Move dav.invitation_link_recipients from getSystemValue to getAppValue · 8d8bcea1
      brad2014 authored
      
      Per @georgehrke change request for PR #12392, instead of setting
      dav.invitation_link_recipients in the system config.php file, we
      set it in the database table oc_appconfig.
      
      Furthermore, the value of the config variable is always a string:
      'yes' to include links in imip mail, 'no' to exclude them, or a
      comma-separated list of email addresses and/or domains for which
      they should be included.  If not specified in oc_appconfig, the
      default is 'yes'.
      
      Signed-off-by: default avatarbrad2014 <brad2014@users.noreply.github.com>
      8d8bcea1
  35. Jul 10, 2019
  36. Jun 12, 2019
  37. May 22, 2019
Loading