How do I go about checking that my automated scripts that handle spam learning are actually learning? I have literally hundreds of emails a day that go into the “new” folder I have set up and it does not seem to be learning from them.
OS: Ubuntu 14.04.3 LTS MTA: Postfix 2.11.0-1ubuntu1 postgrey 1.34-12 spamassassin/spamc 3.4.0-1ubuntu2.1 sa-learn commands: [scans domains for specified folders and scans them] > /usr/bin/find /var/mail/vhosts/ -name '*.Spam.New*' -type d -exec > /usr/bin/sa-learn --no-sync --spam --progress {}* \; > /usr/bin/find /var/mail/vhosts/ -name '*.Spam.Suspected*' -type d -exec > /usr/bin/sa-learn --no-sync --spam --progress {}* \; I swear I had issues in the past without having —no-sync, but is that causing it?