<?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 for Debian Tutorials</title>
	<atom:link href="http://www.debiantutorials.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.debiantutorials.net</link>
	<description>Copy/Paste tutorials for Debian Linux</description>
	<lastBuildDate>Mon, 01 Mar 2010 20:11:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Installing the GeoIP Apache module by aip</title>
		<link>http://www.debiantutorials.net/installing-the-geoip-apache-module/comment-page-1/#comment-1303</link>
		<dc:creator>aip</dc:creator>
		<pubDate>Mon, 01 Mar 2010 20:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.debiantutorials.net/?p=244#comment-1303</guid>
		<description>Yes you can but you may require a license for that. Check the GeoIP Apache module web: http://www.maxmind.com/app/ip-location</description>
		<content:encoded><![CDATA[<p>Yes you can but you may require a license for that. Check the GeoIP Apache module web: <a href="http://www.maxmind.com/app/ip-location" rel="nofollow">http://www.maxmind.com/app/ip-location</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing the GeoIP Apache module by Tárikly Lira</title>
		<link>http://www.debiantutorials.net/installing-the-geoip-apache-module/comment-page-1/#comment-1301</link>
		<dc:creator>Tárikly Lira</dc:creator>
		<pubDate>Sun, 28 Feb 2010 13:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.debiantutorials.net/?p=244#comment-1301</guid>
		<description>Interesting, but is it possible to create a rule to restrict accesss by region or city?</description>
		<content:encoded><![CDATA[<p>Interesting, but is it possible to create a rule to restrict accesss by region or city?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Postfix with MySql backend and SASL for SMTP authentication by Masters</title>
		<link>http://www.debiantutorials.net/installing-postfix-with-mysql-backend-and-sasl-for-smtp-authentication/comment-page-1/#comment-1300</link>
		<dc:creator>Masters</dc:creator>
		<pubDate>Sat, 20 Feb 2010 08:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.debiantutorials.net/?p=186#comment-1300</guid>
		<description>If in log show this msg.
SASL authentication failure: cannot connect to saslauthd server: Permission denied

Add this command in tutorial

adduser postfix sasl
/etc/init.d/postfix restart</description>
		<content:encoded><![CDATA[<p>If in log show this msg.<br />
SASL authentication failure: cannot connect to saslauthd server: Permission denied</p>
<p>Add this command in tutorial</p>
<p>adduser postfix sasl<br />
/etc/init.d/postfix restart</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monitoring PowerDNS with MRTG by microgluf</title>
		<link>http://www.debiantutorials.net/monitoring-powerdns-with-mrtg/comment-page-1/#comment-1298</link>
		<dc:creator>microgluf</dc:creator>
		<pubDate>Wed, 17 Feb 2010 00:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://debiantutorials.net/monitoring-powerdns-with-mrtg/#comment-1298</guid>
		<description>Great post. Thanks for the easy cut &amp; paste.</description>
		<content:encoded><![CDATA[<p>Great post. Thanks for the easy cut &amp; paste.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing vsftpd with MySql backend by tomehb</title>
		<link>http://www.debiantutorials.net/installing-vsftpd-with-mysql-backend/comment-page-1/#comment-1297</link>
		<dc:creator>tomehb</dc:creator>
		<pubDate>Mon, 15 Feb 2010 22:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.debiantutorials.net/?p=100#comment-1297</guid>
		<description>Little Script to create user automatic....


#!/usr/bin/perl
# Script to Add New Virtual FTP Users &amp; Create a FTP Dir
# # Version 0.1 - Thomas Stewart Buchanan - 15/02/2010
use strict;
use warnings;
use DBI;

# MYSQL VARIABLES
my $database = &quot;DBI:mysql:vsftpd&quot;;
my $tablename = &quot;accounts&quot;;
my $user = &quot;vsftpd&quot;;
my $pw = &quot;ftpuserpass&quot;;

# GATHER USER DETAILS
print &quot;Enter the name of the new FTP user:\n&quot;;
chomp(my $inUser = );
print &quot;Please now enter a password for user $inUser:\n&quot;;
chomp(my $inPw = );
print &quot;Thankyou \n&quot;;


# PERL MYSQL CONNECT
my $dbh = DBI-&gt;connect($database, $user, $pw) &#124;&#124; die &quot;Could not connect to database: $DBI::errstr&quot;;

# MYSQL QUERY TO INSERT User
my $queryInsertUser = $dbh-&gt;do(&quot;INSERT INTO $tablename (username, pass) VALUES(&#039;$inUser&#039;, PASSWORD(&#039;$inPw&#039;))&quot;);

# DISCONNECTS FROM DATABASE
$dbh-&gt;disconnect &#124;&#124; warn &quot;Disconnection failed: $DBI::errstr&quot;;

# CREATES USER DIR
mkdir (&quot;/home/vsftpd/$inUser&quot;) &#124;&#124; print $!;

# Sets ownership of the ftp dirs
my $chown = system(&quot;chown -R vsftpd:nogroup /home/vsftpd&quot;);


exit;</description>
		<content:encoded><![CDATA[<p>Little Script to create user automatic&#8230;.</p>
<p>#!/usr/bin/perl<br />
# Script to Add New Virtual FTP Users &amp; Create a FTP Dir<br />
# # Version 0.1 &#8211; Thomas Stewart Buchanan &#8211; 15/02/2010<br />
use strict;<br />
use warnings;<br />
use DBI;</p>
<p># MYSQL VARIABLES<br />
my $database = &#8220;DBI:mysql:vsftpd&#8221;;<br />
my $tablename = &#8220;accounts&#8221;;<br />
my $user = &#8220;vsftpd&#8221;;<br />
my $pw = &#8220;ftpuserpass&#8221;;</p>
<p># GATHER USER DETAILS<br />
print &#8220;Enter the name of the new FTP user:\n&#8221;;<br />
chomp(my $inUser = );<br />
print &#8220;Please now enter a password for user $inUser:\n&#8221;;<br />
chomp(my $inPw = );<br />
print &#8220;Thankyou \n&#8221;;</p>
<p># PERL MYSQL CONNECT<br />
my $dbh = DBI-&gt;connect($database, $user, $pw) || die &#8220;Could not connect to database: $DBI::errstr&#8221;;</p>
<p># MYSQL QUERY TO INSERT User<br />
my $queryInsertUser = $dbh-&gt;do(&#8221;INSERT INTO $tablename (username, pass) VALUES(&#8217;$inUser&#8217;, PASSWORD(&#8217;$inPw&#8217;))&#8221;);</p>
<p># DISCONNECTS FROM DATABASE<br />
$dbh-&gt;disconnect || warn &#8220;Disconnection failed: $DBI::errstr&#8221;;</p>
<p># CREATES USER DIR<br />
mkdir (&#8221;/home/vsftpd/$inUser&#8221;) || print $!;</p>
<p># Sets ownership of the ftp dirs<br />
my $chown = system(&#8221;chown -R vsftpd:nogroup /home/vsftpd&#8221;);</p>
<p>exit;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing VMware tools on lenny by usyxs</title>
		<link>http://www.debiantutorials.net/installing-vmware-tools-on-lenny/comment-page-1/#comment-1296</link>
		<dc:creator>usyxs</dc:creator>
		<pubDate>Fri, 12 Feb 2010 08:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://debiantutorials.net/?p=35#comment-1296</guid>
		<description>Great! Wors fine! THX A LOT!</description>
		<content:encoded><![CDATA[<p>Great! Wors fine! THX A LOT!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Zend Optimizer by LordRaven</title>
		<link>http://www.debiantutorials.net/installing-zend-optimizer/comment-page-1/#comment-1294</link>
		<dc:creator>LordRaven</dc:creator>
		<pubDate>Fri, 22 Jan 2010 17:17:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.debiantutorials.net/?p=109#comment-1294</guid>
		<description>works fine, thanks a lot!</description>
		<content:encoded><![CDATA[<p>works fine, thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing DSPAM with ClamAV for Postfix on lenny by Greg</title>
		<link>http://www.debiantutorials.net/installing-dspam-with-clamav-for-postfix-on-lenny/comment-page-1/#comment-1292</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Thu, 14 Jan 2010 17:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.debiantutorials.net/?p=81#comment-1292</guid>
		<description>Great tute.  It&#039;s not the most in-depth, but it&#039;s the most helpful Debain/DSPAM tutorial I&#039;ve seen to date.

One question though.......
You don&#039;t setup any global groups, yet you do the initial training with user &quot;test&quot;.  Without a group or user named test, how is the training going to help?</description>
		<content:encoded><![CDATA[<p>Great tute.  It&#8217;s not the most in-depth, but it&#8217;s the most helpful Debain/DSPAM tutorial I&#8217;ve seen to date.</p>
<p>One question though&#8230;&#8230;.<br />
You don&#8217;t setup any global groups, yet you do the initial training with user &#8220;test&#8221;.  Without a group or user named test, how is the training going to help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing vsftpd using text file for virtual users by Jacob Fich</title>
		<link>http://www.debiantutorials.net/installing-vsftpd-using-text-file-for-virtual-users/comment-page-1/#comment-1291</link>
		<dc:creator>Jacob Fich</dc:creator>
		<pubDate>Sat, 02 Jan 2010 23:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.debiantutorials.net/?p=98#comment-1291</guid>
		<description>Hi.

NICE howto!

How do I create a symbolic link to an other virtual users files?</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>NICE howto!</p>
<p>How do I create a symbolic link to an other virtual users files?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing ionCube by subikar</title>
		<link>http://www.debiantutorials.net/installing-ioncube/comment-page-1/#comment-1289</link>
		<dc:creator>subikar</dc:creator>
		<pubDate>Thu, 03 Dec 2009 08:52:55 +0000</pubDate>
		<guid isPermaLink="false">http://debiantutorials.net/?p=55#comment-1289</guid>
		<description>Thank you very much man. This really help me do the work pretty quick.</description>
		<content:encoded><![CDATA[<p>Thank you very much man. This really help me do the work pretty quick.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
