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

Related documentation