Author: vincenzo Date: Tue Jun 6 05:20:28 2006 New Revision: 412104 URL: http://svn.apache.org/viewvc?rev=412104&view=rev Log: If a message is signed by a trusted user, it can be (optionally) considered as not spam.
Modified: james/server/trunk/src/conf/james-config.xml Modified: james/server/trunk/src/conf/james-config.xml URL: http://svn.apache.org/viewvc/james/server/trunk/src/conf/james-config.xml?rev=412104&r1=412103&r2=412104&view=diff ============================================================================== --- james/server/trunk/src/conf/james-config.xml (original) +++ james/server/trunk/src/conf/james-config.xml Tue Jun 6 05:20:28 2006 @@ -249,8 +249,8 @@ <keyStoreType>pkcs12</keyStoreType> <keyStoreFileName>c:/path.pfx</keyStoreFileName> <keyStorePassword>myKeyStorePass</keyStorePassword> - <strip>true</strip> - <onlyTrusted>false</onlyTrusted> + <strip>false</strip> + <onlyTrusted>true</onlyTrusted> </mailet> --> @@ -293,10 +293,20 @@ for non-spamming senders. --> - <!-- Messages from authenticated senders are never spam --> + <!-- Messages from authenticated senders never are spam --> <mailet match="SMTPAuthSuccessful" class="ToProcessor"> <processor> transport </processor> </mailet> + + <!-- Messages signed by trusted users never are spam --> + <!-- Uncommenting the following entry, messages with valid signatures will never be considered spam. --> + <!-- This can be a valid policy *if* SMIMECheckSignature was invoked --> + <!-- with <onlyTrusted>true</onlyTrusted> set --> + <!-- + <mailet match="HasMailAttribute=org.apache.james.SMIMECheckSignature" class="ToProcessor"> + <processor> transport </processor> + </mailet> + --> <!-- specific known senders --> <!-- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]