Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions news/67.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Change security defaults to use UUID based login IDs and email-based login-names.
See https://github.com/plone/Products.CMFPlone/issues/3937 for details.
[jensens]
4 changes: 2 additions & 2 deletions src/plone/base/interfaces/controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ class ISecuritySchema(Interface):
"saving this form will fail. You can use the "
"@@migrate-to-emaillogin page to show the duplicates."
),
default=False,
default=True,
required=False,
)

Expand All @@ -1058,7 +1058,7 @@ class ISecuritySchema(Interface):
"login name, or when using the email address as login name we "
"generate a user id based on the fullname."
),
default=False,
default=True,
required=False,
)

Expand Down