You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sqlite3 modlog.db "SELECT action_type, moderator, target_author, removal_reason FROM processed_actions WHERE subreddit = 'usenet' ORDER BY created_at DESC LIMIT 5;"
53
53
54
-
# Track content lifecycle by target ID
54
+
# Track content lifecycle by target ID
55
55
sqlite3 modlog.db "SELECT target_id, action_type, moderator, removal_reason, datetime(created_at, 'unixepoch') FROM processed_actions WHERE target_id LIKE '%1mkz4jm%' ORDER BY created_at;"
56
56
57
57
# Manual cleanup of old entries
@@ -62,7 +62,7 @@ sqlite3 modlog.db "DELETE FROM processed_actions WHERE created_at < date('now',
62
62
63
63
The application supports multiple configuration methods with the following priority (highest to lowest):
-`anonymize_moderators`: **REQUIRED** to be `true` for security (default: true)
135
-
-`true` (ENFORCED): Shows "AutoModerator", "Reddit", or "HumanModerator"
135
+
-`true` (ENFORCED): Shows "AutoModerator", "Reddit", or "HumanModerator"
136
136
-`false`: **BLOCKED** - Would expose moderator identities publicly
137
137
138
138
**SECURITY NOTE**: Setting `anonymize_moderators=false` is permanently disabled to protect moderator privacy. The application will refuse to start if this is attempted.
@@ -143,7 +143,7 @@ The application uses configurable action type variables for flexibility:
0 commit comments