Show pageOld revisionsBacklinksExport to PDFBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Change Zulip users email address ====== <code bash> su zulip /home/zulip/deployments/current/manage.py shell </code> <code python> from zerver.models import UserProfile user = UserProfile.objects.get(email="userNN@example.com") user.email = "correct-email@example.com" user.delivery_email = "correct-email@example.com" user.save() </code> linux/misc/change_zulip_users_email.txt Last modified: 2024/11/21 14:09by tplecko