<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: View All Email Account Passwords in Plesk</title>
	<atom:link href="http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/</link>
	<description>Internet Marketing, Website Promotion and Blogging Advice</description>
	<lastBuildDate>Sun, 29 Jan 2012 02:18:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Dave Muller</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-175931</link>
		<dc:creator>Dave Muller</dc:creator>
		<pubDate>Thu, 14 Oct 2010 05:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-175931</guid>
		<description>This is a slightly improved query:

select concat(m.mail_name, &#039;@&#039;,d.name) as Email, convert(a.password, char) as Password, m.mail_name as User, d.name as Domain
from domains d
join mail m on m.dom_id = d.id
join accounts a ON a.id = m.account_id
order by d.name, m.mail_name

You can add a where as needed, e.g.

where d.name = &#039;mydomain.com.au&#039;</description>
		<content:encoded><![CDATA[<p>This is a slightly improved query:</p>
<p>select concat(m.mail_name, &#8216;@&#8217;,d.name) as Email, convert(a.password, char) as Password, m.mail_name as User, d.name as Domain<br />
from domains d<br />
join mail m on m.dom_id = d.id<br />
join accounts a ON a.id = m.account_id<br />
order by d.name, m.mail_name</p>
<p>You can add a where as needed, e.g.</p>
<p>where d.name = &#8216;mydomain.com.au&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-167832</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Tue, 15 Jun 2010 02:02:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-167832</guid>
		<description>In Plesk 9 try the mail_auth_view script

In Ubuntu located at 
/usr/local/psa/admin/bin/mail_auth_view</description>
		<content:encoded><![CDATA[<p>In Plesk 9 try the mail_auth_view script</p>
<p>In Ubuntu located at<br />
/usr/local/psa/admin/bin/mail_auth_view</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Hudson</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-160513</link>
		<dc:creator>Paul Hudson</dc:creator>
		<pubDate>Wed, 17 Feb 2010 11:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-160513</guid>
		<description>One way to do this is:

ssh into the server then:

&gt; mysql -u username -p -D psa
then
&gt;password: password
then
mysql&gt;SELECT accounts.id, mail.mail_name, accounts.password, domains.name FROM domains LEFT JOIN mail ON domains.id = mail.dom_id LEFT JOIN accounts ON mail.account_id = accounts.id;

If you only want password for one domain then just add:

WHERE domains.name = &#039;domainname.com&#039;;

Hope that helps someone.

Paul</description>
		<content:encoded><![CDATA[<p>One way to do this is:</p>
<p>ssh into the server then:</p>
<p>&gt; mysql -u username -p -D psa<br />
then<br />
&gt;password: password<br />
then<br />
mysql&gt;SELECT accounts.id, mail.mail_name, accounts.password, domains.name FROM domains LEFT JOIN mail ON domains.id = mail.dom_id LEFT JOIN accounts ON mail.account_id = accounts.id;</p>
<p>If you only want password for one domain then just add:</p>
<p>WHERE domains.name = &#8216;domainname.com&#8217;;</p>
<p>Hope that helps someone.</p>
<p>Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-137312</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 12 Apr 2009 14:02:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-137312</guid>
		<description>Where do I execute this query?

If I go to Server &gt; Database Servers &gt; MySql, I can only see my own databases.

How do I get at this psa database? Thanks.</description>
		<content:encoded><![CDATA[<p>Where do I execute this query?</p>
<p>If I go to Server &gt; Database Servers &gt; MySql, I can only see my own databases.</p>
<p>How do I get at this psa database? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-116510</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 30 Nov 2008 10:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-116510</guid>
		<description>Worked fine. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Worked fine. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bilabila</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-115088</link>
		<dc:creator>bilabila</dc:creator>
		<pubDate>Sun, 23 Nov 2008 12:43:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-115088</guid>
		<description>cool. I transfer my websites to new server and try to this way get all mail list today. Save my many time!</description>
		<content:encoded><![CDATA[<p>cool. I transfer my websites to new server and try to this way get all mail list today. Save my many time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpot222</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-50073</link>
		<dc:creator>philpot222</dc:creator>
		<pubDate>Fri, 11 Apr 2008 10:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-50073</guid>
		<description>I found this qry more helpful when i migrated.

select accounts.id, concat(mail.mail_name,&#039;@&#039;,domains.name), accounts.password from mail left join domains on domains.id = mail.dom_id left join accounts on mail.account_id = accounts.id;</description>
		<content:encoded><![CDATA[<p>I found this qry more helpful when i migrated.</p>
<p>select accounts.id, concat(mail.mail_name,&#8217;@',domains.name), accounts.password from mail left join domains on domains.id = mail.dom_id left join accounts on mail.account_id = accounts.id;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Increase Search Engine Ranking</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-43945</link>
		<dc:creator>Increase Search Engine Ranking</dc:creator>
		<pubDate>Thu, 06 Mar 2008 16:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-43945</guid>
		<description>One other thing. If someone has breached your server to the point where they are are able to view your shadow file, or your plesk file where the passwords are kept (cleartext or not), then you have bigger problems and email should be the least of your concern.

It seems more like a reason to pass judgement, which is far easier to do than to produce something. You can&#039;t expect to do anything in this world that is great or even above standard, without being criticized.

On the other hand, it does beg one to ask, if they have that &quot;hole&quot;, what other &quot;holes&quot; may exist? So from that perspective, I appreciate everyone&#039;s efforts in keeping a sharp eye out for the community!

Crack Google
Offering Free Search Engine Optimization Support</description>
		<content:encoded><![CDATA[<p>One other thing. If someone has breached your server to the point where they are are able to view your shadow file, or your plesk file where the passwords are kept (cleartext or not), then you have bigger problems and email should be the least of your concern.</p>
<p>It seems more like a reason to pass judgement, which is far easier to do than to produce something. You can&#8217;t expect to do anything in this world that is great or even above standard, without being criticized.</p>
<p>On the other hand, it does beg one to ask, if they have that &#8220;hole&#8221;, what other &#8220;holes&#8221; may exist? So from that perspective, I appreciate everyone&#8217;s efforts in keeping a sharp eye out for the community!</p>
<p>Crack Google<br />
Offering Free Search Engine Optimization Support</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Increase Search Engine Ranking</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-42567</link>
		<dc:creator>Increase Search Engine Ranking</dc:creator>
		<pubDate>Fri, 29 Feb 2008 18:47:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-42567</guid>
		<description>Plesk should allow you to use the same password for a username that is the same on another domain. This issue is major pain for any admin who likes to use a default account for all domains they are hosing, for example Webmaster or something like that.

I share your pain,


Crack Google
Offering Free Search Engine Optimization Support.</description>
		<content:encoded><![CDATA[<p>Plesk should allow you to use the same password for a username that is the same on another domain. This issue is major pain for any admin who likes to use a default account for all domains they are hosing, for example Webmaster or something like that.</p>
<p>I share your pain,</p>
<p>Crack Google<br />
Offering Free Search Engine Optimization Support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ses5909</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-625</link>
		<dc:creator>ses5909</dc:creator>
		<pubDate>Wed, 28 Feb 2007 22:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-625</guid>
		<description>But its not rocket-science to pull text out of a blob. I would have assumed before looking in there that they used md5.</description>
		<content:encoded><![CDATA[<p>But its not rocket-science to pull text out of a blob. I would have assumed before looking in there that they used md5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eo</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-623</link>
		<dc:creator>eo</dc:creator>
		<pubDate>Wed, 28 Feb 2007 22:12:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-623</guid>
		<description>passwords are not stored in plaintext but as blob. blobs will be converted to plain text by choice on export</description>
		<content:encoded><![CDATA[<p>passwords are not stored in plaintext but as blob. blobs will be converted to plain text by choice on export</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tamar Weinberg</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-347</link>
		<dc:creator>Tamar Weinberg</dc:creator>
		<pubDate>Thu, 08 Feb 2007 15:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-347</guid>
		<description>Yes, it is strange but convenient for PHP scripts too.  At least it&#039;s stored in a database that requires access and not in individual files!</description>
		<content:encoded><![CDATA[<p>Yes, it is strange but convenient for PHP scripts too.  At least it&#8217;s stored in a database that requires access and not in individual files!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ses5909</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-346</link>
		<dc:creator>ses5909</dc:creator>
		<pubDate>Thu, 08 Feb 2007 14:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-346</guid>
		<description>Yep. There is a lot of issue with that as I&#039;m sure you can imagine. Having all of the passwords for your server stored in plain text.. but.. it doesn&#039;t stop me from using it :D</description>
		<content:encoded><![CDATA[<p>Yep. There is a lot of issue with that as I&#8217;m sure you can imagine. Having all of the passwords for your server stored in plain text.. but.. it doesn&#8217;t stop me from using it <img src='http://www.search-this.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golgotha</title>
		<link>http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/comment-page-1/#comment-345</link>
		<dc:creator>Golgotha</dc:creator>
		<pubDate>Thu, 08 Feb 2007 13:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/02/07/view-all-email-account-passwords-in-plesk/#comment-345</guid>
		<description>Did I read that right? Passwords are stored in plain text? Ouch...</description>
		<content:encoded><![CDATA[<p>Did I read that right? Passwords are stored in plain text? Ouch&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

