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
raise newForumError("Your account has been marked by https://www.stopforumspam.com/. If you believe this is a mistake please contact a moderator. "& supportUrl)
527
+
528
+
whennot defined(skipSpamHeuristics):
529
+
if spamHeuristicsCheck(c, content):
530
+
raise newForumError("Your account has been automatically marked as spam. If you believe this is a mistake please contact a moderator. "& supportUrl)
if jresp["success"].num ==1and jresp["emailhash"].hasKey("confidence") and jresp["emailhash"]["confidence"].str.parseFloat >0.0:
623
-
exec(
624
-
db,
625
-
sql"update person set status = ? where name = ?;",
626
-
AutoSpammer, c.userName
627
-
)
628
-
raise newForumError("Your account has been marked by https://www.stopforumspam.com/. If you believe this is a mistake please contact a moderator. "& supportUrl)
667
+
if stopForumSpamCheck(c):
668
+
raise newForumError("Your account has been marked by https://www.stopforumspam.com/. If you believe this is a mistake please contact a moderator. "& supportUrl)
669
+
670
+
whennot defined(skipSpamHeuristics):
671
+
if spamHeuristicsCheck(c, msg, subject):
672
+
raise newForumError("Your account has been automatically marked as spam. If you believe this is a mistake please contact a moderator. "& supportUrl)
0 commit comments