Anthony Kamau wrote:
I've checked my logs and noticed the following entry whenever I restart
the spamassassin service:
config: dup unknown type msa_networks, Mail::SpamAssassin::NetSet
Is this something I should be worried about?
As long as you don't have any users calling "clear_msa_networks" in
their per user config I believe it's a harmless warning.
In any case, attached is a patch to correct the issue.
Daryl
Index: lib/Mail/SpamAssassin/Conf.pm
===================================================================
--- lib/Mail/SpamAssassin/Conf.pm (revision 541336)
+++ lib/Mail/SpamAssassin/Conf.pm (working copy)
@@ -3160,7 +3160,7 @@
# keys that should can be copied using a ->clone() method, in ->clone()
my @CLONABLE_KEYS = qw(
- internal_networks trusted_networks
+ internal_networks trusted_networks msa_networks
);
my %done = ();