关闭使用条款确认、密码提醒、新用户强制修改密码等功能

来源:互联网 发布:知己而知彼的博客 编辑:程序博客网 时间:2024/05/01 07:09

关闭使用条款确认:

在/portal-master/portal-impl/src/portal.properties配置文件中,有如下配置:

1
2
3
4
#
# Set this to true if all users are required to agree to the terms of use.
#
terms.of.use.required=true

修改为:

1
2
3
4
#
# Set this to true if all users are required to agree to the terms of use.
#
terms.of.use.required=false

关闭密码提醒功能:

在/portal-master/portal-impl/src/portal.properties配置文件中,有如下配置:

1
2
3
4
5
#
# Set this to true to enable reminder queries that are used to help reset a
# user's password.
#
users.reminder.queries.enabled=true

修改为:

1
2
3
4
5
#
# Set this to true to enable reminder queries that are used to help reset a
# user's password.
#
users.reminder.queries.enabled=false

关闭首次登录强制修改密码功能:

在/portal-master/portal-impl/src/portal.properties配置文件中,有如下配置:

1
passwords.default.policy.change.required=true

修改为:

1
passwords.default.policy.change.required=false