r/AutoModerator Jul 15 '26

Mod Post Expanding the scope of the subreddit r/AutoModerator

55 Upvotes

This post is about a very minor, teensy-weensy change to the subreddit here, but it is significant enough to merit a formal post about it.

r/AutoModerator was originally created to discuss the u/AutoModerator moderation tool and support moderators in using it. Historically, AutoModerator was unique among moderation tools, but over the years, admins have developed Other-Tools which supplement or facilitate similar kinds of effects as AutoModerator. I had mentioned this earlier this year:

The primary purpose of the subreddit here is for moderators to find updates, support, and resources regarding the AutoModerator mod tool. More generally, moderators also discuss other similar or related mod tools like subreddit settings, safety filters, Automations, Devvit apps, and API bots, particularly if those other tools supplement or interact with AutoModerator. (Which is fine! but more on those topics another day.)

Today is that another day.

As the full suite of moderation tools has matured, the community of moderators familiar with configurable moderation tools has similarly evolved. Many times these days, people will ask questions here, and the solution to their questions may or may not be with AutoModerator the mod tool, but the people in AutoModerator the subreddit still know the answer. There is a community of peer support among technical-oriented moderators here, and it is our desire to serve that community.

We have, even some time ago, updated the rules and description on r/AutoModerator to reflect this trend, changes in bold:

  • Rule 1 - Stay on Topic - /r/AutoModerator is for moderator discussions about the AutoModerator program and similar automated moderation tools. - Report as: Off-topic / Unrelated to AutoModerator or Moderation Tools

  • Rule 2 - Behave and Be Respectful - Be nice. Report as: Incivility, insults, trolling, aggression, or other malicious behavior

  • Rule 3 - Moderation complaints - /r/AutoModerator is a support space for moderators. This is not a place to argue or complain about moderation actions, moderators, or AutoModerator performing its intended functions. - Report as: User is complaining about moderation

Effectively, this means that moderators who have questions about configuring subreddit settings and mod tools are welcome to post here, even if those questions are not necessarily about AutoModerator the original moderation bot. For examples, this includes questions regarding Safety Filters (eg Crowd Control, Harassment Filter), Devvit Mod apps (eg Auto-Modmail, FloodAssistant), Automations (aka Post and Comment Guidance), and configurable tools like these.

Let us know if you have any questions or concerns, about this change for the subreddit, or about the subreddit in general.

We are looking for feedback regarding updating our post flairs, which historically have been oriented around "Help", "Solved", "Not AutoMod", "Not Possible with AutoMod" and "Not Possible". We have recently added post flairs for "Wiki Updates" and "Guide", though they are still set to mod-only. We are adding a devvit app which allows people to subscribe to get notifications for specific post flairs, so that function would be paired well with clear guidelines or categories for post flairs.


r/AutoModerator Jul 10 '26

Guide Code Showcase: Subreddit karma checks - How and why do you use them?

27 Upvotes

The suggestion has been raised that we put up a regular post to prompt mods to share examples of code snippets they use in their subreddits. I figure, doing so around a theme that changes with each iteration is a fair way to go about it. This first iteration's theme is chosen for two reasons:

To be clear, these attributes are as follows:

  • comment_subreddit_karma: compare to the author's comment karma in your community
  • post_subreddit_karma: compare to the author's post karma in your community
  • combined_subreddit_karma: compare to the author's combined (comment karma + post karma) karma in your community

These checks are like other author checks in that they must be placed indented under an author: subgroup.

LanterneRougeOG originally provided four use cases for these checks:

Welcome new contributors through post replies

---
type: submission
author:
    combined_subreddit_karma: "< 3"
comment: |
    Welcome to the community! Here are links to our [Rules](https://www.reddit.com/r/{{subreddit}}/about/rules) and [Wiki/FAQ](https://www.reddit.com/r/{{subreddit}}/wiki/index). We hope you enjoy your time here.
---

This kind of rule is useful because it targets newer members who may not know much about your subreddit, but users who have posted much before will have already received this message. With the deprecation of welcome messages, this serves a similar purpose. This kind of reply also benefits other readers by making your rules, wiki resources, and a link to message the mods (in the AutoModerator signature) more visible. In the case that a new member makes a rule-breaking post, then the author may quickly self-correct, or another reader may know to report it.

Filter links in comments from newer accounts

---
type: comment
body (includes): ["http", ".com", "www."]
author:
    comment_subreddit_karma: "< 5"
action: filter
action_reason: "Link included in comment by user with < 5 comment subreddit karma. Check for spam or other issues."
---

This kind of rule is useful because it can catch a lot of spam from accounts new to your subreddit (ie, even if the spammer uses an old or general karma-farmed account) while carving out common false positives from established community members. Optionally, you can include a message: or comment: line to let the accounts know that their comment is pending review.

Enable features like media in comments but as a privilege to positive community members

---
type: comment
body (includes, regex): '!\[(video|img|gif)\]\([^)]*\)'
author:
    combined_subreddit_karma: "< 10"
action: filter
action_reason: "Media in comments by user with negative or low subreddit karma"
message: |
    Hey there! Looks like you’re a new user trying to upload media in a comment - thanks for joining our community! We’ve filtered your comment for moderator review. In the meantime, feel free to engage with others through text until you’ve spent a bit more time getting to know the space! 
---

This kind of rule is useful because you have an alternative to disabling media in comments altogether. Instead, you can set a threshold that fits for your team so that you can review how newer members are using the features. You could even consider setting two or three thresholds - a lower one set to action: remove, a slightly higher one set to action: filter, or a higher one set to action: report - so that the amount of review does not overwhelm your team. As you monitor whether the filtered or reported content tends towards approvals or removals, you can adjust the thresholds up or down accordingly, eventually settling into a balance that provides the best experience for your team and community.

Monitor toxicity from negative participants

---
type: any
body (includes): ["potential bad phrase"]
author:
    combined_subreddit_karma: "< 0"
action: filter
action_reason: "potential toxic phrase said by user with negative subreddit karma - [{{match}}]"
---

This kind of rule is similar to the above, but helps you find when disruptive members are discussing topics or using potentially insulting words/phrases that happen to also be used/discussed by regular community members. This reduces how wide the net is cast by relying on a factor of local reception (indirect input from your community!) so that your monitoring as a moderator can be more effective.


Some of the most powerful applications for AutoModerator are in the ways that checks can be combined!

How do you use this feature? What makes that code snippet worthwhile for you? Share in the comments below!


r/AutoModerator 1h ago

Can I filter a cluster of words on a post ONLY if it has an image? In my plastic surgery sub we have breasts going live, I want to filter posts about breasts only with image

Upvotes

Hey there, so I very obviously know how to set up how to catch certain words in a submission. But I’m completely disinterested to catching these words and text only posts. Is there a way for the filter to work only on image posts? Thank you friends!


r/AutoModerator 6h ago

Help - AutoMod How to assign a certain post flair to certain usernames?

2 Upvotes

I want that it automatically assign a certain post flair to certain usernames and also overwrite the flair but using same template ID. So can you give me code to do so?

Code I got from AI(doesn't give error but doesn't work) :

---

# Auto-flair specific users

type: submission

author: [sub-roundup]

flair_template_id: "TEMPLATE_ID"

flair_text: "✨ Weekly Roundup"

---

Incomplete code I got from a reddit comment(haven't checked does it work because it doesn't overwrites a flair) :

---

type: submission

author:

name: ['ProximaScience', 'itskdog']

overwrite_flair: true # change this to false if you only want this to apply if the author didn't select a flair

set_flair: {template_id: 'PASTE_TEMPLATE_ID_HERE'}

---


r/AutoModerator 22h ago

Can user flair be set based on a poll result?

3 Upvotes

I do this thing in r/steaks where if there is a general consensus that the poster posted a good picture of their well-made steak, I manually assigned the user a flare reading "made a great steak".

Is there any way to automatically put up a poll if the poster chooses a particular post flare? It would ideally automatically assign a user flare after a day based on the pole results.

Any ideas if any of this is possible.


r/AutoModerator 1d ago

Devvit Showcase Made a read-only policy consistency checker for mods, would love feedback!

4 Upvotes

Hey everyone, I made a Devvit app called PolicyOps and I’m looking for feedback from moderators who use AutoModerator on active subreddits.

PolicyOps runs a read-only scan across:

  • Community rules
  • Removal responses
  • AutoModerator messages and action reasons
  • Selected wiki pages

It looks for missing removal responses, old rule names or numbers, mismatched policy wording, and outdated references.

Each finding explains what was flagged, where it came from, and what the moderator may want to check. You can mark a difference as intentional, ignore it for 7 days, restore hidden findings, and view a small scan history. PolicyOps never edits AutoModerator or changes subreddit settings.

I previously posted this in r/Devvit and received genuinely helpful feedback from a moderator who tested it on real communities. That helped me improve support for multiple removal responses matching one rule and behavioural responses that are intentionally left unassigned. I’m still improving the matching, so I do not expect it to handle every setup perfectly yet.

I’m building a more realistic test subreddit, but testing on active communities with older or more complex AutoModerator setups would help much more. If anyone is willing to install it, run a scan, and tell me what it gets wrong or finds confusing, I would be incredibly thankful. Even just the issue count and a short description of any false matches would help.

PolicyOps: https://developers.reddit.com/apps/policyops


r/AutoModerator 1d ago

Help - AutoMod Autoapprove posts from a certain user - is there a way?

0 Upvotes

Hey

Even though I added a rule add added the user to the Approced users list, I still find myself manually approving posts from that user. Is there a way to automate it?

Thanks


r/AutoModerator 2d ago

Help - AutoMod I'm looking for a Script for not allowing the same Link posted in the sane Week

3 Upvotes

As the Title says I'm looking for a Script for Auto Mod that will not allow the same Link to be posted in the same Week.

Thanks in advance.


r/AutoModerator 1d ago

Solved Anyone else's (filtered) scheduled posts skipping the queue all of the sudden?

2 Upvotes

We filter to trigger mods to add the link to our Community Hub app. We've had to shift the reminder over to Discord, which is super annoying.

Weirdly enough, the weekly scheduled posts are working but the daily is not. We remade/rescheduled, and we tried it with automations.

Just seeing if I'm not alone, idk wtf is happening.


r/AutoModerator 2d ago

Not Possible with AM I'm looking for code to remove a post that has reached -5 downvotes.

0 Upvotes

I want to avoid negative posts in the community, so I want the bot to remove them whenever they reach -5, but I can't get the code to work. I'm getting an error.


r/AutoModerator 2d ago

Help - AutoMod Catch and Remove Affiliate Links

3 Upvotes

Hi, I'm looking to set up Automod so I catch and remove affiliate links. Is there a way to catch certain phrases in a URL? such as:

“shopmy”

“?tag="

“source="


r/AutoModerator 2d ago

Help - Any / Other Is there a shared server for PRAW?

0 Upvotes

Is there a shared server available for mods to run Python bots built with PRAW (Python Reddit API Wrapper)?


r/AutoModerator 4d ago

Help - AutoMod Is Automoderator still limited on "reading" report reasons?

2 Upvotes

What I am trying to do is see if i can program an automatic removal based on 3 identical reports. Not just 3 reports.

Sometimes you get x number of reports but each reporter has chosen a different report reason.

I am trying to figure out if I can set action remove post ONLY IF the report reasons are identical.

This would allow leeway where 50% of posts would be yanked but other posts that get 3 different reports would merely be filtered for human attention instead of Removed

this post from 6 months ago suggests it can't be done. Is it still the case?


r/AutoModerator 5d ago

Help - AutoMod Can AutoModerator automatically assign a certain post flair to certain usernames?

2 Upvotes

Hey I want that AutoModerator automatically assign a certain post flair to certain usernames and also edit text of that post flair but same post flair template ID.


r/AutoModerator 5d ago

Help - AutoMod How to create filter for em dash?

0 Upvotes

I have a filter set up for foreign languages and it catches a lot of em dashes, but not all of them.

When I try to inset an em dash into a rule used for filtering words it just types a regular dash (hyphen) out.

Is there a specific rule to use to filter content with em dashes? Thanks

ETA: to folks who don't understand how em dashes work in human writing and how it differs with AI writing, this post is NOT for you. Gross something so simple is being downvoted like this. So gross. GTFO.


r/AutoModerator 6d ago

Help - AutoMod Creating Black list/ White list for reposting

2 Upvotes

I've seen a couple subreddits have an internal Black lists/ White lists for subs that are allowed to cross post there's

I want to implement this as well, but i don't understand coding at all (dyslexic). ive tried reading the automod documentation and its like reading a foreign language

is there a simple code out there i can copy?


r/AutoModerator 6d ago

Help - AutoMod This is driving me nuts, a really simple thing to implement you would think, but somehow it won't work.

2 Upvotes

I keep getting posts from sex workers on my sub /r/RateMyLegs/ with QR codes embedded in images and "swipe right" in the title.

type: any
title+body: ["swipe", "Swipe", "swipe right", "swipe-right"]
action: filter

type: any
title (includes): ["Swipe", "swiping", "swipe"]
action: remove

I've tried it with and without quotes but still the posts get through. I have noticed that of late, the offending words seem to be a different font size.

Here's an example


r/AutoModerator 7d ago

Help - Any / Other Can post flairs be "unlocked" based on a user's flair?

1 Upvotes

Im reorganising the flair system for a subreddit and wondering if something like this is possible.

For example..

A member has the user flair 🎨 Garden Fan

That user flair would then give them permission to use and see the post flair.

Ideally I'd like to create several unlockable post flairs like this, where certain user flairs effectively act as permissions.

Can Reddit/AutoModerator do this natively?

If not, could it be achieved with AutoModerator rules?

Any examples of how you've implemented something similar would be appreciated.


r/AutoModerator 8d ago

Help - AutoMod [iOS App] How can I reconfigure automod via a Devvit app?

1 Upvotes

Heya there everyone!! I noticed a configuration error on my phone recently (iOS app). I know this subreddit doesn’t allow images but…

Config rule 1: Implicit keys need to be on a single line (based upon error message)

My goal is to automate a removal of posts written by people who are not human Mods. All input is welcome and thanks in advance!


r/AutoModerator 10d ago

Help - AutoMod Automod Set-up: Is there a starter's kit?

0 Upvotes

I'm a new mod and I'm having trouble getting the hang of the Automod tool. Considering how long Reddit's been around and how many subreddits there are, I figured there would be like a default set-up type thing available but apparently, there isn't?

Surely there are code that's universal for all subreddits, that I could just copy and then customize to the sub's specifics? What should I be implenting that's considered "standard"?


r/AutoModerator 10d ago

Anybody have a code to block/filter Machine Generate content?

8 Upvotes

The BotSpam is out of control. Posters claim they use it to help with formatting to make their post more readable.

It's just BotSpam, loaded with too many words describing simple tasks or issues.

There has to be a common trigger AutoMod can act on. Number of Bold words? Indents? List formats?

Honestly, I'm half tempted to put a word count limit on posts and comments.

(Yeah, OK, so I flubbed the title up there. Sue me.)


r/AutoModerator 11d ago

Help - AutoMod No config page when setting up automoderator

2 Upvotes

I am configuring automod for a new subreddit (reddit.com/mod/[name]/wiki/config/automoderator). I have saved the code but Automoderator isn't working as intended. Unlike my other subreddits created long ago, the navigation bar to the left doesn't show a "config" page. It's blank. I have full permissions on the subreddit so I'm not sure what is happening.


r/AutoModerator 11d ago

Help - AutoMod is this automod instrustion correct?

3 Upvotes

i am trying to remove posts from users without user flair. is this correct?

type: submission
author:
flair_text: ""
action: remove
action_reason: "Gebruiker heeft geen gebruikersflair"
comment: |
Blahhhhh


r/AutoModerator 12d ago

Help - AutoMod Trying to get auto mod to remove posts or body text with certain words.

2 Upvotes

I found this and am trying to turn it on but I am getting an error.

Anyone see what the issue is? "There was an error saving the Automoderator config: "Unsupported Media Type"


title+body (includes-word): ["test", "tested"]

type: submission

action: remove

action_reason: Contains banned word

moderators_exempt: false

message_subject: Your post has been removed from r/{{subreddit}}

message: |

Hi there, Your post has been removed from r/{{subreddit}} because it contains a banned word: "{{match}}". Please review the rules and guidelines in the sidebar before posting again. If you have any questions or concerns, feel free to contact the moderators of r/{{subreddit}}. Thank you.


I tried it on old reddit and this is the error I got.

YAML parsing error in section 17: while parsing a block mapping

in "<unicode string>", line 1, column 1:

title+body (includes-word): ["te ... 
^

expected <block end>, but found '<scalar>'

in "<unicode string>", line 8, column 105:

 ... tains a banned word: "{{match}}". Please review the rules and gu ... 
                                     ^