<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>PleskHacker &#187; Mail</title> <atom:link href="http://pleskhacker.com/category/all-tables/mail-all-tables/feed/" rel="self" type="application/rss+xml" /><link>http://pleskhacker.com</link> <description>Detailed documentation of the Plesk database</description> <lastBuildDate>Thu, 03 Jun 2010 13:00:52 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>psa.spamfilter_preferences</title><link>http://pleskhacker.com/all-tables/psaspamfilter_preferences/</link> <comments>http://pleskhacker.com/all-tables/psaspamfilter_preferences/#comments</comments> <pubDate>Fri, 26 Sep 2008 02:32:43 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[spamfilter]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=269</guid> <description><![CDATA[Overview The spamfilter_preferences table contains detailed preferences for spam filtering per e-mail account. Column Descriptions prefid &#8211; primary key that is automatically incremented spamfilter_id &#8211; links to id in spamfilter table preference &#8211; keyword parameter value &#8211; value which corresponds to the keyword parameter Table Structure CREATE TABLE `spamfilter_preferences` &#40; `prefid` int&#40;10&#41; unsigned NOT NULL [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>spamfilter_preferences</code> table contains detailed preferences for spam filtering per e-mail account.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>prefid</strong> &#8211; primary key that is automatically incremented<br /> <strong>spamfilter_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_spamfilter/">spamfilter</a></code> table<br /> <strong>preference</strong> &#8211; keyword parameter<br /> <strong>value</strong> &#8211; value which corresponds to the keyword parameter</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`spamfilter<span style="color: #008080; font-weight: bold;">_</span>preferences`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`prefid`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`spamfilter<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`preference`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">30</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`value`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`prefid`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`spamfilter<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`spamfilter<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`preference`</span><span style="color: #000033;">,</span><span style="color: #008000;">`value`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">1531</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psaspamfilter_preferences/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.spamfilter</title><link>http://pleskhacker.com/all-tables/psa_spamfilter/</link> <comments>http://pleskhacker.com/all-tables/psa_spamfilter/#comments</comments> <pubDate>Fri, 26 Sep 2008 02:28:44 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[spamfilter]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=266</guid> <description><![CDATA[Overview The spamfilter table contains the basic configuration for spam filtering per e-mail account. Column Descriptions id &#8211; primary key that is automatically incremented username &#8211; e-mail account that has spam filtering enabled preferences &#8211; true if the e-mail account has account-level preferences, otherwise false reject_spam &#8211; true if spam should be thrown away, otherwise [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>spamfilter</code> table contains the basic configuration for spam filtering per e-mail account.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>username</strong> &#8211; e-mail account that has spam filtering enabled<br /> <strong>preferences</strong> &#8211; <code>true</code> if the e-mail account has account-level preferences, otherwise <code>false</code><br /> <strong>reject_spam</strong> &#8211; <code>true</code> if spam should be thrown away, otherwise <code>false</code></p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`spamfilter`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`username`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">128</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`preferences`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`reject<span style="color: #008080; font-weight: bold;">_</span>spam`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #FF9900; font-weight: bold;">UNIQUE</span> <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`username`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`username`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">636</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_spamfilter/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.badmailfrom</title><link>http://pleskhacker.com/all-tables/psa_badmailfrom/</link> <comments>http://pleskhacker.com/all-tables/psa_badmailfrom/#comments</comments> <pubDate>Thu, 25 Sep 2008 03:09:28 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[badmailfrom]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=245</guid> <description><![CDATA[Overview The badmailfrom table contains the domains which are blacklisted server-wide. Column Descriptions id &#8211; primary key that is automatically incremented domain &#8211; domain name to add to the blacklist Table Structure CREATE TABLE `badmailfrom` &#40; `id` int&#40;10&#41; unsigned NOT NULL auto_increment, `domain` varchar&#40;255&#41; character set utf8 NOT NULL default '', PRIMARY KEY &#40;`id`&#41;, KEY [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>badmailfrom</code> table contains the domains which are blacklisted server-wide.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>domain</strong> &#8211; domain name to add to the blacklist</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`badmailfrom`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`domain`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`domain`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`domain`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">2</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_badmailfrom/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.MailLists</title><link>http://pleskhacker.com/all-tables/psa_maillists/</link> <comments>http://pleskhacker.com/all-tables/psa_maillists/#comments</comments> <pubDate>Wed, 24 Sep 2008 02:32:53 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[maillists]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=179</guid> <description><![CDATA[Overview The MailLists table contains information about mailman&#8217;s mailing lists. Column Descriptions id &#8211; primary key that is automatically incremented dom_id &#8211; links to id in domains table name &#8211; mailing list name (left side of the e-mail address) status &#8211; 0 if enabled, 16 if disabled Table Structure CREATE TABLE `MailLists` &#40; `id` int&#40;10&#41; [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>MailLists</code> table contains information about mailman&#8217;s mailing lists.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>dom_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_domains/">domains</a></code> table<br /> <strong>name</strong> &#8211; mailing list name (left side of the e-mail address)<br /> <strong>status</strong> &#8211; <code>0</code> if enabled, <code>16</code> if disabled</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`MailLists`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`name`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`status`</span> <span style="color: #999900; font-weight: bold;">bigint</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">3</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_maillists/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.mn_param</title><link>http://pleskhacker.com/all-tables/psa_mn_param/</link> <comments>http://pleskhacker.com/all-tables/psa_mn_param/#comments</comments> <pubDate>Wed, 24 Sep 2008 02:28:47 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[mn_param]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=176</guid> <description><![CDATA[Overview The mn_param table contains parameters for e-mail accounts. Column Descriptions mn_id &#8211; links to id in mail table param &#8211; parameter keyword val &#8211; value corresponding to the parameter keyword Table Structure CREATE TABLE `mn_param` &#40; `mn_id` int&#40;10&#41; unsigned NOT NULL default '0', `param` varchar&#40;245&#41; character set ascii NOT NULL default '', `val` varbinary&#40;255&#41; [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>mn_param</code> table contains parameters for e-mail accounts.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>mn_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_mail/">mail</a></code> table<br /> <strong>param</strong> &#8211; parameter keyword<br /> <strong>val</strong> &#8211; value corresponding to the parameter keyword</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>param`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`param`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`val`</span> <span style="color: #999900; font-weight: bold;">varbinary</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`param`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_mn_param/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.mail_resp</title><link>http://pleskhacker.com/all-tables/psa_mail_resp/</link> <comments>http://pleskhacker.com/all-tables/psa_mail_resp/#comments</comments> <pubDate>Wed, 24 Sep 2008 02:25:03 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[mail_resp]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=169</guid> <description><![CDATA[Overview The mail_resp table contains information about e-mail auto responders. Column Descriptions id &#8211; primary key that is automatically incremented mn_id &#8211; links to id in mail table resp_name &#8211; friendly name of the auto responder, shown in Plesk keystr &#8211; what keyword string to match in the e-mail sent to the auto responder key_where [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>mail_resp</code> table contains information about e-mail auto responders.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>mn_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_mail/">mail</a></code> table<br /> <strong>resp_name</strong> &#8211; friendly name of the auto responder, shown in Plesk<br /> <strong>keystr</strong> &#8211; what keyword string to match in the e-mail sent to the auto responder<br /> <strong>key_where</strong> &#8211; where to match the keywords, can be <code>subj</code>, <code>body</code> or <code>no</code><br /> <strong>subject</strong> &#8211; subject line to use for the auto response<br /> <strong>reply_to</strong> &#8211; e-mail address used in the auto response&#8217;s Reply To: line<br /> <strong>content_type</strong> &#8211; either <code>text/plain</code> or <code>text/html</code><br /> <strong>charset</strong> &#8211; character set for the auto-response, usually <code>UTF-8</code><br /> <strong>text</strong> &#8211; body of the auto-response<br /> <strong>resp_on</strong> &#8211; <code>true</code> if the auto responder is enabled, otherwise <code>false</code><br /> <strong>ans_freq</strong> &#8211; maximum responses per e-mail address per day<br /> <strong>mem_limit</strong> &#8211; how many unique e-mail addresses to store for <code>ans_freq</code> limitations</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`mail<span style="color: #008080; font-weight: bold;">_</span>resp`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`resp<span style="color: #008080; font-weight: bold;">_</span>name`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`keystr`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`key<span style="color: #008080; font-weight: bold;">_</span>where`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'subj'</span><span style="color: #000033;">,</span><span style="color: #008000;">'body'</span><span style="color: #000033;">,</span><span style="color: #008000;">'no'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'no'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`subject`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`reply<span style="color: #008080; font-weight: bold;">_</span>to`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`content<span style="color: #008080; font-weight: bold;">_</span>type`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'text/plain'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`charset`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">collate</span> ascii_bin <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'UTF-8'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`text`</span> <span style="color: #999900; font-weight: bold;">mediumtext</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8<span style="color: #000033;">,</span>
 <span style="color: #008000;">`resp<span style="color: #008080; font-weight: bold;">_</span>on`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`ans<span style="color: #008080; font-weight: bold;">_</span>freq`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">11</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'10'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`mem<span style="color: #008080; font-weight: bold;">_</span>limit`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">11</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'1000'</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id<span style="color: #008080; font-weight: bold;">_</span>resp<span style="color: #008080; font-weight: bold;">_</span>name`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`resp<span style="color: #008080; font-weight: bold;">_</span>name`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">4</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_mail_resp/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.mail_redir</title><link>http://pleskhacker.com/all-tables/psa_mail_redir/</link> <comments>http://pleskhacker.com/all-tables/psa_mail_redir/#comments</comments> <pubDate>Wed, 24 Sep 2008 02:11:45 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[mail_redir]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=164</guid> <description><![CDATA[Overview The mail_redir table contains the destination e-mail address for mail redirects. Column Descriptions id &#8211; primary key that is automatically incremented mn_id &#8211; links to id in the mail table address &#8211; destination e-mail address Table Structure CREATE TABLE `mail_redir` &#40; `id` int&#40;10&#41; unsigned NOT NULL auto_increment, `mn_id` int&#40;10&#41; unsigned NOT NULL default '0', [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>mail_redir</code> table contains the destination e-mail address for mail redirects.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>mn_id</strong> &#8211; links to <code>id</code> in the <code><a href="/all-tables/psa_mail/">mail</a></code> table<br /> <strong>address</strong> &#8211; destination e-mail address</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`mail<span style="color: #008080; font-weight: bold;">_</span>redir`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`address`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">11</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_mail_redir/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.mail_aliases</title><link>http://pleskhacker.com/all-tables/psa_mail_aliases/</link> <comments>http://pleskhacker.com/all-tables/psa_mail_aliases/#comments</comments> <pubDate>Tue, 23 Sep 2008 04:04:05 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[mail_aliases]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=148</guid> <description><![CDATA[Overview The mail_aliases table contains information about e-mail accounts which have aliases. Column Descriptions id &#8211; primary key that is automatically incremented mn_id &#8211; links to id in mail table alias &#8211; e-mail account alias Table Structure CREATE TABLE `mail_aliases` &#40; `id` int&#40;10&#41; unsigned NOT NULL auto_increment, `mn_id` int&#40;10&#41; unsigned NOT NULL default '0', `alias` [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>mail_aliases</code> table contains information about e-mail accounts which have aliases.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>mn_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_mail/">mail</a></code> table<br /> <strong>alias</strong> &#8211; e-mail account alias</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`mail<span style="color: #008080; font-weight: bold;">_</span>aliases`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`alias`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #FF9900; font-weight: bold;">UNIQUE</span> <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`mn<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`alias`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">33</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_mail_aliases/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.mail</title><link>http://pleskhacker.com/all-tables/psa_mail/</link> <comments>http://pleskhacker.com/all-tables/psa_mail/#comments</comments> <pubDate>Tue, 23 Sep 2008 04:00:01 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[permissions]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=141</guid> <description><![CDATA[Overview The mail table contains information about all of the e-mail accounts configured on the server. Column Descriptions id &#8211; primary key that is automatically incremented mail_name &#8211; the name of the e-mail account (text before the @ sign) perm_id &#8211; links to id in Permissions table postbox &#8211; true if the mailbox is enabled, [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>mail</code> table contains information about all of the e-mail accounts configured on the server.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>mail_name</strong> &#8211; the name of the e-mail account (text before the @ sign)<br /> <strong>perm_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_permissions/">Permissions</a></code> table<br /> <strong>postbox</strong> &#8211; <code>true</code> if the mailbox is enabled, otherwise <code>false</code><br /> <strong>account_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_accounts/">accounts</a></code> table<br /> <strong>redirect</strong> &#8211; <code>true</code> if e-mail should be redirected, otherwise <code>false</code><br /> <strong>redir_addr</strong> &#8211; contains an e-mail address for redirection, otherwise empty<br /> <strong>mail_group</strong> &#8211; <code>true</code> if the e-mail account is a mail group, otherwise <code>false</code><br /> <strong>autoresponder</strong> &#8211; <code>true</code> if the account has an autoresponder, otherwise <code>false</code><br /> <strong>spamfilter</strong> &#8211; <code>true</code> if spam filtering is enabled, otherwise <code>false</code><br /> <strong>virusfilter</strong> &#8211; contains <code>incoming</code>, <code>outgoing</code>, <code>any</code>, or <code>none</code><br /> <strong>mbox_quota</strong> &#8211; limit on mailbox size in bytes<br /> <strong>dom_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_domains/">domains</a></code></p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`mail`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`mail<span style="color: #008080; font-weight: bold;">_</span>name`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`perm<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`postbox`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`account<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`redirect`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`redir<span style="color: #008080; font-weight: bold;">_</span>addr`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`mail<span style="color: #008080; font-weight: bold;">_</span>group`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`autoresponder`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`spamfilter`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`virusfilter`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'none'</span><span style="color: #000033;">,</span><span style="color: #008000;">'incoming'</span><span style="color: #000033;">,</span><span style="color: #008000;">'outgoing'</span><span style="color: #000033;">,</span><span style="color: #008000;">'any'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'none'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`mbox<span style="color: #008080; font-weight: bold;">_</span>quota`</span> <span style="color: #999900; font-weight: bold;">bigint</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'-1'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #FF9900; font-weight: bold;">UNIQUE</span> <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`mail<span style="color: #008080; font-weight: bold;">_</span>name`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`account<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`account<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`perm<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`perm<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">336</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_mail/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching using disk: basic
Object Caching 563/683 objects using disk: basic

Served from: pleskhacker.com @ 2012-05-18 23:21:23 -->
