Is it possible to make a parameter for RugDoc (for example, call it Auto or Strict) so that when answering:
"OK": (style.GREEN + 'RUGDOC API RESULT : OK \n'
it is automatic - Yes
with other answers - No
I used to fix it myself (4.3.1.4), something like this:
if honeypot_code == "OK":
token['_RUGDOC_DECISION'] = "y"
else:
token['_RUGDOC_DECISION'] = "n"
Is it possible to make a parameter for RugDoc (for example, call it Auto or Strict) so that when answering: "OK": (style.GREEN + 'RUGDOC API RESULT : OK \n' it is automatic - Yes with other answers - No I used to fix it myself (4.3.1.4), something like this: if honeypot_code == "OK": token['_RUGDOC_DECISION'] = "y" else: token['_RUGDOC_DECISION'] = "n"