Thanks Robert.
I finally found where the problem was. The maia_themes table
was
corrupt.
Lucky me: it's really small and is not changed during
system operation.
I re-created it from the .sql script provided with maia
1.0.1 and my
system was up and running at 100% again.
By the way, is it normal that your answers get blocked by
the product
you've designed? This is the maia report for your answer...
10.000 SPF_HELO_FAIL SPF: HELO does not match SPF record
(fail)
1.000 BAYES_50 Bayesian spam probability is 40 to 60%
-0.001 SPF_PASS SPF: sender matches SPF record
Just to make sure, it's not a misconfiguration on my side,
right?
Thanks again for your precious help and your great product.
I use maia
for my customers and it filters about 500 mailboxes with
very good
results.
Our corporate network uses some commercial (I won't name it
here...)
product which lets about 30% of the spam through...
Maia is so much better, congratulations.
At least, my customers are happy
Christian
Robert LeBlanc <rjl renaissoft.com> wrote:
>Christian Gloor wrote:
>
>> I just upgraded from version 1.0.0 to 1.0.1 and I
moved the MySQL
>> database from an other machine to localhost.
>> I changed all scripts accordingly and everything
seems to work fine.
>> Mails are filtered, and correctly delivered to the
users.
>>
>> However, when logged in the maia interface, when I
click on the Settings
>
>> Icon for me or another user or domain, I get a
blank page and the
>> following line is logged in my apache error_log:
>> PHP Fatal error: Call to undefined method
DB_Error::fetchrow() in
>> /var/www/html/settings.php on line 635,
>
>Take a look at the contents of your maia_themes table,
to make sure you
>have the proper data in there. Try:
>
>SELECT * FROM maia_themes;
>
>In particular, you should have themes called
"Ocean Surf" and "Desert
>Sand", with paths set to "ocean_surf"
and "desert_sand" respectively.
>
>The error you're encountering suggests there was a
problem with the
>query "SELECT id, name FROM maia_themes", so
either your maia_themes
>table was never properly created or it was not properly
stocked with the
>default themes.
>
>If it turns out the table was never created, you can do
so manually with:
>
>CREATE TABLE maia_themes (
> id int(10) unsigned NOT NULL auto_increment,
> name varchar(30) NOT NULL,
> path varchar(30) NOT NULL,
> PRIMARY KEY (id)
>) TYPE=InnoDB;
>
>If you're missing the default themes, you can add those
manually as well:
>
>INSERT INTO maia_themes VALUES (1, 'Ocean Surf',
'ocean_surf');
>INSERT INTO maia_themes VALUES (2, 'Desert Sand',
'desert_sand');
>
>--
>Robert LeBlanc <rjl renaissoft.com>
>Renaissoft, Inc.
>Maia Mailguard <http://www.maiamail
guard.com/>
>
>
>
_______________________________________________
Maia-users mailing list
Maia-users renaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users
|