Author: vincenzo
Date: Tue Jun 6 05:21:22 2006
New Revision: 412105
URL: http://svn.apache.org/viewvc?rev=412105&view=rev
Log:
If a message is signed by a trusted user, it can be (optionally) considered as
not spam.
Modified:
james/server/branches/v2.3/src/conf/james-config.xml
Modified: james/server/branches/v2.3/src/conf/james-config.xml
URL:
http://svn.apache.org/viewvc/james/server/branches/v2.3/src/conf/james-config.xml?rev=412105&r1=412104&r2=412105&view=diff
==============================================================================
--- james/server/branches/v2.3/src/conf/james-config.xml (original)
+++ james/server/branches/v2.3/src/conf/james-config.xml Tue Jun 6 05:21:22
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]