I don't know if this was an oversight meant to be more of a local preference, but it seems wrong that the bad_subject filter is targeting only posts from Dizum. It's a very useful filter for various types of common spam and limiting it to posts originating from Dizum seems rather silly to me. I didn't realize the targeting until I was troubleshooting why a bunch of spam was getting through that I knew shouldn't be based on my bad_subject entries.
# Bad subject checking (Currently only on Dizum posts).
if dizum and 'bad_subject' in self.etc_re and not gph:
I changed mine to:
# Bad subject checking.
if 'bad_subject' in self.etc_re and not gph:
I don't know if this was an oversight meant to be more of a local preference, but it seems wrong that the bad_subject filter is targeting only posts from Dizum. It's a very useful filter for various types of common spam and limiting it to posts originating from Dizum seems rather silly to me. I didn't realize the targeting until I was troubleshooting why a bunch of spam was getting through that I knew shouldn't be based on my bad_subject entries.
I changed mine to:
Might be helpful to others to make that change?