• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

When is spamtrain executed?

Flachzange

Basic Pleskian
Hi Igor and rest.

Latest Plesk Version uses spamtrain tool to train spam messages being stored in spam folders. Unfortunately this tool is documented less and without modifications you don't even know whether it is working not (no log output). Now I am wondering when (respectively where) spamtrain is called. I assumed it is some cron job, but I couldn't find anything in the usual cron folders cron.* and crontab.

I know that is called in the middle of the night but that's all.

Thanks for your help!

Christoph
 
I am also trying to find if and/or when its run.

And like many (based on what I see in the forums), would like to see SPAMTRAIN delete the emails from the SPAM folder once it has kearnt from them.
 
I believe spamtrain is executed in this way -

You'll have a file at /etc/crontab that has something like this -

# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly

As you can see, it calls the /etc/cron.daily/ folder each day, which contains this file - /etc/cron.daily/50plesk-daily

That executes /usr/local/psa/admin/plib/DailyMaintainance/script.php

That script executes most (if not all) of the other php scripts in /usr/local/psa/admin/plib/DailyMaintainance/

In particular, I believe it executes /usr/local/psa/admin/plib/DailyMaintainance/execute-spamtrain.php

Which then executes /usr/local/psa/admin/sbin/spamtrain

The other scripts it calls are related to things like hosting space stats, data transfer stats, awstats stats, webalizer stats, etc... (spam training gets called AFTER each of these things I've just mentioned).
 
Back
Top