Squirrelmail: Difference between revisions

From DWIKI
mNo edit summary
mNo edit summary
Line 19: Line 19:
  ) TYPE=MyISAM;
  ) TYPE=MyISAM;


==FAQ==
=FAQ=
===config: failed to parse, now a plugin, skipping ok_languages===
==config: failed to parse, now a plugin, skipping ok_languages==


==Rewrite your code, we now use init.php==
That's when running an old plugin on 1.5x, see:
*http://www.squirrelmail.org/docs/devel/devel-2.html
It means validate.php is included instead of init.php


==Notes==
 
 
=Notes=

Revision as of 09:56, 11 August 2008

Documentation

Interesting plugins

sasql

create table spamassassin;
grant all privileges on spamassassin.* to 'sasql'@'localhost' identified by 'sasqlpass';
flush privileges;
use spamassassin;
CREATE TABLE userpref (
 username varchar(100) NOT NULL,
 preference varchar(30) NOT NULL,
 value varchar(100) NOT NULL,
 prefid int(11) NOT NULL auto_increment,
 PRIMARY KEY (prefid),
 INDEX (username)
) TYPE=MyISAM;

FAQ

config: failed to parse, now a plugin, skipping ok_languages

Rewrite your code, we now use init.php

That's when running an old plugin on 1.5x, see:

It means validate.php is included instead of init.php


Notes