# Can Admins see all Deleted PMs?

**URL:** https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299
**Category:** Support
**Created:** [1월 29, 2018, 7:39오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299 "2018-01-29T19:39:49Z")
**Posts on this page:** 10
**Page:** 1

<div class="post-metadata">

### Author: ![Daquantics](https://avatars.discourse-cdn.com/v4/letter/d/ea5d25/32.png) [@Daquantics](https://meta.discourse.org/u/Daquantics)
#### Post date: [1월 29, 2018, 7:39오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/1 "2018-01-29T19:39:49Z")

</div>

I am admin for our community and I have a user complaining about harassment from another user. They said they received negative messages and PMs, but could no longer find the messages.. They copy-pasted a quote they said they found in an email notification.

At first, I thought this person (the complainant) was confusing email notifications about _public threads_ with private messages, but the interactions between the two users in public didn’t match the forwarded quote, and hadn’t been edited.

Moreover, the quotes didn’t appear in the “accused” user’s deleted posts, nor in their private messages (sent, archived, inbox).

So, I’m confused. **Is it possible for users to send Private Messages, then delete them in a way that Admins can no longer see them?**

I know there is no block function for the complainant to use, but before we have a word with the “accused” guy, I wanted to see the actual messages.. I’ve asked the complainant to forward me the emails, but some clarification would be great.

Thanks!

---

<div class="post-metadata">

### Author: ![jomaxro](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jomaxro/32/126216_2.png) [@jomaxro](https://meta.discourse.org/u/jomaxro)
#### Post date: [1월 29, 2018, 7:45오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/2 "2018-01-29T19:45:19Z")

</div>

> [@Daquantics](#):
>
> So, I’m confused. Is it possible for users to send Private Messages, then delete them in a way that Admins can no longer see them?

Not that I’m aware of. Admins can see everything on the site, even deleted content. Users cannot self-delete topics, only posts. PMs, while different from a public topic, are still inherently topics that users cannot self-delete. Check staff logs? Perhaps another staff member deleted them?

---

<div class="post-metadata">

### Author: ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)
#### Post date: [1월 29, 2018, 7:54오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/3 "2018-01-29T19:54:59Z")

</div>

I would use the [Data Explorer](https://meta.discourse.org/t/32566?silent=true) plugin. I don’t have time to work up a query right now, but it would involve the user(s), archetype and possibly date.

---

<div class="post-metadata">

### Author: ![Daquantics](https://avatars.discourse-cdn.com/v4/letter/d/ea5d25/32.png) [@Daquantics](https://meta.discourse.org/u/Daquantics)
#### Post date: [1월 29, 2018, 8:26오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/4 "2018-01-29T20:26:42Z")

</div>

Thanks for the quick replies, guys – very helpful.

I’m 99.9% sure no messages were deleted by other Admins. I will check with moderators but I don’t think they have this capability, right?

> [@Mittineague](#):
>
> I would use the [Data Explorer](https://meta.discourse.org/t/32566?silent=true) plugin. I don’t have time to work up a query right now, but it would involve the user(s), archetype and possibly date.

Just so I understand, this would show if the messages were deleted and by whom, correct?

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [1월 29, 2018, 8:44오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/5 "2018-01-29T20:44:14Z")

</div>

> [@Daquantics](#):
>
> Is it possible for users to send Private Messages, then delete them in a way that Admins can no longer see them?

Nope. It’s never possible for users to delete topics. Ever.

---

<div class="post-metadata">

### Author: ![Daquantics](https://avatars.discourse-cdn.com/v4/letter/d/ea5d25/32.png) [@Daquantics](https://meta.discourse.org/u/Daquantics)
#### Post date: [1월 29, 2018, 8:47오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/6 "2018-01-29T20:47:56Z")

</div>

Wow, this is such a mystery.

My gut is to trust the complainant, but he hasn’t forwarded me the email notifications these quotes supposedly came from.

I am _so_ very confused, but not because of you guys 🙂 you’ve all been super helpful, as usual. Much appreciated.

---

<div class="post-metadata">

### Author: ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)
#### Post date: [1월 30, 2018, 12:39오전 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/7 "2018-01-30T00:39:50Z")

</div>

On my localhost I had SpamGuy2 message TestUser3. (it wasn’t pretty)

There was no option for SpamGuy2 to delete the first post / the topic  
TestUser3 could have Flagged offensive posts, but for whatever reason didn’t  
SpamGuy2 edited one of his posts and deleted another  
TestUser3 could view edit revision history via the pencil

AdminGuy1 got the user id values (14, 58) from the Admin → Users URLs and hard coded them into this query

```plaintext
WITH user_one_topics AS (SELECT topic_users.topic_id
    FROM topic_users 
    WHERE topic_users.user_id = 14) 
, user_two_topics AS (SELECT topic_users.topic_id 
    FROM topic_users 
    WHERE topic_users.user_id = 58) 
SELECT topics.id AS topic_id
FROM topics, user_one_topics, user_two_topics
WHERE user_two_topics.topic_id = user_one_topics.topic_id 
AND topics.id = user_two_topics.topic_id 
AND topics.archetype LIKE 'private_message'

```

By clicking on the link in the query result he could see the message

\* note, this is before the “automatically deleted in 24 hours unless flagged” has elapsed.

---

<div class="post-metadata">

### Author: ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)
#### Post date: [1월 30, 2018, 1:06오전 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/8 "2018-01-30T01:06:51Z")

</div>

> [@Daquantics](#):
>
> email notifications

what outbound mail service do you use? with mandrill I can look up and see the notifications for the last 3 months from my discourse.

incidentally, there was a renaming at some point from “private messages” to “personal messages” to make clear that these are not actually private and secure messages and members shouldn’t treat them as such. Admins can see them all.

---

<div class="post-metadata">

### Author: ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)
#### Post date: [1월 31, 2018, 1:20오전 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/9 "2018-01-31T01:20:08Z")

</div>

> [@Mittineague](#):
>
> before the “automatically deleted in 24 hours unless flagged” has elapsed.

It has since been more than 24 hours. As Admin I see “VIEW 1 HIDDEN REPLY”

Clicking on that expands the post with the edit revision history icon available

 ![hidden-message-reply](https://global.discourse-cdn.com/meta/original/3X/f/6/f6774149ce1666efd0a64a66519f0201754a3cd0.png)

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [6월 8, 2024, 12:43오후 UTC](https://meta.discourse.org/t/can-admins-see-all-deleted-pms/79299/10 "2024-06-08T12:43:26Z")

</div>

이 주제는 2321일 후 자동으로 닫혔습니다. 더 이상 새로운 답변을 남길 수 없습니다.
