<?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>Matt Gibson &#187; Reviews</title>
	<atom:link href="http://www.mattgibson.ca/topics/reviews/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattgibson.ca</link>
	<description>I'm one of those people radio shows call for obscure shit.</description>
	<lastBuildDate>Thu, 25 Mar 2010 00:04:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using SSL POP3 (Google Apps/Gmail) with Kayako SupportSuite</title>
		<link>http://www.mattgibson.ca/2008/06/19/using-ssl-pop3-google-appsgmail-with-kayako-supportsuite/</link>
		<comments>http://www.mattgibson.ca/2008/06/19/using-ssl-pop3-google-appsgmail-with-kayako-supportsuite/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 04:02:25 +0000</pubDate>
		<dc:creator>Matt G</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[kayako supportsuite]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[microsoft exchange server]]></category>
		<category><![CDATA[microsoft small business]]></category>
		<category><![CDATA[pop3 service]]></category>
		<category><![CDATA[small business server]]></category>
		<category><![CDATA[stunnel]]></category>
		<category><![CDATA[support software]]></category>

		<guid isPermaLink="false">http://www.mattgibson.ca/archives/115</guid>
		<description><![CDATA[Many of us need to run Support Software to keep on top of client needs and requests, as well as remove some of the burden from our support staff. Because of this need, we are using Kayako SupportSuite for our helpdesk application. While setting it up, we noticed that the latest release has a little [...]]]></description>
			<content:encoded><![CDATA[<p>Many of us need to run <a href="http://www.kayako.com/">Support Software</a> to keep on top of client needs and requests, as well as remove some of the burden from our support staff.</p>
<p>Because of this need, we are using <a href="http://www.kayako.com/">Kayako SupportSuite</a> for our helpdesk application. While setting it up, we noticed that the latest release has a little bit of an issue with fetching mail using <a href="http://mail.google.com/">google&#8217;s pop3 service</a>.</p>
<p>We haven&#8217;t looked into the problem too much, but we have noted that there is mention of it on the <a href="http://www.kayako.com/">Kayako</a> Forums that other users are experiencing the same difficulties.</p>
<p>Of course, we made sure our PHP installation was indeed compiled with SSL and IMAP and IMAP-SSL support, but this still did not fix the problem. So far, this is the only &#8220;solution&#8221; given by the <a href="http://www.kayako.com/">Kayako</a> support representatives.</p>
<p>Well, we actually wanted it to work, so we dug a little furthur into it. As it turns out, it&#8217;s not actually Kayako&#8217;s fault that this doesn&#8217;t work, but merely a not-so-great implementation of SSL/POP3 in PHP. <a href="http://www.kayako.com/">Kayako</a> could work around this, and are aware of the problem so we assume it will get fixed in future releases.</p>
<p>We did get IMAP SSL working using the <a href="http://www.kayako.com/">Kayako</a> fetching script, but IMAP is not perfect for support queues. So, we still wanted to get POP3 working. No matter what was tried, we could not get it to work.</p>
<p>Then, an ephinany hit &#8211; we also use <a href="http://www.microsoft.com/windowsserver2003/sbs/default.mspx">Microsoft Small Business Server </a> on our Intranet, and we ran into this problem previously with <a href="http://www.microsoft.com/windowsserver2003/sbs/default.mspx">Exchange server</a> not being able to communicate with SSL enabled mail hosts.</p>
<p>So, we introduced the same hack that we did on the <a href="http://www.microsoft.com/windowsserver2003/sbs/default.mspx">Microsoft Exchange Server</a>, to our <a href="http://www.kayako.com/">Kayako SupportSuite</a> Linux Server.</p>
<p>We used <a href="http://www.stunnel.org/">Stunnel</a>.</p>
<p>Elegant? No. Best Solution Ever? No. Does it work? So far, flawlessly.</p>
<p>It&#8217;s very easy to setup, and get going. Here is what we had to do under <a href="http://www.gentoo.org/">Gentoo Linux</a>.</p>
<p>First we made sure our use flags were proper</p>
<blockquote><p># emerge -pv stunnel</p></blockquote>
<p>Which outputs this</p>
<blockquote><p><em>net-misc/stunnel-4.21-r1 USE=&#8221;ssl tcpd -ipv6 (-selinux)&#8221;</em></p></blockquote>
<p>This looks fine, we need tcpd, and ssl. Now we install stunnel.</p>
<blockquote><p># emerge stunnel</p></blockquote>
<p>Then we have to configure some options, which are very straight forward</p>
<blockquote><p># nano /etc/stunnel/stunnel.conf</p></blockquote>
<p>Now we make the file look like this</p>
<blockquote><p>setuid = stunnel<br />
setgid = stunnel<br />
pid = /var/run/stunnel/stunnel.pid<br />
socket = l:TCP_NODELAY=1<br />
socket = r:TCP_NODELAY=1<br />
output = stunnel.log<br />
client = yes<br />
debug = 7</p>
<p>[pop3s]<br />
accept = 127.0.0.1:1109<br />
connect = pop.gmail.com:995</p>
<p>[smtps]<br />
accept = 127.0.0.1:259<br />
connect = smtp.gmail.com:465</p></blockquote>
<p>Save and exit the file. These lines will make the SMTP-SSL server listen on localhost port 259, and connect out to gmail at port 465. The POP-SSL will be listening on localhost port 1109, connecting out to gmail on port 995.</p>
<p>That&#8217;s it for the stunnel configuration. You can start it up like so.</p>
<blockquote><p># /etc/init.d/stunnel start</p></blockquote>
<p>Now add it to your defaults so it will auto start</p>
<blockquote><p># rc-update add stunnel default</p></blockquote>
<p>So, we&#8217;re done with the stunnel configuration. Now we&#8217;ll need to configure Kayako so make use of this.</p>
<div style="margin-left: 2em">
<ol>
<li>Login to your Kayako Administration Interface</li>
<li>Click on Settings on the left menu</li>
<li>Click on CPU Optimization &amp; Server</li>
<li>Scroll down to &#8220;SMTP Settings&#8221; and make sure it&#8217;s the following:Enable SMTP: Yes<br />
SMTP Host: 127.0.0.1<br />
SMTP Port: 259<br />
Use SMTP Authentication: Yes<br />
SMTP Username: <a href="mailto:youraddress@gmail.com">youraddress@gmail.com</a> (or <a href="mailto:youraddress@yourdomain.com">youraddress@yourdomain.com</a>)<br />
SMTP Password: yourpassword</li>
<li>Click Update Settings.</li>
</ol>
</div>
<p>Now we&#8217;re done with the SMTP setup, so we&#8217;ll have to setup your email queues with the proper information. We&#8217;ll assume you&#8217;ve already read the <a href="https://members.kayako.net/">Kayako documentation</a> on email queues and will not go into them here.</p>
<div style="margin-left: 2em; MARGIN-RIGHT: 0px" dir="ltr">
<ol>
<li>Still in the Kayako Administration Interface Click Mail Parser on the left menu</li>
<li>Now click on Manage E-mail Queues from the dropdown menu</li>
<li>Click on your Email Queue (for example: <a href="mailto:support@yourdomain.com">support@yourdomain.com</a>) or create a new one</li>
<li>Scroll down to Login Information and ensure these settings are configured:Host: 127.0.0.1<br />
Port: 1109<br />
Username:  <a href="mailto:youraddress@gmail.com">youraddress@gmail.com</a> (or <a href="mailto:youraddress@yourdomain.com">youraddress@yourdomain.com</a>)<br />
Password: yourpassword</li>
<li>Configure any other options for your email queue.</li>
<li>Scroll down and click on Update to save your changes.</li>
<li>Repeat with any other email queues changing the email address/password for each account.</li>
</ol>
</div>
<p>Now you are finished the <a href="http://www.kayako.com/">Kayako</a> configuration. You should be able to run your administrative cron script to check for new mail. Check the Scheduled Tasks -&gt; Task Log to verify that your mail is being fetched. If you don&#8217;t know what we&#8217;re talking about here, you haven&#8217;t read the <a href="https://members.kayako.net/">Kayako documentation</a>, and <a href="https://members.kayako.net/">should do so now</a>.</p>
<p>We&#8217;ve been using this for a few weeks now and haven&#8217;t had an issue. It&#8217;s cronned to check mail every 2 minutes, and we have the added benefit of <a href="http://mail.google.com/">Google Apps</a> archiving all incoming mail for us automatically before <a href="http://www.kayako.com/">Kayako</a> picks it up for delivery.</p>
<p>Hope you like the tutorial, we welcome feedback in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattgibson.ca/2008/06/19/using-ssl-pop3-google-appsgmail-with-kayako-supportsuite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Covert Persuasion Tips and Tricks</title>
		<link>http://www.mattgibson.ca/2007/03/03/covert-persuasion-tips-and-tricks/</link>
		<comments>http://www.mattgibson.ca/2007/03/03/covert-persuasion-tips-and-tricks/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 01:49:27 +0000</pubDate>
		<dc:creator>Matt G</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.mattgibson.ca/?p=35</guid>
		<description><![CDATA[Today I finally finished this great book that I&#8217;m reading called &#8220;Covert Persuasion : Psychological Tactics and Tricks to Win the Game&#8221; by Kevin Hogan and James Speakman. Covert Persuasion By: James Speakman Rating: 5 This book is pretty hardcore sales material, but if you run and operate your own business I&#8217;d say it&#8217;s pretty [...]]]></description>
			<content:encoded><![CDATA[<p>Today I finally finished this great book that I&#8217;m reading called &#8220;<a title="Buy the Book!" href="http://www.amazon.ca/exec/obidos/ASIN/0470051418/httpwwwmattgi-20/">Covert Persuasion : Psychological Tactics and Tricks to Win the Game</a>&#8221; by Kevin Hogan and James Speakman.</p>
<div style="float: right;display: inline; background: #f9f9f7; padding: 10px; margin: 3px;">
		<center><a href="http://www.amazon.ca/exec/obidos/ASIN/0470051418/httpwwwmattgi-20/" title="Click to view item at Amazon"><img src="http://images.amazon.com/images/P/0470051418.01.THUMBZZZ.jpg" alt="Covert Persuasion" /></a><br />
			Covert Persuasion<br />
			By: James Speakman<br />
			Rating: 5<br />
	</center>
</div>
<p>This book is pretty hardcore sales material, but if you run and operate your own business I&#8217;d say it&#8217;s pretty much required reading. Getting into people&#8217;s heads is very hard to do if you don&#8217;t have multi-million-dollar budgets like the large companies. You have to rely solely on yourself. People will not buy your product or service, without buying you first. This book gives one all the tactics, tricks, tips, and anecdotes needed to make the most of your personal and business meetings. While it may seem a bit selfish, and self absorbed to focus on the selfish goals, ultimately what does sales come down to? Exactly that. You must convince the client or prospect that what you are giving them is the best and there is no other product or service that matches what you are selling. I don&#8217;t mean lying, that would be wrong and unethical, I mean spinning the truth so it is always in your favor (or, in your clients favor).</p>
<p><!--adsense--></p>
<p>I won&#8217;t go into much detail about <a title="Covert Persuasion" href="http://www.amazon.ca/exec/obidos/ASIN/0470051418/httpwwwmattgi-20/">this book</a>, because I think you should <a title="Covert Persuasion" href="http://www.amazon.ca/exec/obidos/ASIN/0470051418/httpwwwmattgi-20/">go out and get a copy of it</a> to read yourself to learn all the points included. I&#8217;m not saying this is the be-all-and-end-all of sales tactics books, but it&#8217;s definitely worth the addition to your current library.</p>
<p>In the back of <a title="Covert Persuasion" href="http://www.amazon.ca/exec/obidos/ASIN/0470051418/httpwwwmattgi-20/">the book</a> they include 5 charts they allow to be printed and reprinted for use, and I&#8217;ve saved them to PDF and uploaded them here in case anyone wants to download them to use them. Very good stuff in these sheets.</p>
<p><a title="Covert Tips Sheet 1" href="http://www.mattgibson.ca/wp-content/uploads/2007/03/covert_sheet1.pdf">Covert Tips Sheet 1<br />
</a><a title="Covert Tips Sheet 2" href="http://www.mattgibson.ca/wp-content/uploads/2007/03/covert_sheet2.pdf">Covert Tips Sheet 2<br />
</a><a title="Covert Tips Sheet 3" href="http://www.mattgibson.ca/wp-content/uploads/2007/03/covert_sheet3.pdf">Covert Tips Sheet 3<br />
</a><a title="Covert Tips Sheet 4" href="http://www.mattgibson.ca/wp-content/uploads/2007/03/covert_sheet4.pdf">Covert Tips Sheet 4<br />
</a><a title="Covert Tips Sheet 5" href="http://www.mattgibson.ca/wp-content/uploads/2007/03/covert_sheet5.pdf">Covert Tips Sheet 5</a></p>
<p>Note these were reprinted from the permission in <a title="Covert Persuasion" href="http://www.amazon.ca/exec/obidos/ASIN/0470051418/httpwwwmattgi-20/">the book</a> and I express no warranty or anything on these PDF&#8217;s. There may be spelling mistakes etc, and you will not get rich by simply reading these! <a title="Covert Persuasion" href="http://www.amazon.ca/exec/obidos/ASIN/0470051418/httpwwwmattgi-20/">Go buy the book already!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattgibson.ca/2007/03/03/covert-persuasion-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LifePlanner Screenshot Review</title>
		<link>http://www.mattgibson.ca/2007/03/02/life-planner-50-review-mind-your-life/</link>
		<comments>http://www.mattgibson.ca/2007/03/02/life-planner-50-review-mind-your-life/#comments</comments>
		<pubDate>Fri, 02 Mar 2007 05:42:25 +0000</pubDate>
		<dc:creator>Matt G</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.mattgibson.ca/?p=7</guid>
		<description><![CDATA[I decided that it was time to actually put a plan to my life. After a number of hours of searching the web trying to find that perfect application, I think I found something that will work well for putting together a life plan. I found this program called &#8220;Life Plan Writer&#8220;, which is currently [...]]]></description>
			<content:encoded><![CDATA[<p>I decided that it was time to actually put a plan to my life. After a number of hours of searching the web trying to find that perfect application, I think I found something that will work well for putting together a life plan. I found this program called &#8220;<a title="Life Plan Writer Home Page" href="http://www.lifeplanwriter.com/lifeplanwriter/index.html">Life Plan Writer</a>&#8220;, which is currently at Version 5. Note, that no, I do not work for these people, I just thought I would write down my experience with their software.</p>
<p><!--adsense--></p>
<p>Lately I&#8217;ve been thinking I want to know where I am now, and where I want to be in 5 years, along with my <a title="She pwns!" href="http://www.steeltoesocks.com">super cool girlfriend</a> too. I wanted something a little more sophisticated than this software (multiple users, the ability to compare and contrast goals so we can plan things as a couple), but this software has the best bang for the buck and at 69$ USD, it&#8217;s pretty affordable.</p>
<p>So, here&#8217;s the story of aquiring the software, installing and using it.</p>
<p>First I went to the website and cliked on the buy link, and then I received an email about 10 minutes later (mostly due to my anal spam filtering comprised of amavais, clam, spamassassin, dspam, domainkeys, greylisting and rbl) that included a download link for the software. There wasn&#8217;t a KEY or anything included, so I assume this software either phones home, or is totally un-protected.</p>
<p>Being the cautious windows user I am, I&#8217;m running under a limited user account. After downloading the software, I went to my downloads directory and double clicked the executable. Then I accepted their license terms after briefly scanning over them.</p>
<p>Next, because I am a limited user, I changed the installation path to something I have permission to use. In my case I chose.</p>
<p><strong>E:\Apps\LifePlan5</strong></p>
<p>The program installed without any problems and I was presented with a nice little completed box, with the option to run the program now. I chose to run it.</p>
<p>I went through the software and input some basic values and then took a screenshot of all the dialogue boxes to see what we can do with this program. You&#8217;ll notice that we can export to outlook to import all our tasks and organize everything completely which is a nice bonus.</p>
<p><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan1.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan1.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan2.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan2.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan3.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan3.thumbnail.jpg" alt="Life Plan Writer 5" /></a></p>
<p><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan4.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan4.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan5.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan5.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan6.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan6.thumbnail.jpg" alt="Life Plan Writer 5" /></a></p>
<p><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan7.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan7.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan8.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan8.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan9.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan9.thumbnail.jpg" alt="Life Plan Writer 5" /></a></p>
<p><!--adsense--></p>
<p><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan10.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan10.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan11.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan11.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan12.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan12.thumbnail.jpg" alt="Life Plan Writer 5" /></a></p>
<p><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan13.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan13.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan14.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan14.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan15.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan15.thumbnail.jpg" alt="Life Plan Writer 5" /></a></p>
<p><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan16.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan16.thumbnail.jpg" alt="Life Plan Writer 5" /></a><a rel="lightbox[Life Plan 5.0]" href="wp-content/uploads/2007/03/lifeplan17.jpg"><img src="http://www.mattgibson.ca/wp-content/uploads/2007/03/lifeplan17.thumbnail.jpg" alt="Life Plan Writer 5" /></a></p>
<p>Well, As one can plainly see from all of the screenshots this program pretty much has anything anyone would want for managing their future plans for up to 5 years.</p>
<p><script src="http://www.alternateurl.com/show?memid=4273&amp;size=468x60&amp;js=true"></script>The one drawback, as I mentioned previously is no support for multiple users and combining plans as a &#8220;couple&#8221;. But other than that, I think considering all the math this thing does for you, and the pretty reports it generates it&#8217;s worth the 70$ if you&#8217;re serious about planning your life and where you want to go. I would recommend it for anyone interested in this type of personal development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattgibson.ca/2007/03/02/life-planner-50-review-mind-your-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
