config.xml 1.1 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
  9. <default>
  10. <admin>
  11. <security>
  12. <admin_account_sharing>0</admin_account_sharing>
  13. <password_reset_protection_type>1</password_reset_protection_type>
  14. <max_number_password_reset_requests>5</max_number_password_reset_requests>
  15. <min_time_between_password_reset_requests>10</min_time_between_password_reset_requests>
  16. </security>
  17. </admin>
  18. <customer>
  19. <password>
  20. <password_reset_protection_type>1</password_reset_protection_type>
  21. <max_number_password_reset_requests>5</max_number_password_reset_requests>
  22. <min_time_between_password_reset_requests>10</min_time_between_password_reset_requests>
  23. </password>
  24. </customer>
  25. </default>
  26. </config>