Robert, As I have said, the entire message flow is traced for you so that you can debug configuration issues. You just need to read it.
> The log says they instantiated so something else is going wrong. Yes, the log shows that they are instantiated, as shown by: INFO spoolmanager: Matcher RelayLimit=30 instantiated. INFO spoolmanager: Mailet Null instantiated. INFO spoolmanager: Matcher InSpammerBlacklist=query.bondedsender.org instantiated. INFO spoolmanager: Mailet ToProcessor instantiated. INFO spoolmanager: Matcher InSpammerBlacklist=dnsbl.njabl.org instantiated. INFO spoolmanager: Mailet ToProcessor instantiated. INFO spoolmanager: Matcher InSpammerBlacklist=relays.ordb.org instantiated. INFO spoolmanager: Mailet ToProcessor instantiated. INFO spoolmanager: Matcher [EMAIL PROTECTED] instantiated. INFO spoolmanager: Mailet org.apache.james.transport.mailets.AvalonListservManager instantiated. INFO spoolmanager: Matcher [EMAIL PROTECTED] instantiated. INFO spoolmanager: Mailet org.apache.james.transport.mailets.AvalonListserv instantiated. INFO spoolmanager: Matcher All instantiated. INFO spoolmanager: Mailet ToProcessor instantiated. INFO spoolmanager: Processor root instantiated. That is your root processor. By the way, you don't need the fully-qualified package names. So what happens? Again, let's read the log file: DEBUG spoolmanager: Processing Mail1057429170468-0 through root DEBUG spoolmanager.root: Servicing mail: Mail1057429170468-0 DEBUG spoolmanager.root: Checking Mail1057429170468-0 with [EMAIL PROTECTED] DEBUG spoolmanager.root: Servicing Mail1057429170468-0 by Postmaster aliasing mailet DEBUG spoolmanager.root: Checking Mail1057429170468-0 with [EMAIL PROTECTED] DEBUG spoolmanager.root: Checking Mail1057429170468-0 with [EMAIL PROTECTED] DEBUG spoolmanager.root: Servicing Mail1057429170468-0 by ToProcessor Mailet DEBUG spoolmanager: Processed Mail1057429170468-0 through root DEBUG spoolmanager: Result was transport Just match that up with your config file. The All/PostmasterAlias is internal. Then you have RelayLimit, followed by InSpammerBlacklist. We see that InSpammerBlacklist matches, causing ToProcessor to be invoked, sending the message to the transport processor. That bypasses your mailing list configuration (which is one reason why it isn't a good idea to put it in the root processor). An interesting question is why it thinks that your IP address is in the Bonded Senders registry. (a) move the list configuration to the transport processor. (b) figure out why it thinks that your IP address is bonded. --- Noel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]