this post was submitted on 18 Jul 2023
49 points (94.5% liked)
Lemmy
12542 readers
112 users here now
Everything about Lemmy; bugs, gripes, praises, and advocacy.
For discussion about the lemmy.ml instance, go to !meta@lemmy.ml.
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
the only mass solution i found to this was that i installed pgadmin, logged into the db, and manually removed all the bot accounts from
local_user
. you should also remove them from theperson
table as well (you can easily find them if you doSELECT * FROM person WHERE local = true ORDER BY published DESC
in the query tool), that way they don't show up in your instance stats, but removing them fromlocal_user
would be enough to stop them from logging in.thanks I will try this.