<?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>MaisonBisson.com &#187; mail</title>
	<atom:link href="http://maisonbisson.com/blog/post/tag/mail/feed/" rel="self" type="application/rss+xml" />
	<link>http://maisonbisson.com</link>
	<description>A bunch of stuff I would have emailed you about.</description>
	<lastBuildDate>Sat, 14 Nov 2009 20:14:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using WordPress With External SMTP Server</title>
		<link>http://maisonbisson.com/blog/post/12939/using-wordpress-with-external-smtp-server/</link>
		<comments>http://maisonbisson.com/blog/post/12939/using-wordpress-with-external-smtp-server/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 17:01:45 +0000</pubDate>
		<dc:creator>Casey</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/?p=12939</guid>
		<description><![CDATA[
I really don&#8217;t like having sendmail running on a webserver, but some features of WordPress just don&#8217;t work if it can&#8217;t send email (user registration, for example). Still, WordPress offers support to send email through external SMTP servers instead if a local mailer.
In /wp-includes/pluggable.php around line 377, change

	$phpmailer-&#62;isMail&#40;&#41;;

to

	$phpmailer-&#62;isSMTP&#40;&#41;;

Then, in /wp-includes/class-phpmailer.php around line 155, set your [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12939"><!-- &nbsp; --></abbr>
<p>I really don&#8217;t like having <a href="http://en.wikipedia.org/wiki/Sendmail">sendmail</a> running on a webserver, but some features of WordPress just don&#8217;t work if it can&#8217;t send email (user registration, for example). Still, WordPress offers support to send email through external SMTP servers instead if a local mailer.</p>
<p>In <code><a href="http://trac.wordpress.org/browser/tags/2.6.3/wp-includes/pluggable.php">/wp-includes/pluggable.php</a></code> around line 377, change</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">	<span style="color: #000088;">$phpmailer</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">isMail</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>to</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">	<span style="color: #000088;">$phpmailer</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">isSMTP</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Then, in <code><a title="/tags/2.6.3/wp-includes/class-phpmailer.php - WordPress Trac - Trac" href="http://trac.wordpress.org/browser/tags/2.6.3/wp-includes/class-phpmailer.php">/wp-includes/class-phpmailer.php</a></code> around line 155, set your SMTP host:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$Host</span>        <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;my.smtphost.com&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>You may also need to set a username and password, and tell WP to attempt authentication. You&#8217;ll see those in the lines below the hostname variable.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$SMTPAuth</span>     <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$Username</span>     <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;username&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #000088;">$Password</span>     <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;password&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>On the other hand, you could do this <a href="http://subscribe2.wordpress.com/2008/05/15/smtp-mailer/">via a plugin, perhaps even Callum McDonald&#8217;s </a><a href="http://wordpress.org/extend/plugins/wp-mail-smtp/">WP Mail SMTP</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12939/using-wordpress-with-external-smtp-server/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Zimbra Rocks</title>
		<link>http://maisonbisson.com/blog/post/10943/zimbra-rocks/</link>
		<comments>http://maisonbisson.com/blog/post/10943/zimbra-rocks/#comments</comments>
		<pubDate>Mon, 14 Nov 2005 16:07:26 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[calendaring]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[communication model]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[groupware]]></category>
		<category><![CDATA[groupware collaboration]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[mailboxes]]></category>
		<category><![CDATA[spam management]]></category>
		<category><![CDATA[unified messaging]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=10943</guid>
		<description><![CDATA[
Zach made me take another look at Zimbra, the web-based, web 2.0-smart, very social and AJAXed up collaboration, email, and calendar suite (plus some other goodies).
Go ahead, watch the Flash-based demo or kick the tires with their hosted demo. I think you&#8217;ll agree that it looks better than anything else we&#8217;ve seen yet. Part of [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10943"><!-- &nbsp; --></abbr>
<p><img src="http://zimbra.com/_media/zimbra_logo.gif" width="150" height="50" style="float: right; border: solid 0px #000000; margin: 0px 0px 8px 8px; padding: 0px;" />Zach made me take another <a href="http://maisonbisson.com/blog/post/10842/" title="What’s Zimbra?">look</a> at <a href="http://zimbra.com/">Zimbra</a>, the web-based, web 2.0-smart, very social and AJAXed up collaboration, email, and calendar suite (plus some other goodies).</p>
<p>Go ahead, watch the <a href="http://zimbra.com/flash_demo/flash_demo.html">Flash-based demo</a> or kick the tires with their <a href="http://zimbra.com/demo/">hosted demo</a>. I think you&#8217;ll agree that it looks better than anything else we&#8217;ve seen yet. Part of the success of the project is that the developers appear to understand the problem. Here&#8217;s the list of <a href="http://zimbra.com/pdf/Zimbra%20Whitepaper%20-%20Fixing%20Email.pdf">how broken email is</a> from the white paper:</p>
<ul>
<li>Email has changed dramatically since the advent of the World-wide Web</li>
<li>The number of messages per day is up by an order of magnitude or more</li>
<li>The amount of storage required for our mailboxes is up by two orders of magnitude or more</li>
<li>Email has grown from the original one-to-one communication model to also include one-to-many (as mailing lists have displaced bulletin boards)</li>
<li>Email applications are often responsible for managing calendars, group scheduling, contacts, tasks, public folders, and so on</li>
<li>Email applications also often manage shared documents (think “content management-lite”) and even ad hoc document-oriented workflow among users</li>
<li>Email applications are expected to trap ever more sophisticated and ever higher volumes of spam and viruses</li>
<li>Email platforms are growing into unified messaging platforms by incorporating support for fax, voicemail, and instant messaging (including integrated anti-spam and anti-virus)</li>
<li>Email applications are now also being asked to implement retention and discovery policies (such as for compliance with Sarbanes Oxley)</li>
</ul>
<p>You can also call me a fan of these two lines:</p>
<blockquote><p>[E]mail has changed sufficiently that we’re no longer quite sure what to call it: Enterprise messaging? Groupware? Collaboration?</p>
<p>Given the amount of time IT-intensive employees spend on email, it is ironic that innovation has reached consumer mail (e.g., gigabyte mailboxes for Google and Yahoo! users) ahead of enterprise mail!</p></blockquote>
<p><!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">tags: <a href="http://www.technorati.com/tag/ajax" rel="tag">ajax</a>, <a href="http://www.technorati.com/tag/calendaring" rel="tag">calendaring</a>, <a href="http://www.technorati.com/tag/collaboration" rel="tag">collaboration</a>, <a href="http://www.technorati.com/tag/communication" rel="tag">communication</a>, <a href="http://www.technorati.com/tag/communication model" rel="tag">communication model</a>, <a href="http://www.technorati.com/tag/demo" rel="tag">demo</a>, <a href="http://www.technorati.com/tag/email" rel="tag">email</a>, <a href="http://www.technorati.com/tag/enterprise" rel="tag">enterprise</a>, <a href="http://www.technorati.com/tag/groupware" rel="tag">groupware</a>, <a href="http://www.technorati.com/tag/groupware collaboration" rel="tag">groupware collaboration</a>, <a href="http://www.technorati.com/tag/mail" rel="tag">mail</a>, <a href="http://www.technorati.com/tag/mailboxes" rel="tag">mailboxes</a>, <a href="http://www.technorati.com/tag/spam management" rel="tag">spam management</a>, <a href="http://www.technorati.com/tag/unified messaging" rel="tag">unified messaging</a>, <a href="http://www.technorati.com/tag/web 2.0" rel="tag">web 2.0</a>, <a href="http://www.technorati.com/tag/zimbra" rel="tag">zimbra</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10943/zimbra-rocks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>