> 5 rows in set (0.00 sec) > > mysql> CREATE TABLE quarantine ( > -> mail_id varchar(12) NOT NULL, -- long-term unique mail id > -> chunk_ind integer unsigned NOT NULL, -- chunk number, starting > with 1 > -> mail_text blob NOT NULL, -- store mail as chunks > of octets > -> PRIMARY KEY (mail_id,chunk_ind), > -> FOREIGN KEY (mail_id) REFERENCES msgs(mail_id) ON DELETE CASCADE > -> ) ENGINE=InnoDB; > ERROR 1005 (HY000): Can't create table './amavisd/quarantine.frm' > (errno: 150) >
It looks like you did not build innodb support into mysql, and/or did not read and edit the my.cnf to enable the innodb values. Time now to move to the mysql faqs _________________________________________________________________________ This email has been scanned and certified safe by SpammerTrap(r). For Information please see http://www.spammertrap.com _________________________________________________________________________ ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ AMaViS-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/amavis-user AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 AMaViS-HowTos:http://www.amavis.org/howto/
