• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Bayes error messages when updating

A

ashopandreas

Guest
When I updated from 7.5.4 to 8 using the auto installer, I got a lot of error messages like this one:

bayes: cannot open bayes databases /var/qmail/mailnames/adomain.com/mailname/.spamassassin/bayes_* R/W: tie failed: Inappropriate ioctl for device

I got one of these for each mailbox on the machine.

The update still continued and everything seems to work but I'm worried that there might be something wrong that I haven't discovered yet. Does anyone know what this error message means and if something needs to be fixed?
 
We are getting the same errors, not sure if anything is wrong yet though. Did you find anything out?
 
We also are getting this error after the upgrade any idea's?
 
Ok I think I figuired it out.

To solve this issue, you need to remove the bayes files from the previous version of spamassassin and then rebuild the email addresses using the follwoing commands:

rm -f /var/qmail/mailnames/*/*/bayes_toks
rm -f /var/qmail/mailnames/*/*/auto-whitelist
rm -f /var/qmail/mailnames/*/*/auto-whitelist.lock
rm -f /var/qmail/mailnames/*/*/bayes_seen
rm -R -f /var/qmail/mailnames/*/*/.spamassassin
rm -f /var/qmail/mailnames/*/*/user_prefs
rm -f /var/qmail/mailnames/*/*/spamcheck*

/usr/local/psa/admin/bin/mchk --with-spam
 
This seemed to fix it for me. YMMV.
Code:
find /var/qmail/mailnames -name bayes_toks -exec chown popuser.popuser {} \;
The problem was that the bases_toks files had changed ownership to root.root.
 
Back
Top