psa.Parameters
Overview
The Parameters table contains information mail handling at the domain level. This includes domain keys, non-existent mailbox handling, and catch-all e-mail accounts.
Column Descriptions
id – links to params_id in the domains table
parameter – the keyword name of the parameter
value – the value that corresponds to the parameter keyword
Table Structure
CREATE TABLE `Parameters` ( `id` int(10) unsigned NOT NULL auto_increment, `parameter` varchar(245) character set ascii NOT NULL default '', `value` varbinary(255) default NULL, PRIMARY KEY (`id`,`parameter`) ) ENGINE=InnoDB AUTO_INCREMENT=168 DEFAULT CHARSET=latin1