]> git.mxchange.org Git - addressbook-war.git/blobdiff - web/WEB-INF/web.xml
Please cherry-pick:
[addressbook-war.git] / web / WEB-INF / web.xml
index e9fee727aded58206c2bf6ed8b7dc9f4f0bfd226..1cec71b5cc88609300947723a023a60767c4c96c 100644 (file)
@@ -4,7 +4,7 @@
     <display-name>Addressbook Application v1.0</display-name>
     <context-param>
         <description>Whether the multi-page registration page or a single registration page is active</description>
-        <param-name>is_feature_user_register_multiple_page</param-name>
+        <param-name>is_feature_user_register_multiple_page_enabled</param-name>
         <param-value>true</param-value>
     </context-param>
     <context-param>
@@ -19,8 +19,8 @@
     </context-param>
     <context-param>
         <description>Whether "resend confirmation link" is enabled.</description>
-        <param-name>is_feature_user_resend_confirm_link_enabled</param-name>
-        <param-value>false</param-value>
+        <param-name>is_feature_user_resend_confirmation_link_enabled</param-name>
+        <param-value>true</param-value>
     </context-param>
     <context-param>
         <description>Whether default timezon is set from system's timezone</description>
         <param-name>is_feature_privacy_enabled</param-name>
         <param-value>true</param-value>
     </context-param>
+    <context-param>
+        <description>Feature: Users must change password after login (with current password). Administrators can enforce this.</description>
+        <param-name>is_feature_user_must_change_password_enabled</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>Whether users are allowed to change their login password.</description>
+        <param-name>is_feature_change_user_password_enabled</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>Maximum passwords that must be different.</description>
+        <param-name>max_user_password_history</param-name>
+        <param-value>5</param-value>
+    </context-param>
+    <context-param>
+        <param-name>javax.faces.DATETIMECONVERTER_DEFAULT_TIMEZONE_IS_SYSTEM_TIMEZONE</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>Whether debugging of registration form is enabled.</description>
+        <param-name>is_debug_register_enabled</param-name>
+        <param-value>false</param-value>
+    </context-param>
+    <context-param>
+        <description>Whether users can change their email address.</description>
+        <param-name>is_feature_user_must_change_email_address_enabled</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>Minimum password score (default 50 may be to low)</description>
+        <param-name>min_user_password_score</param-name>
+        <param-value>50</param-value>
+    </context-param>
+    <context-param>
+        <description>Whether user registration page is in index or own page.</description>
+        <param-name>is_feature_user_registration_in_index_enabled</param-name>
+        <param-value>false</param-value>
+    </context-param>
     <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>