Squirrelmail

From DWIKI
Revision as of 22:47, 26 April 2008 by Tony (talk | contribs) (→‎sasql)

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;

Notes