Just had the same problem. While digging around in the SQL files I noticed that the field emailfromadmin
is created when you upgrade your database to 1.3.5, but it is not created when you do a fresh install.
So, to fix the problem apply the following SQL request from the update file:
ALTER TABLE userprefs ADD emailfromadmin tinyint(1) NOT
NULL DEFAULT '1';
bye, Dirk