config.xml 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <system>
  11. <media_storage_configuration>
  12. <allowed_resources>
  13. <captcha_folder>captcha</captcha_folder>
  14. </allowed_resources>
  15. </media_storage_configuration>
  16. </system>
  17. <admin>
  18. <captcha>
  19. <type>default</type>
  20. <enable>1</enable>
  21. <font>linlibertine</font>
  22. <mode>after_fail</mode>
  23. <forms>backend_forgotpassword,backend_login</forms>
  24. <failed_attempts_login>3</failed_attempts_login>
  25. <failed_attempts_ip>1000</failed_attempts_ip>
  26. <timeout>7</timeout>
  27. <length>4-5</length>
  28. <symbols>ABCDEFGHJKMnpqrstuvwxyz23456789</symbols>
  29. <case_sensitive>0</case_sensitive>
  30. <shown_to_logged_in_user />
  31. <always_for>
  32. <backend_forgotpassword>1</backend_forgotpassword>
  33. </always_for>
  34. </captcha>
  35. </admin>
  36. <customer>
  37. <captcha>
  38. <type>default</type>
  39. <enable>1</enable>
  40. <font>linlibertine</font>
  41. <mode>after_fail</mode>
  42. <forms>user_forgotpassword,user_login</forms>
  43. <failed_attempts_login>3</failed_attempts_login>
  44. <failed_attempts_ip>1000</failed_attempts_ip>
  45. <timeout>7</timeout>
  46. <length>4-5</length>
  47. <symbols>ABCDEFGHJKMnpqrstuvwxyz23456789</symbols>
  48. <case_sensitive>0</case_sensitive>
  49. <shown_to_logged_in_user>
  50. <contact_us>1</contact_us>
  51. <user_edit>1</user_edit>
  52. </shown_to_logged_in_user>
  53. <always_for>
  54. <user_create>1</user_create>
  55. <user_forgotpassword>1</user_forgotpassword>
  56. <contact_us>1</contact_us>
  57. </always_for>
  58. </captcha>
  59. </customer>
  60. <captcha translate="label">
  61. <fonts>
  62. <linlibertine>
  63. <label>LinLibertine</label>
  64. <path>LinLibertineFont/LinLibertine_Bd-2.8.1.ttf</path>
  65. </linlibertine>
  66. </fonts>
  67. <frontend>
  68. <areas>
  69. <user_create>
  70. <label>Create user</label>
  71. </user_create>
  72. <user_login>
  73. <label>Login</label>
  74. </user_login>
  75. <user_forgotpassword>
  76. <label>Forgot password</label>
  77. </user_forgotpassword>
  78. <contact_us>
  79. <label>Contact Us</label>
  80. </contact_us>
  81. <user_edit>
  82. <label>Change password</label>
  83. </user_edit>
  84. </areas>
  85. </frontend>
  86. <backend>
  87. <areas>
  88. <backend_login>
  89. <label>Admin Login</label>
  90. </backend_login>
  91. <backend_forgotpassword>
  92. <label>Admin Forgot Password</label>
  93. </backend_forgotpassword>
  94. </areas>
  95. </backend>
  96. </captcha>
  97. </default>
  98. </config>