<?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 Apis Networks Community Updates</title>
	<atom:link href="http://updates.apisnetworks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://updates.apisnetworks.com</link>
	<description>Your one-stop place for Apis Networks web hosting updates</description>
	<lastBuildDate>Thu, 21 May 2009 14:45:17 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Designing the next generation server by New: Global SpamAssassin Preferences (and some software updates) &#124; Apis Networks Community Updates</title>
		<link>http://updates.apisnetworks.com/2009/04/designing-the-next-generation-server/comment-page-1/#comment-4141</link>
		<dc:creator>New: Global SpamAssassin Preferences (and some software updates) &#124; Apis Networks Community Updates</dc:creator>
		<pubDate>Thu, 21 May 2009 14:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=199#comment-4141</guid>
		<description>[...] SpamAssassin rules have been introduced after the idea was introduced by a user in a previous blog posting.  Global preferences provide a convenient way to change [...]</description>
		<content:encoded><![CDATA[<p>[...] SpamAssassin rules have been introduced after the idea was introduced by a user in a previous blog posting.  Global preferences provide a convenient way to change [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing the next generation server by Matt</title>
		<link>http://updates.apisnetworks.com/2009/04/designing-the-next-generation-server/comment-page-1/#comment-4034</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Sat, 11 Apr 2009 00:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=199#comment-4034</guid>
		<description>&lt;strong&gt;Global repository&lt;/strong&gt;:      
PEAR is only possible by Apache running outside the filesystem jail.  CGI applications would require a shared mount for each account that enrolls in such a service.  I could strip the documentation and source from gem installations initiated through the control panel -- that&#039;s a good suggestion that I can implement before the Fifth Generation is rolled out.      
      
&lt;strong&gt;Dropping @domain&lt;/strong&gt;:      
I sense this will become the most requested change by May... :)  Implementing a facility that allows logins without @domain for the primary user &lt;em&gt;that&lt;/em&gt; also jails entails ditching Ensim&#039;s proprietary NSS and PAM modules.  Possible, planned down the road, but basically too intensive to add to the work queue right now.        
      
You can substitute &#039;@&#039; with &#039;#&#039;.  Some clients, FTP come to mind, have difficulty parsing the URI if &#039;@&#039; is present more than once.  A sufficiently newer OpenSSH may fix the warning with scp, but I would recommend rsync instead.  More flexible in its options, accepts &#039;#&#039; in the login, plus faster in my experience.  rsync -a foo#foobar.com@foobar.com:/home/abc or you could setup a function...       
  
function remsync { ARGS=($@) ; LEN=${#ARGS[@]} ;  FILES=${ARGS[@]:0:$(($LEN-1))} ; DIR=${ARGS[@]:$(($LEN-1))} ;  rsync -a  $FILES foo#foobar.com@foobar.com:&quot;$DIR&quot; ;  }    
      
(&lt;em&gt;Well that sucks... no code or pre tag support with the comment system.  At least it&#039;s only an ugly one-liner.&lt;/em&gt;)   
   
Need to copy something over?  remsync /my/files/a /home      
rsync will &lt;a href=&quot;http:%5C/%5C/man.apisnetworks.com%5C/linux-man%5C/man1%5C/rsync.1.html&quot; rel=&quot;nofollow&quot;&gt;recursively copy&lt;/a&gt; directory contents with the -a flag.  You could &lt;a href=&quot;http:%5C/%5C/tldp.org%5C/LDP%5C/abs%5C/html%5C/internal.html#EX33&quot; rel=&quot;nofollow&quot;&gt;add flag support with getopts&lt;/a&gt; to arbitrarily supply arguments such as -a... </description>
		<content:encoded><![CDATA[<p><strong>Global repository</strong>:<br />
PEAR is only possible by Apache running outside the filesystem jail.  CGI applications would require a shared mount for each account that enrolls in such a service.  I could strip the documentation and source from gem installations initiated through the control panel &#8212; that&#39;s a good suggestion that I can implement before the Fifth Generation is rolled out.      </p>
<p><strong>Dropping @domain</strong>:<br />
I sense this will become the most requested change by May&#8230; <img src='http://updates.apisnetworks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Implementing a facility that allows logins without @domain for the primary user <em>that</em> also jails entails ditching Ensim&#39;s proprietary NSS and PAM modules.  Possible, planned down the road, but basically too intensive to add to the work queue right now.        </p>
<p>You can substitute &#39;@&#39; with &#39;#&#39;.  Some clients, FTP come to mind, have difficulty parsing the URI if &#39;@&#39; is present more than once.  A sufficiently newer OpenSSH may fix the warning with scp, but I would recommend rsync instead.  More flexible in its options, accepts &#39;#&#39; in the login, plus faster in my experience.  rsync -a foo#foobar.com@foobar.com:/home/abc or you could setup a function&#8230;       </p>
<p>function remsync { ARGS=($@) ; LEN=${#ARGS[@]} ;  FILES=${ARGS[@]:0:$(($LEN-1))} ; DIR=${ARGS[@]:$(($LEN-1))} ;  rsync -a  $FILES foo#foobar.com@foobar.com:&quot;$DIR&quot; ;  }    </p>
<p>(<em>Well that sucks&#8230; no code or pre tag support with the comment system.  At least it&#39;s only an ugly one-liner.</em>)   </p>
<p>Need to copy something over?  remsync /my/files/a /home<br />
rsync will <a href="http:%5C/%5C/man.apisnetworks.com%5C/linux-man%5C/man1%5C/rsync.1.html" rel="nofollow">recursively copy</a> directory contents with the -a flag.  You could <a href="http:%5C/%5C/tldp.org%5C/LDP%5C/abs%5C/html%5C/internal.html#EX33" rel="nofollow">add flag support with getopts</a> to arbitrarily supply arguments such as -a&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing the next generation server by Matt</title>
		<link>http://updates.apisnetworks.com/2009/04/designing-the-next-generation-server/comment-page-1/#comment-4033</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 10 Apr 2009 17:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=199#comment-4033</guid>
		<description>&lt;strong&gt;Test&lt;/strong&gt;... </description>
		<content:encoded><![CDATA[<p><strong>Test</strong>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing the next generation server by Harith</title>
		<link>http://updates.apisnetworks.com/2009/04/designing-the-next-generation-server/comment-page-1/#comment-4008</link>
		<dc:creator>Harith</dc:creator>
		<pubDate>Tue, 07 Apr 2009 16:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=199#comment-4008</guid>
		<description>Matt: great to hear it&#039;s feasible. It would be very useful for at least one of the people I referred you to. :)</description>
		<content:encoded><![CDATA[<p>Matt: great to hear it&#8217;s feasible. It would be very useful for at least one of the people I referred you to. <img src='http://updates.apisnetworks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing the next generation server by Ryan</title>
		<link>http://updates.apisnetworks.com/2009/04/designing-the-next-generation-server/comment-page-1/#comment-3991</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 06 Apr 2009 11:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=199#comment-3991</guid>
		<description>Two suggestions, although I&#039;m not sure about the feasibility of them both.

* Global repository of popular rubygems (and PEAR/python eggs?) as they can take a bit of space. I stripped 100MB of documentation from the gems installed on my site for example, and I don&#039;t have a necessarily large gem collection either. 
* SSH login without using username@domain.org username. The only reason for this is because scp thinks username#domain.org is invalid and the command-line syntax doesn&#039;t accommodate @&#039;s. I concede there&#039;s probably a good workaround for this and I&#039;m a bit of a shell amateur.</description>
		<content:encoded><![CDATA[<p>Two suggestions, although I&#8217;m not sure about the feasibility of them both.</p>
<p>* Global repository of popular rubygems (and PEAR/python eggs?) as they can take a bit of space. I stripped 100MB of documentation from the gems installed on my site for example, and I don&#8217;t have a necessarily large gem collection either.<br />
* SSH login without using <a href="mailto:username@domain.org">username@domain.org</a> username. The only reason for this is because scp thinks username#domain.org is invalid and the command-line syntax doesn&#8217;t accommodate @&#8217;s. I concede there&#8217;s probably a good workaround for this and I&#8217;m a bit of a shell amateur.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing the next generation server by Matt</title>
		<link>http://updates.apisnetworks.com/2009/04/designing-the-next-generation-server/comment-page-1/#comment-3988</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 03 Apr 2009 16:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=199#comment-3988</guid>
		<description>It is definitely something that I can either work into the next generation or integrate immediately.  Accounts currently have access to global maildrop filtering through /etc/maildroprc.  Account-wide rules would be implemented as a custom patch to SpamAssassin.</description>
		<content:encoded><![CDATA[<p>It is definitely something that I can either work into the next generation or integrate immediately.  Accounts currently have access to global maildrop filtering through /etc/maildroprc.  Account-wide rules would be implemented as a custom patch to SpamAssassin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Designing the next generation server by Harith</title>
		<link>http://updates.apisnetworks.com/2009/04/designing-the-next-generation-server/comment-page-1/#comment-3987</link>
		<dc:creator>Harith</dc:creator>
		<pubDate>Thu, 02 Apr 2009 21:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=199#comment-3987</guid>
		<description>Hey Matt,

Thanks for letting us give some input! This is one of the many reasons why Apis is one of the best hosts around.

I just have one query for now, and I apologize if this can already be done: site-wide spamassassin settings in one go, i.e. setting filters and scores etc. for every user.</description>
		<content:encoded><![CDATA[<p>Hey Matt,</p>
<p>Thanks for letting us give some input! This is one of the many reasons why Apis is one of the best hosts around.</p>
<p>I just have one query for now, and I apologize if this can already be done: site-wide spamassassin settings in one go, i.e. setting filters and scores etc. for every user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImageMagick 6.4 now available by Harith</title>
		<link>http://updates.apisnetworks.com/2009/01/imagemagick-64-now-available/comment-page-1/#comment-2688</link>
		<dc:creator>Harith</dc:creator>
		<pubDate>Sat, 10 Jan 2009 22:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=137#comment-2688</guid>
		<description>Hey thanks! Now Gallery won&#039;t complain about imagemagick being old and a security problem. ;)</description>
		<content:encoded><![CDATA[<p>Hey thanks! Now Gallery won&#8217;t complain about imagemagick being old and a security problem. <img src='http://updates.apisnetworks.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Esprit Update: user management changeover, error reporting facility changes by Matt</title>
		<link>http://updates.apisnetworks.com/2008/12/esprit-update-user-management-changeover-error-reporting-facility-changes/comment-page-1/#comment-2364</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 17 Dec 2008 16:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=119#comment-2364</guid>
		<description>Yesterday&#039;s update has been rolled out on the servers again with a new bugfix for the Ensim pages.</description>
		<content:encoded><![CDATA[<p>Yesterday&#8217;s update has been rolled out on the servers again with a new bugfix for the Ensim pages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Esprit Update: user management changeover, error reporting facility changes by Matt</title>
		<link>http://updates.apisnetworks.com/2008/12/esprit-update-user-management-changeover-error-reporting-facility-changes/comment-page-1/#comment-2346</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 17 Dec 2008 03:57:30 +0000</pubDate>
		<guid isPermaLink="false">http://updates.apisnetworks.com/?p=119#comment-2346</guid>
		<description>Temporarily reverting due to a conflict between development and production servers.  Some old configuration that has remained unversioned is affecting a header.  All of the files affected are pretty old complicating issues.  I will check this out more in-depth tomorrow afternoon.

Pictures will have to suffice for now.  Comments are welcome though, especially on the slider control.</description>
		<content:encoded><![CDATA[<p>Temporarily reverting due to a conflict between development and production servers.  Some old configuration that has remained unversioned is affecting a header.  All of the files affected are pretty old complicating issues.  I will check this out more in-depth tomorrow afternoon.</p>
<p>Pictures will have to suffice for now.  Comments are welcome though, especially on the slider control.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
