It’s definitely not. @staff please move this into its own topic, or into the Staightforward direct-delivery one.
No. There are basically two ways you could fix this.
Forwarding
You could have a separate email service forward into your Discourse mail receiver, so that nobody ever sees your forum’s IP address directly and it doesn’t matter if it’s on a DNSBL or not.
For example, https://forum.bors.tech uses Mailgun. There is a mail-receiver running on there; port 25 is even open to the public. But my reply-to address is set to reply+%{reply_key}@bors.tech, with no forum. in the domain name, and Mailgun has a route that forwards reply+.*@bors.tech to reply@forum.bors.tech.
@LeoMcA thank you so much for the work on this change. It made possible for my company to integrate our products with the community without having to deal with merging or deleting stuff.
Does remove the email stated in the rails console or the entire user? My goal is to only remove the secondary email associated with the user. Thanks in advance.
This was very useful!
I needed to replace all staged users email addresses with another domain/tld, but keep the originals as secondary email.
This allows mbox importing script to recognize them from the secondary email but discourse sends notifications on the primary email.
Hope someone will find it useful.
UserEmail.where("email LIKE '%@domain.tld'").where(primary: true).find_each do |ue|
new_mail = ue.email.gsub(/@.+$/, '@newdomain.tld')
next if UserEmail.exists?(email: new_mail)
UserEmail.where(email: ue.email).update_all(email: new_mail)
UserEmail.create!(user_id: ue.user_id, email: ue.email)
end
Much as I like the idea of the secondary email address, I am finding it to be a burden when managing my community and wishing there were a way to disable it.
am I right that to wipe out all secondary emails I would use the following?
It is a burden for a few circumstances that keep coming up that take up too much time and brain space to figure out:
we invite people to join using one address, creating a staged user account, but then they actually end up joining using another email address. Or we find they already had another account using a different email.
we invite people with dormant accounts to come back, and instead of logging in with their existing account they create a new account with another email address
In these cases, we merge the accounts and then change the email address to the newer one that the people want to use. We use WordPress SSO and change the email address in WordPress, which then updates it in discourse. If the email address we want to change it to is already contained in the secondary email field in discourse for the user, then we have to delete it first otherwise this step fails silently.
We have also had cases of people coming to create a new account after we merged their user accounts, using the secondary email address. This does not work with our current SSO setup and fails silently.
So… there are some technical challenges to work out, and I’m not sure it’s a priority on your end and I know it’s a backburner priority on my end to improve how wordpress and discourse play with each other. I know I am also pushing the envelope in how staged users are intended to be used.
In the meantime I’d be happy if I could just disable the functionality. If it’s not possible, I will just get in the habit of also clearing the secondary email every time I merge users.
Sorry if I’m in the wrong place, but I’m trying to add a secondary e-mail address to my existing account and can’t find a way to do it in the web interface. The best thing I find is a forum with a bunch of Ruby code and what even is happening.
Sorry to revive an old post, but haven’t found anything else relevant.
I merged a user’s new account to their old account because their old account’s email address is no longer valid.
Their secondary email is now the valid email address but I need to change it to the primary so they can get email and reset password, etc.
I’ve tried deleting the secondary email and using the create command in rails c to re-add that valid email as their primary. I think I’m missing a step - do I need to save in rails c after I’m done?
After a successful delete/create command, I just put in exit, exit again and then launcher restart app.