# Requesting Different Login Access

**URL:** https://meta.discourse.org/t/requesting-different-login-access/311429
**Category:** Support
**Created:** [June 10, 2024, 5:29pm UTC](https://meta.discourse.org/t/requesting-different-login-access/311429 "2024-06-10T17:29:26Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![wendellverli](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/wendellverli/32/280396_2.png) [@wendellverli](https://meta.discourse.org/u/wendellverli)
#### Post date: [June 10, 2024, 5:29pm UTC](https://meta.discourse.org/t/requesting-different-login-access/311429/1 "2024-06-10T17:29:26Z")

</div>

**Currently my discourse forum is:**  
discourse.fotografos.online

However I’m having issues login in and / or reseting password since SendGrid blocked my email for some odd reason.

My email (same as the admin account) works perfectly otherwise:  
equipe@fotografos.online

I’m the ADMIN and have another moderator as well - I need to regain access and **change my admin email address** to another one I have access to and I can then **reset my pass - to regain** access to my admin account…

Can someone help?

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [June 10, 2024, 6:01pm UTC](https://meta.discourse.org/t/requesting-different-login-access/311429/2 "2024-06-10T18:01:51Z")

</div>

> [@wendellverli](#):
>
> discourse.fotografos.online

You’re self-hosted, so you just need to do something like this:

```plaintext
cd /var/discourse
./launcher enter app
rake admin:create

```

You can enter your email address there and change your password (or any user’s password. It doesn’t have to be an admin).

Changing the Email address is harder.

Something like

```plaintext
./launcher enter app
rails c
u=User.find_by_email('old@address.com')
ue=UserEmail.find_by(user_id: u.id)
ue.email_addrress='new@fun.com'
ue.save

```

Might work, but that’s more of a hint than a solution.

Easierr would be to create another admin account, log in with it, remove admin privs from that account, change the email address, then make it admin again.

---

<div class="post-metadata">

### Author: ![omarfilip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/omarfilip/32/208019_2.png) [@omarfilip](https://meta.discourse.org/u/omarfilip)
#### Post date: [June 10, 2024, 8:19pm UTC](https://meta.discourse.org/t/requesting-different-login-access/311429/3 "2024-06-10T20:19:18Z")

</div>

I’m not sure if Sendgrid has this option, but in Mailgun’s admin dashboard you can find the addresses that are blocked/suppressed and remove them. This typically happens when a user accidentally marks email from Discourse as spam.

Perhaps this:

> **[list-unsubscribe - Suppressions | SendGrid Docs | Twilio](https://www.twilio.com/docs/sendgrid/ui/sending-email/index-suppressions#twilio-docs-content-area)**
>
> The decision to stop sending email messages to a specific recipient can come from two points in the email delivery chain. What one calls the decision depends upon who makes it. | Twilio SendGrid suppresses emails that your recipients unsubscribe from...
