Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. ---
  2.  
  3. # Remove Bigotry
  4. #
  5. # This makes use of regex.
  6. #
  7. # This reads: "If you say something racist or bigotted, even if you are
  8. # a moderator, in the title or body of your submission or comment, then it
  9. # will be removed, the mods will be notified, and mod action will be taken."
  10.  
  11. moderators_exempt: false
  12. title+body (regex):
  13.  
  14. # Deals with complex variants
  15.  
  16. # deals with 'nigger' and variants
  17. - 'nigg+(er|ah?|uh|let)'
  18. # deals with 'faggot' and variants
  19. - 'f(a|e)g+(a|e|o)t'
  20. # deals with 'kaffir' and variants
  21. - 'kaf+(ir|er|re)'
  22. # deals with 'spick' and variants
  23. - 'spi(ck|k|g)'
  24. # deals with 'gweilo' and variants
  25. - '(g|k)w(ei|ai)\s?lo'
  26.  
  27. # no/one variant words
  28.  
  29. - 'beaner'
  30. - 'chinam(a|e)n'
  31. - 'chink'
  32. - 'coolie'
  33. # also catches the embankment type of dike
  34. - 'd(i|y)ke'
  35. - 'eskimo'
  36. - 'g(a|e)y'
  37. - 'greaser'
  38. - 'gringo'
  39. - 'honk(y|ie)'
  40. - 'injun'
  41. - 'k(i|y)ke'
  42. # catches 'Mickey', like in 'Mickey Mouse'
  43. - 'mick'
  44. - 'paki'
  45. - 'queer'
  46. - '(rag|towel)head'
  47. - 'squaw'
  48.  
  49. action: remove
  50. action_reason: Bigotry.
  51. modmail_subject: "AUTOMOD: Bigotted Remarks Made in /r/{{subreddit}}"
  52. modmail: |
  53. Bigotted remarks made in /r/{{subreddit}}. Please take action.
  54.  
  55. * Sub: /r/{{subreddit}}
  56. * Type: {{kind}}
  57. * Link: [Link]({{permalink}})
  58. * Title: {{title}}
  59. * User: /u/{{author}}
  60.  
  61. ---
  62.  
  63. # Filter Possible Bigotry
  64. #
  65. # This makes use of regex.
  66. #
  67. # This reads: "If you say something that may be racist or bigotted, even if you
  68. # are a moderator, in the title or body of your submission or comment, then it
  69. # will be filtered, the mods will be notified, and mod action will be taken."
  70.  
  71. moderators_exempt: false
  72. title+body (includes-word):
  73.  
  74. # also catches 'coon pelt'
  75. - 'coon'
  76. - 'coons'
  77. - 'homo'
  78. - 'homos'
  79. - 'jap'
  80. - 'japs'
  81. - 'jew'
  82. - 'jews'
  83.  
  84. action: filter
  85. action_reason: Possible bigotry.
  86. modmail_subject: "AUTOMOD: Possible Bigotted Remarks Made in /r/{{subreddit}}"
  87. modmail: |
  88. Possible bigotted remarks made in /r/{{subreddit}}. Please investigate.
  89.  
  90. * Sub: /r/{{subreddit}}
  91. * Type: {{kind}}
  92. * Link: [Link]({{permalink}})
  93. * Title: {{title}}
  94. * User: /u/{{author}}
  95.  
  96. ---
  97.  
  98. # Remove Trolls
  99. #
  100. # This reads: "If you have less than negative 50 comment karma, unless you are a
  101. # moderator or approved submitter, then your comment will be removed
  102. # without notification."
  103.  
  104. type: comment
  105. author:
  106. is_contributor: false
  107. comment_karma: < -15
  108. action: remove
  109. action_reason: Troll.
  110.  
  111. ---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement