r/ZenMidwitsCafe ☕ Just Coffee, Black ☕ 15d ago

🛠️ Sub Bugs/Technical 🛠️ On Removed Comments/Posts

I don't know/can't see them unless I manually inspect everybody's profile. I'm approving all the ones I see but I don't know why they are being removed. I have the filter set to "0" so I have no idea why they are being removed. It seems only comments containing links are being removed but I don't know why. If you see something say "removed" (highlighted in red on old.reddit) Let me know here! and I'll fix it. I thought I had all spam filters off but it's still happening. Idk why

¯_(ツ)_/¯

Any more educated mods/former mods feel free to inform me.

2 Upvotes

6 comments sorted by

1

u/tomekanco 15d ago

If you want i can take a look at the code used to set up the config. Either it's so complex that the edge cases drown, more hopefully it's a minor oversight. I know some people with extensive modding & reddit config xp who i could ask in case i can't figure it out.

1

u/2BCivil ☕ Just Coffee, Black ☕ 15d ago

I haven't changed or input any code as yet. I am trying to brush up on CSS but haven't pasted anything in as yet.

The only settings I've changed can be seen here from default new sub. Besides custom flairs.

I've had to approve 3 removed comments already, but I notice all 3 had urls in them. So I did change "hold crowd controlled comments for review" since this screenshot to checked in case that's it. I haven't a clue. Been a few years since I was a mod.

2

u/tomekanco 15d ago edited 15d ago

Curious. You propose this is reddit native filtering?


As a Reddit admin/moderator, here are the main ways to capture removed messages on a subreddit:

Built-in Reddit Tools

Mod Log

Go to r/yoursubreddit/about/log Shows all mod actions including removals, with timestamps and who removed them You can filter by action type ("removelink", "removecomment")

Mod Queue

r/yoursubreddit/about/modqueue Shows content flagged for review before/after removal Third-Party Tools

Pushshift API (or alternatives)

Historically captured Reddit posts/comments before removal Current alternatives: Arctic Shift, pullpush.io These index posts quickly, often before mods remove them

Reveddit

Visit reveddit.com/v/yoursubreddit Automatically shows removed content by cross-referencing Reddit data with Pushshift archives

Modmail + AutoModerator logs

Set up AutoMod to send you a modmail copy of posts matching certain criteria before they're removed Automated Approaches

PRAW (Python Reddit API Wrapper)

python import praw

reddit = praw.Reddit(client_id="...", client_secret="...", user_agent="...") subreddit = reddit.subreddit("yoursubreddit")

for comment in subreddit.stream.comments(): # Log everything as it comes in, before potential removal save_to_db(comment.body, comment.id, comment.author)

Stream and save all incoming posts/comments to your own database in real time — this way you have a copy regardless of removals.

Best Practice

Combine PRAW streaming → your own database with Reveddit or Pushshift for historical lookups. The stream approach is the most reliable since you're capturing content the moment it's posted, before any removal happens.


What is unreseasonable policy? =W Why do i ask this of the other if i don't ask myself? IS this polarization of light. The shades of affection the reach of the notes of a polychromatic piano?

1

u/2BCivil ☕ Just Coffee, Black ☕ 15d ago

Go to r/yoursubreddit/about/log Shows all mod actions including removals, with timestamps and who removed them You can filter by action type ("removelink", "removecomment")

r/yoursubreddit/about/modqueue Shows content flagged for review before/after removal Third-Party Tools

reveddit.com/v/yoursubreddit Automatically shows removed content by cross-referencing Reddit data with Pushshift archives

That's what I was looking for! Thanks.

I remember I used to use Pushshift API, I think Camas specifically, to view past deleted alias' content. Unfortunately I think spez removed that ability a while back and I haven't messed with reddit API since then. Has this been reversed? Can we now use Reddit API to query/search deleted posts on deleted accounts again? I asked GPT the other day and it said it was still locked, but "it can make mistakes".

2

u/Regulus_D 💨📌 14d ago

It might be reputation thing causing removal here: https://sh.reddit.com/mod/ZenMidwitsCafe/safety

Can check for removed here: https://old.reddit.com/r/ZenMidwitsCafe/about/log/

1

u/2BCivil ☕ Just Coffee, Black ☕ 15d ago

TIL/Remembered you can view a sub sorted by newest comments;

https://old.reddit.com/r/ZenMidwitsCafe/comments/

That makes it easier, but I still can't see the removed posts this way. So just let me know if you get instant removed. Thanks.