• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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