• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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