better documentation of anti-spam policy

This commit is contained in:
csoler 2016-12-31 13:42:29 +01:00
parent 924e3bf54b
commit f8ac391a28

View File

@ -181,11 +181,16 @@ public:
// If anti-spam is enabled, do not send messages from authors with bad reputation. The policy is to only forward messages if the reputation of the author is at least // If anti-spam is enabled, do not send messages from authors with bad reputation. The policy is to only forward messages if the reputation of the author is at least
// equal to the minimal reputation in the table below (R=remotely, L=locally, P=positive, N=negative, O=neutral) : // equal to the minimal reputation in the table below (R=remotely, L=locally, P=positive, N=negative, O=neutral) :
// //
// | Anonymous Signed Signed+Known //
// -----------+----------------------------------------------------- // +----------------------------------------------------+
// NONE | O O O // | Identity flags |
// GPG_AUTHED | RP O O // +----------------------------------------------------+
// GPG_KNOWN | RP RP O // | Anonymous Signed Signed+Known |
// +-------------+-----------+----------------------------------------------------+
// | |NONE | O O O |
// | Forum flags |GPG_AUTHED | RP O O |
// | |GPG_KNOWN | RP RP O |
// +-------------+-----------+----------------------------------------------------+
// //
if(identity_flags & RS_IDENTITY_FLAGS_PGP_KNOWN) if(identity_flags & RS_IDENTITY_FLAGS_PGP_KNOWN)