<?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"
	>
<channel>
	<title>Comments on: Quickies</title>
	<atom:link href="http://www.hawkwings.net/2006/02/28/quickies-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hawkwings.net/2006/02/28/quickies-2/</link>
	<description>Tips and add-ons to make Apple Mail / Mail.app even better</description>
	<pubDate>Thu, 04 Dec 2008 02:38:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Hawk Wings &#187; Blog Archive &#187; Roudcube: Mail.app-like webmail</title>
		<link>http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1621</link>
		<dc:creator>Hawk Wings &#187; Blog Archive &#187; Roudcube: Mail.app-like webmail</dc:creator>
		<pubDate>Fri, 03 Mar 2006 13:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1621</guid>
		<description>[...] As Brady J. Frey points out in a comment on another post, RoundCube Webmail has recently gone beta, with a release that contains many more features than the version Hawk Wings reviewed late last year. [...]</description>
		<content:encoded><![CDATA[<p>[...] As Brady J. Frey points out in a comment on another post, RoundCube Webmail has recently gone beta, with a release that contains many more features than the version Hawk Wings reviewed late last year. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted Pavlic</title>
		<link>http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1561</link>
		<dc:creator>Ted Pavlic</dc:creator>
		<pubDate>Tue, 28 Feb 2006 17:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1561</guid>
		<description>Regarding PINE, Nancy McGough has a lot of OS X pine links at:

http://www.ii.com/internet/messaging/pine/#osx

She actually links to Paul Heinlein's article too. Additionally, there is a link to an article she wrote about installing the pre-built PINE binary on OS X:

http://groups.google.com/group/comp.mail.pine/msg/872047caedeacedb</description>
		<content:encoded><![CDATA[<p>Regarding PINE, Nancy McGough has a lot of OS X pine links at:</p>
<p><a href="http://www.ii.com/internet/messaging/pine/#osx" rel="nofollow">http://www.ii.com/internet/messaging/pine/#osx</a></p>
<p>She actually links to Paul Heinlein&#8217;s article too. Additionally, there is a link to an article she wrote about installing the pre-built PINE binary on OS X:</p>
<p><a href="http://groups.google.com/group/comp.mail.pine/msg/872047caedeacedb" rel="nofollow">http://groups.google.com/group/comp.mail.pine/msg/872047caedeacedb</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brady J. Frey</title>
		<link>http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1551</link>
		<dc:creator>Brady J. Frey</dc:creator>
		<pubDate>Mon, 27 Feb 2006 20:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1551</guid>
		<description>Syntax error the following:
&lt;code&gt;
grant all on roundc to brady.* identified by 'blah';
&lt;/code&gt;

should be:
&lt;code&gt;
grant all on roundc.* to brady identified by 'blah';
&lt;/code&gt;

My apologies, I'd edit if I could:)</description>
		<content:encoded><![CDATA[<p>Syntax error the following:<br />
<code><br />
grant all on roundc to brady.* identified by 'blah';<br />
</code></p>
<p>should be:<br />
<code><br />
grant all on roundc.* to brady identified by 'blah';<br />
</code></p>
<p>My apologies, I&#8217;d edit if I could:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brady J. Frey</title>
		<link>http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1546</link>
		<dc:creator>Brady J. Frey</dc:creator>
		<pubDate>Mon, 27 Feb 2006 18:52:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkwings.net/2006/02/28/quickies-2/#comment-1546</guid>
		<description>Roundcube went beta last week as well:
http://roundcube.net/

Also feel free to email the mailing list as well:
http://roundcube.net/?p=mailinglists

Many of us are on it -- I've actually been using it in production for a few clients, 200+ users, and it's worked great for them. The CSS customizing for us designers is a god send, and the funcitonality a clean improvement over squirrelmail. 

As a notation -- for those of you users fearful of phpMyAdmin, or are weary of installing it on your OS X server -- you may also use &lt;a href="http://www.navicat.com/" rel="nofollow"&gt;NaviCat&lt;/a&gt;, &lt;a href="http://www.rtlabs.com/macsql/" rel="nofollow"&gt;MacSQL&lt;/a&gt;, or &lt;a href="http://www.aquafold.com/" rel="nofollow"&gt;Aqua Data Studio&lt;/a&gt; for free or donation.

For those of you, like me, who just don't care for any of that and want to &lt;a href="http://www.apple.com/remotedesktop/" rel="nofollow"&gt;ARD&lt;/a&gt; or VPN into their server, just fly with terminal to add your mysql tables. Here's how, briefly...
1) Log into mysql via terminal
&lt;code&gt;
mysql&lt;/code&gt;

2) Create your new database (end each element with a ; and a return) - I'm going to use roundc as my database, brady as my username, blah as my password:
&lt;code&gt;
create database roundc;
grant all on roundc to brady.* identified by 'blah';
flush privileges;
&lt;/code&gt;

To verify, you can type in:
&lt;code&gt;
show databases;
&lt;/code&gt;

And you'll see that new database you created. Now, let's import that mysql file to get everything going. 
&lt;code&gt;
use roundc;
&lt;/code&gt;
Puts you in the roundc database, now:
&lt;code&gt;
source [drag the file mysql.intial.sql located in the sql folder]&lt;/code&gt;

For example, I dragged mine in and it says:
&lt;code&gt;
source /Users/bradyjfrey/Desktop/roundcubemail-0.1beta/SQL/mysql.initial.sql&lt;/code&gt;
Press return. You can verify it created the tables by:
&lt;code&gt;
show tables;
&lt;/code&gt;

make sure, just in case to follow up with:
&lt;code&gt;
flush privileges;
&lt;/code&gt;

you can do much more using terminal, as well as backing up your databases on the fly, and if your server let's you, SSHing into it and running mysql commands right there. This is a quick way to install without having these 3rd party programs, and will help you improve your server skills.

Thanks for that ical publishing doc, I'll have to watch out for that!</description>
		<content:encoded><![CDATA[<p>Roundcube went beta last week as well:<br />
<a href="http://roundcube.net/" rel="nofollow">http://roundcube.net/</a></p>
<p>Also feel free to email the mailing list as well:<br />
<a href="http://roundcube.net/?p=mailinglists" rel="nofollow">http://roundcube.net/?p=mailinglists</a></p>
<p>Many of us are on it &#8212; I&#8217;ve actually been using it in production for a few clients, 200+ users, and it&#8217;s worked great for them. The CSS customizing for us designers is a god send, and the funcitonality a clean improvement over squirrelmail. </p>
<p>As a notation &#8212; for those of you users fearful of phpMyAdmin, or are weary of installing it on your OS X server &#8212; you may also use <a href="http://www.navicat.com/" rel="nofollow">NaviCat</a>, <a href="http://www.rtlabs.com/macsql/" rel="nofollow">MacSQL</a>, or <a href="http://www.aquafold.com/" rel="nofollow">Aqua Data Studio</a> for free or donation.</p>
<p>For those of you, like me, who just don&#8217;t care for any of that and want to <a href="http://www.apple.com/remotedesktop/" rel="nofollow">ARD</a> or VPN into their server, just fly with terminal to add your mysql tables. Here&#8217;s how, briefly&#8230;<br />
1) Log into mysql via terminal<br />
<code><br />
mysql</code></p>
<p>2) Create your new database (end each element with a ; and a return) - I&#8217;m going to use roundc as my database, brady as my username, blah as my password:<br />
<code><br />
create database roundc;<br />
grant all on roundc to brady.* identified by 'blah';<br />
flush privileges;<br />
</code></p>
<p>To verify, you can type in:<br />
<code><br />
show databases;<br />
</code></p>
<p>And you&#8217;ll see that new database you created. Now, let&#8217;s import that mysql file to get everything going.<br />
<code><br />
use roundc;<br />
</code><br />
Puts you in the roundc database, now:<br />
<code><br />
source [drag the file mysql.intial.sql located in the sql folder]</code></p>
<p>For example, I dragged mine in and it says:<br />
<code><br />
source /Users/bradyjfrey/Desktop/roundcubemail-0.1beta/SQL/mysql.initial.sql</code><br />
Press return. You can verify it created the tables by:<br />
<code><br />
show tables;<br />
</code></p>
<p>make sure, just in case to follow up with:<br />
<code><br />
flush privileges;<br />
</code></p>
<p>you can do much more using terminal, as well as backing up your databases on the fly, and if your server let&#8217;s you, SSHing into it and running mysql commands right there. This is a quick way to install without having these 3rd party programs, and will help you improve your server skills.</p>
<p>Thanks for that ical publishing doc, I&#8217;ll have to watch out for that!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.354 seconds -->
