Hello again,
I'm trying to enable the whitelist feature in James, but having minimal
success. After enabling the respective items in config.xml, James did
successfully create the necessary tables in the appropriate db:/maildb.
The problem now, it seems, is that when I forward a mail to
'[EMAIL PROTECTED]', it stays in the outbox folder in the file
repository.
Here are the code snippets from my config.xml file (before you mention it, I
changed my @domain below in case spammers are reading this):
<!-- THIS FEATURE IS NOT WORKING; setup whitelist manager -->
<mailet match="SMTPAuthSuccessful" class="WhiteListManager"
onMailetException="ignore">
<repositoryPath>db://maildb</repositoryPath>
<automaticInsert>true</automaticInsert>
<whitelistManagerAddress>[EMAIL PROTECTED]</whitelistManagerAddress>
<displayFlag>display</displayFlag>
<insertFlag>insert</insertFlag>
<removeFlag>remove</removeFlag>
</mailet>
<!-- FYI, THIS FEATURE WORKS GREAT -->
<!-- "not spam" bayesian analysis feeder. -->
<mailet match="[EMAIL PROTECTED]"
class="BayesianAnalysisFeeder">
<repositoryPath> db://maildb </repositoryPath>
<feedType>ham</feedType>
<maxSize>200000</maxSize>
</mailet>
<!-- "spam" bayesian analysis feeder. -->
<mailet match="[EMAIL PROTECTED]"
class="BayesianAnalysisFeeder">
<repositoryPath> db://maildb </repositoryPath>
<feedType>spam</feedType>
<maxSize>200000</maxSize>
</mailet>
<!-- MORE WHITELIST CONFIG; is sender valid?-->
<mailet match="IsInWhiteList=db://maildb" class="ToProcessor"
onMatchException="noMatch">
<processor> transport </processor>
</mailet>
That's actually it... the only other bit that would be relevant I think is
in the <database-connections>
block, but since the bayesian filter/feeder is working this stuff seems ok.
Any help & suggestions are appreciated!
Regards,
Kyle
--
View this message in context:
http://www.nabble.com/Whitelist-feature-configuration-tp15065351p15065351.html
Sent from the James - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]