I am sorry to hear you have lost a member of your community. My condolences! I think you are pretty much on the right track.
There is a procedure for this in the legal empowerment network community:
change account status to tribute and change email address to community+username@foo.com
As needed/appropriate:
Write tribute forum post and tag it #tribute
Update profile page with tribute bio, linking to tribute forum post
Update network champion for organization if appropriate
Draft and send out tribute via mailer (if core member or close partner)
Post replies to discourse post as appropriate
Step 1 is dependent on a wordpress user meta field used to keep track of members. Members can be active, dormant, tribute, or unreachable. community@foo.com is an email address for the helpdesk used in case later there is something going on with the account that needS attention.
Sorry to hear that, Steve. Always a tough one for community managers.
Here are some things you could do:
If the platform allows, you can explore the option to ‘memorialize’ the profile with a suitable message.
If you can get in touch with the family (depending on the nature of the community), you could explore the option of giving them the user credentials to read & respond to messages in the memorial thread. This can be tricky because you want to ensure the right people have access. Trickier if the community member was using a work email for the community, in which case you might need the permission from their company.
Depending on the nature of the community, you can see if they can support the family in any way.
Lastly, if you have the access to a legal team, would be useful to get their advice and inputs on any initiatives you plan, especially around data privacy, security etc.
today we received info that a long standing member of a forum I host has died.
Here’s what I’ve done so far - very similar to the previous posts:
Create a ‘in memoriam’ group and add a flair to show on the deceased account.
anonymise the user email address
what has been suggested by the community is to lock all the user’s posts so they can’t be edited by anyone except ‘admin’ to create a lasting record of their community input.
Does anyone know a way to permanently lock all posts by a user?
Locking the posts like that is likely not necessary and adds UI noise to every post - plus, edit histories are public and such edits can be rolled back if needed.
Sadly, this topic has become relevant to me. I set the user’s title to “In Memoriam” and removed privileges and trust from the account to avoid it being a takeover target.
As an alternative to anonymizing the email address to make the purpose clearer, I still used the .invalid TLD to make the purpose clear and remove any email-based takeover vector. I don’t think I can do that from the UI (I might be mistaken) but succeeded in doing it from the Rail console:
u = User.find_by_username("deceasedUser")
UserEmail.where(user_id: u.id).each() do |e|
e.email = "deceasedUser@in-memoriam.invalid"
e.save!
end