#16470 closed enhancement (fixed)
Require confirmation on email change
Reported by: | linuxologos | Owned by: | johnbillion |
---|---|---|---|
Milestone: | 4.9 | Priority: | normal |
Severity: | normal | Version: | 3.0 |
Component: | Users | Keywords: | |
Focuses: | administration | Cc: |
Description
When a new user is registered for a site, the e-mail he provides gets easily confirmed. But immediately after that, the new member can visit his profile and is able to change his e-mail to anything. Regardless of whether it is done on purpose or the user enters a wrong e-mail by mistake, the admin cannot contact the member, should he has to for any reason. The e-mail address is of great importance in such cases and I don't think that's a rare need!
I've had the impression that WP was not offering this feature, but then I realised that the code lies in core, though restricted to multisite installations. I find it quite difficult to understand why.
There might seem to be a relation to #13717, but what I propose hereby is just giving the admin of a single-site installation the option to activate e-mail change confirmation.
I think the implementation would only require a few changes in wp-admin/user-edit.php, making send_confirmation_on_profile_email() available outside of wp-admin/includes/ms.php and adding an option in Settings.
Why would we have to hack the core or consider a plugin for something almost already offered in core? That's why I describe the ticket as "enhancement", not "feature request".
Attachments (4)
Change History (30)
#3
@
7 years ago
- Resolution invalid deleted
- Status changed from closed to reopened
I know there's been no traction since this ticket was opened, but I think this would actually be a neat feature for single site installations.
Note that this functionality exists as described in the ticket when you're using Multisite. A change of either a user profile email address or the admin email address will trigger a confirmation email with a link which needs to be clicked in order to confirm the change.
I'll patch this up and then we can discuss.
#5
@
5 years ago
- Milestone Awaiting Review deleted
- Resolution set to duplicate
- Status changed from reopened to closed
Duplicate of #32430.
Since WordPress 4.3 email notifications will be sent out in the event that an email or password is changed.
#6
@
5 years ago
- Keywords 2nd-opinion added
- Milestone set to Awaiting Review
- Resolution duplicate deleted
- Status changed from closed to reopened
This isn't really a dupe of #32430. This ticket is concerned with the confirmation before changing the address, not the notification afterwards.
The confirmation request should also be sent when changing the site admin email, same as multisite.
One complication is sites that cannot send emails, which I presume is why this is limited to multisite currently (less likely to not have outgoing email working).
#7
@
5 years ago
Should we have a constant like WP_NO_EMAILS
or an option, so that when not true, such suggested featured could be implemented?
#8
@
4 years ago
- Keywords has-patch added; needs-patch removed
To make confirmation mandatory on email change on single site installs all I had to do was move a few functions from multi site specific files to generic files and change two checks on src/wp-admin/user-edit.php
. As far as I could test this patch is working but it is good if someone else could test it as well.
#9
@
3 years ago
- Focuses administration added
- Keywords 2nd-opinion removed
- Milestone changed from Awaiting Review to 4.8
- Owner set to johnbillion
- Status changed from reopened to reviewing
#10
@
3 years ago
One issue with requiring confirmation from the old email address is that sometimes people are changing it because it's incorrect or they no longer have access to it. But it's already this way on multisite so hmmm, I guess there aren't any problems there. However, I know I would have problems with it. I mean my users would have problems with it.
So it would be good to be able to not require the confirmation. I'm not sure what should be used to do this - a constant, settings option or simply a filter.
#11
@
3 years ago
The confirmation email is sent to the new address, not the old one. Its intent is to prevent a user from changing their email address to one which they have no access.
#12
@
3 years ago
Oh ha! Go me but I make this type of mistake often, I'm pretty used to it.
I'd still want to be able to disable the emails. I've disabled wp_new_user_notification()
so getting an email check here would feel strange. I think the main things are that I want control over the emails the site sends and not have any basic functionality rely on a person receiving an email and clicking a link in it because sometimes site emails get caught in spam or go undelivered for whatever reason.
But I can just remove the action, can't I? I'm sorry, I'm typing this without properly testing. I'll do some unit tests, feel free to ignore until then. :)
#13
@
3 years ago
Sorry I wasn't paying attention to the filename, can redo if you'd like.
So that was right, disabling it all was as easy as removing the action. I'm not sure how to test the final bit in src/wp-admin/user-edit.php
but have left a note it should be in there.
This would be a great plugin. Don't think it's needed in core.