<?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</title>
	<atom:link href="http://pleskhacker.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pleskhacker.com</link>
	<description>Detailed documentation of the Plesk database</description>
	<lastBuildDate>Tue, 09 Dec 2008 01:24:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Enable user management of spam filtering</title>
		<link>http://pleskhacker.com/sql-queries/enable-user-management-of-spam-filtering/</link>
		<comments>http://pleskhacker.com/sql-queries/enable-user-management-of-spam-filtering/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 01:24:44 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[Mail Queries]]></category>
		<category><![CDATA[MySQL Queries]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[spamassassin]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=313</guid>
		<description><![CDATA[If you want to enable user-level management of spam filters in Plesk for all users that have spamassassin enabled, you can use this query:

INSERT INTO Permissions &#40;id,permission,value&#41; 
SELECT perm_id,'manage_spamfilter',true FROM mail WHERE spamfilter = true;

Thanks to Ortak ve Şirket Müdürü for the submission!
]]></description>
			<content:encoded><![CDATA[<p>If you want to enable user-level management of spam filters in Plesk for all users that have spamassassin enabled, you can use this query:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">INSERT</span> <span style="color: #990099; font-weight: bold;">INTO</span> Permissions <span style="color: #FF00FF;">&#40;</span>id<span style="color: #000033;">,</span>permission<span style="color: #000033;">,</span><span style="color: #990099; font-weight: bold;">value</span><span style="color: #FF00FF;">&#41;</span> 
<span style="color: #990099; font-weight: bold;">SELECT</span> perm_id<span style="color: #000033;">,</span><span style="color: #008000;">'manage<span style="color: #008080; font-weight: bold;">_</span>spamfilter'</span><span style="color: #000033;">,</span><span style="color: #9900FF; font-weight: bold;">true</span> <span style="color: #990099; font-weight: bold;">FROM</span> mail <span style="color: #990099; font-weight: bold;">WHERE</span> spamfilter <span style="color: #CC0099;">=</span> <span style="color: #9900FF; font-weight: bold;">true</span><span style="color: #000033;">;</span></pre></div></div>

<p>Thanks to Ortak ve Şirket Müdürü for the submission!</p>
]]></content:encoded>
			<wfw:commentRss>http://pleskhacker.com/sql-queries/enable-user-management-of-spam-filtering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find all databases and login credentials</title>
		<link>http://pleskhacker.com/sql-queries/find-all-databases-and-login-credentials/</link>
		<comments>http://pleskhacker.com/sql-queries/find-all-databases-and-login-credentials/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 01:18:53 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[Database Queries]]></category>
		<category><![CDATA[MySQL Queries]]></category>
		<category><![CDATA[accounts]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[data_bases]]></category>
		<category><![CDATA[domains]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=308</guid>
		<description><![CDATA[If you need to list all of the MySQL databases managed by Plesk along with their corresponding domains and login credentials, you can use this handy query:

SELECT domains.name AS domain_name,
data_bases.name AS database_name, db_users.login, accounts.password
FROM data_bases, db_users, domains, accounts
WHERE data_bases.dom_id = domains.id
AND db_users.db_id = data_bases.id
AND db_users.account_id = accounts.id
ORDER BY domain_name;

Thanks to Juan Carlos Lopez for the [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to list all of the MySQL databases managed by Plesk along with their corresponding domains and login credentials, you can use this handy query:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> domains.name <span style="color: #990099; font-weight: bold;">AS</span> domain_name<span style="color: #000033;">,</span>
data_bases.name <span style="color: #990099; font-weight: bold;">AS</span> database_name<span style="color: #000033;">,</span> db_users.login<span style="color: #000033;">,</span> accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> data_bases<span style="color: #000033;">,</span> db_users<span style="color: #000033;">,</span> domains<span style="color: #000033;">,</span> accounts
<span style="color: #990099; font-weight: bold;">WHERE</span> data_bases.dom_id <span style="color: #CC0099;">=</span> domains.id
<span style="color: #CC0099; font-weight: bold;">AND</span> db_users.db_id <span style="color: #CC0099;">=</span> data_bases.id
<span style="color: #CC0099; font-weight: bold;">AND</span> db_users.account_id <span style="color: #CC0099;">=</span> accounts.id
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domain_name<span style="color: #000033;">;</span></pre></div></div>

<p>Thanks to Juan Carlos Lopez for the suggestion!</p>
]]></content:encoded>
			<wfw:commentRss>http://pleskhacker.com/sql-queries/find-all-databases-and-login-credentials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Plesk domains exceeding quotas</title>
		<link>http://pleskhacker.com/sql-queries/find-domains-over-quota-in-plesk/</link>
		<comments>http://pleskhacker.com/sql-queries/find-domains-over-quota-in-plesk/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 03:31:25 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[Mail Queries]]></category>
		<category><![CDATA[MySQL Queries]]></category>
		<category><![CDATA[Web Queries]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[limits]]></category>
		<category><![CDATA[quota]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=299</guid>
		<description><![CDATA[Find domains that are over quota on disk space in Plesk:

SELECT domains.name, domains.real_size, Limits.value
FROM domains, Limits
WHERE domains.limits_id = Limits.id
AND domains.real_size &#62; Limits.value
AND limit_name = 'disk_space'
AND Limits.value != -1
ORDER BY domains.name ASC;

]]></description>
			<content:encoded><![CDATA[<p>Find domains that are over quota on disk space in Plesk:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> domains.name<span style="color: #000033;">,</span> domains.real_size<span style="color: #000033;">,</span> Limits.<span style="color: #990099; font-weight: bold;">value</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span> Limits
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.limits_id <span style="color: #CC0099;">=</span> Limits.id
<span style="color: #CC0099; font-weight: bold;">AND</span> domains.real_size <span style="color: #CC0099;">&gt;</span> Limits.<span style="color: #990099; font-weight: bold;">value</span>
<span style="color: #CC0099; font-weight: bold;">AND</span> limit_name <span style="color: #CC0099;">=</span> <span style="color: #008000;">'disk<span style="color: #008080; font-weight: bold;">_</span>space'</span>
<span style="color: #CC0099; font-weight: bold;">AND</span> Limits.<span style="color: #990099; font-weight: bold;">value</span> <span style="color: #CC0099;">!=</span> <span style="color: #CC0099;">-</span><span style="color: #008080;">1</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://pleskhacker.com/sql-queries/find-domains-over-quota-in-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Plesk FTP account passwords</title>
		<link>http://pleskhacker.com/sql-queries/get-ftp-account-passwords/</link>
		<comments>http://pleskhacker.com/sql-queries/get-ftp-account-passwords/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 03:21:56 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[MySQL Queries]]></category>
		<category><![CDATA[Web Queries]]></category>
		<category><![CDATA[accounts]]></category>
		<category><![CDATA[sys_users]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=294</guid>
		<description><![CDATA[Display all of the FTP usernames and passwords in Plesk:

SELECT REPLACE&#40;sys_users.home,'/home/httpd/vhosts/',''&#41; AS domain,
sys_users.login,accounts.password FROM sys_users
LEFT JOIN accounts on sys_users.account_id=accounts.id
ORDER BY sys_users.home ASC;

]]></description>
			<content:encoded><![CDATA[<p>Display all of the FTP usernames and passwords in Plesk:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #000099;">REPLACE</span><span style="color: #FF00FF;">&#40;</span>sys_users.home<span style="color: #000033;">,</span><span style="color: #008000;">'/home/httpd/vhosts/'</span><span style="color: #000033;">,</span><span style="color: #008000;">''</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">AS</span> domain<span style="color: #000033;">,</span>
sys_users.login<span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span> <span style="color: #990099; font-weight: bold;">FROM</span> sys_users
<span style="color: #000099;">LEFT</span> <span style="color: #990099; font-weight: bold;">JOIN</span> accounts <span style="color: #990099; font-weight: bold;">on</span> sys_users.account_id<span style="color: #CC0099;">=</span>accounts.id
<span style="color: #990099; font-weight: bold;">ORDER BY</span> sys_users.home <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://pleskhacker.com/sql-queries/get-ftp-account-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get e-mail account passwords</title>
		<link>http://pleskhacker.com/sql-queries/get-e-mail-account-passwords/</link>
		<comments>http://pleskhacker.com/sql-queries/get-e-mail-account-passwords/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 03:13:15 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[Mail Queries]]></category>
		<category><![CDATA[MySQL Queries]]></category>
		<category><![CDATA[accounts]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[domainservices]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[parameters]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=286</guid>
		<description><![CDATA[Get all e-mail account passwords:

SELECT CONCAT_WS&#40;'@',mail.mail_name,domains.name&#41;,accounts.password
FROM domains,mail,accounts 
WHERE domains.id=mail.dom_id AND accounts.id=mail.account_id 
ORDER BY domains.name ASC,mail.mail_name ASC;


Get e-mail account passwords that are made up of only letters:

SELECT CONCAT_WS&#40;'@',mail.mail_name,domains.name&#41;,accounts.password
FROM domains,mail,accounts
WHERE domains.id=mail.dom_id AND accounts.id=mail.account_id 
AND accounts.password RLIKE BINARY '^[a-z]+$'
ORDER BY domains.name ASC,mail.mail_name ASC;

Get e-mail account passwords that are made up of only letters

SELECT CONCAT_WS&#40;'@',mail.mail_name,domains.name&#41;,accounts.password
FROM domains,mail,accounts
WHERE domains.id=mail.dom_id AND accounts.id=mail.account_id [...]]]></description>
			<content:encoded><![CDATA[<p>Get all e-mail account passwords:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #000099;">CONCAT_WS</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'@'</span><span style="color: #000033;">,</span>mail.mail_name<span style="color: #000033;">,</span>domains.name<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span>mail<span style="color: #000033;">,</span>accounts 
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.id<span style="color: #CC0099;">=</span>mail.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> accounts.id<span style="color: #CC0099;">=</span>mail.account_id 
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">,</span>mail.mail_name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div>

<pre></pre>
<p>Get e-mail account passwords that are made up of only letters:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #000099;">CONCAT_WS</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'@'</span><span style="color: #000033;">,</span>mail.mail_name<span style="color: #000033;">,</span>domains.name<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span>mail<span style="color: #000033;">,</span>accounts
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.id<span style="color: #CC0099;">=</span>mail.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> accounts.id<span style="color: #CC0099;">=</span>mail.account_id 
<span style="color: #CC0099; font-weight: bold;">AND</span> accounts.<span style="color: #000099;">password</span> <span style="color: #CC0099; font-weight: bold;">RLIKE</span> <span style="color: #990099; font-weight: bold;">BINARY</span> <span style="color: #008000;">'^[a-z]+$'</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">,</span>mail.mail_name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div>

<p>Get e-mail account passwords that are made up of only letters</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #000099;">CONCAT_WS</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'@'</span><span style="color: #000033;">,</span>mail.mail_name<span style="color: #000033;">,</span>domains.name<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span>mail<span style="color: #000033;">,</span>accounts
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.id<span style="color: #CC0099;">=</span>mail.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> accounts.id<span style="color: #CC0099;">=</span>mail.account_id 
<span style="color: #CC0099; font-weight: bold;">AND</span> accounts.<span style="color: #000099;">password</span> <span style="color: #CC0099; font-weight: bold;">RLIKE</span>  <span style="color: #008000;">'^[0-9]+$'</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">,</span>mail.mail_name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div>

<p>Find domains that are using catch-all accounts:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> d.name <span style="color: #990099; font-weight: bold;">AS</span> domains<span style="color: #000033;">,</span> p.<span style="color: #990099; font-weight: bold;">value</span> <span style="color: #990099; font-weight: bold;">AS</span> catchall_address
<span style="color: #990099; font-weight: bold;">FROM</span> Parameters p<span style="color: #000033;">,</span> DomainServices ds<span style="color: #000033;">,</span> domains d
<span style="color: #990099; font-weight: bold;">WHERE</span> d.id <span style="color: #CC0099;">=</span> ds.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> ds.parameters_id <span style="color: #CC0099;">=</span> p.id <span style="color: #CC0099; font-weight: bold;">AND</span> p.parameter <span style="color: #CC0099;">=</span> <span style="color: #008000;">'catch<span style="color: #008080; font-weight: bold;">_</span>addr'</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> d.name</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://pleskhacker.com/sql-queries/get-e-mail-account-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add SpamAssassin filtering for all Plesk users</title>
		<link>http://pleskhacker.com/sql-queries/add-spam-filtering-for-all-plesk-users/</link>
		<comments>http://pleskhacker.com/sql-queries/add-spam-filtering-for-all-plesk-users/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 03:10:29 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[Mail Queries]]></category>
		<category><![CDATA[MySQL Queries]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=282</guid>
		<description><![CDATA[Enable SpamAssassin for all domains in Plesk:

UPDATE mail SET spamfilter = 'true' WHERE postbox = 'true';

Rewrite the mail configuration files:

/usr/local/psa/admin/bin/mchk --with-spam

]]></description>
			<content:encoded><![CDATA[<p>Enable SpamAssassin for all domains in Plesk:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">UPDATE</span> mail <span style="color: #990099; font-weight: bold;">SET</span> spamfilter <span style="color: #CC0099;">=</span> <span style="color: #008000;">'true'</span> <span style="color: #990099; font-weight: bold;">WHERE</span> postbox <span style="color: #CC0099;">=</span> <span style="color: #008000;">'true'</span><span style="color: #000033;">;</span></pre></div></div>

<p>Rewrite the mail configuration files:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">/usr/local/psa/admin/bin/mchk --with-spam</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://pleskhacker.com/sql-queries/add-spam-filtering-for-all-plesk-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable piped logs in Apache</title>
		<link>http://pleskhacker.com/sql-queries/enable-piped-logs-in-apache/</link>
		<comments>http://pleskhacker.com/sql-queries/enable-piped-logs-in-apache/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 02:56:20 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[MySQL Queries]]></category>
		<category><![CDATA[Web Queries]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[piped logs]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=271</guid>
		<description><![CDATA[Run the following MySQL query:

REPLACE INTO psa.misc &#40;param,val&#41; VALUES &#40;'apache_pipelog', 'true'&#41;;

Rebuild the Apache configuration files:

/usr/local/psa/admin/sbin/websrvmng -av

Restart Apache:

/etc/init.d/httpd restart

]]></description>
			<content:encoded><![CDATA[<p>Run the following MySQL query:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">REPLACE</span> <span style="color: #990099; font-weight: bold;">INTO</span> psa.misc <span style="color: #FF00FF;">&#40;</span>param<span style="color: #000033;">,</span>val<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">VALUES</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'apache<span style="color: #008080; font-weight: bold;">_</span>pipelog'</span><span style="color: #000033;">,</span> <span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span></pre></div></div>

<p>Rebuild the Apache configuration files:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">/usr/local/psa/admin/sbin/websrvmng -av</pre></div></div>

<p>Restart Apache:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">/etc/init.d/httpd restart</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://pleskhacker.com/sql-queries/enable-piped-logs-in-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 auto_increment,
 `spamfilter_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>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 false
Table Structure

CREATE TABLE `spamfilter` &#40;
 `id` [...]]]></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.BackupsObjects</title>
		<link>http://pleskhacker.com/all-tables/domains-all-tables/psabackupsobjects/</link>
		<comments>http://pleskhacker.com/all-tables/domains-all-tables/psabackupsobjects/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 02:25:07 +0000</pubDate>
		<dc:creator>major</dc:creator>
				<category><![CDATA[All Tables]]></category>
		<category><![CDATA[Clients]]></category>
		<category><![CDATA[Domains]]></category>
		<category><![CDATA[backupsobjects]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[domains]]></category>

		<guid isPermaLink="false">http://pleskhacker.com/?p=264</guid>
		<description><![CDATA[Overview
The BackupsObjects table contains information about completed backups.
Column Descriptions
id &#8211; primary key that is automatically incremented
obj_id &#8211; links to id in clients or domains table, depending on obj_type column
obj_type &#8211; type of data being backed up; can be client or domain
Table Structure

CREATE TABLE `BackupsObjects` &#40;
 `id` int&#40;10&#41; unsigned NOT NULL auto_increment,
 `obj_id` int&#40;10&#41; unsigned NOT [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br />
The <code>BackupsObjects</code> table contains information about completed backups.</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>obj_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_clients/">clients</a></code> or <code><a href="/all-tables/psa_domains/">domains</a></code> table, depending on <code>obj_type</code> column<br />
<strong>obj_type</strong> &#8211; type of data being backed up; can be <code>client</code> or <code>domain</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;">`BackupsObjects`</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;">`obj<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;">`obj<span style="color: #008080; font-weight: bold;">_</span>type`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'client'</span><span style="color: #000033;">,</span><span style="color: #008000;">'domain'</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;">'client'</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: #000033;">,</span><span style="color: #008000;">`obj<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`obj<span style="color: #008080; font-weight: bold;">_</span>type`</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/domains-all-tables/psabackupsobjects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
