Squirrelmail

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

Interesting plugins

sasql

grant all privileges on sasql.* to 'sasql'@'localhost' identified by 'sasqlpass';
flush privileges;
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