<?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>Ubuntu Tutorials &#187; EMail</title>
	<atom:link href="http://ubuntu-tutorials.com/category/email/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubuntu-tutorials.com</link>
	<description>Enhancing your Ubuntu experience!</description>
	<lastBuildDate>Sat, 28 Jan 2012 20:08:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Configure Postfix for Multiple ISP Client SMTP Authentication</title>
		<link>http://ubuntu-tutorials.com/2009/03/13/configure-postfix-for-multiple-isp-client-smtp-authentication/</link>
		<comments>http://ubuntu-tutorials.com/2009/03/13/configure-postfix-for-multiple-isp-client-smtp-authentication/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 04:11:26 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[relayhost]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=993</guid>
		<description><![CDATA[Some time ago I blogged about configuring Postfix to relay outgoing email through your gmail account. One of the commenters left a question asking how to achieve the same result, but use unique relays for each account attempting to send email. I&#8217;ve only just now been able to find time to write up an answer [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago I blogged about <a title="configuring postfix smtp to relay via gmail" href="http://ubuntu-tutorials.com/2008/11/11/relaying-postfix-smtp-via-smtpgmailcom/">configuring Postfix to relay outgoing email through your gmail account</a>.  One of the commenters left a question asking how to achieve the same result, but <a title="use unique relay for each account sending through server" href="http://ubuntu-tutorials.com/2008/11/11/relaying-postfix-smtp-via-smtpgmailcom/#comment-7889">use unique relays for each account</a> attempting to send email.  I&#8217;ve only just now been able to find time to write up an answer and find a good solution.  This post will outline how to configure specific users of your mail server to relay through unique providers for outgoing email.  For example:</p>
<p>user1@server1.com must relay through smtp.isp1.com<br />
user2@server2.com must relay through mail.isp2.org<br />
user3@server3.com must relay through mx.isp3.net<br />
all others must relay through the default, smtp.hugecorp.biz</p>
<p>note: This is only supported on Postfix version v2.3+ and later.  If you are using a recent version of Ubuntu or Debian you should be fine.  To find out your current installed version you can run:</p>
<blockquote><p><code>dpkg -l postfix<br />
</code></p></blockquote>
<p><strong>Step 1</strong></p>
<p>Open your main.cf file:</p>
<blockquote><p><code>vim /etc/postfix/main.cf<br />
</code></p></blockquote>
<p>Add these lines to the configuration:</p>
<blockquote><p><code>smtp_sender_dependent_authentication = yes<br />
sender_dependent_relayhost_maps = hash:/etc/postfix/relayhost_map<br />
smtp_sasl_auth_enable = yes<br />
smtp_sasl_password_maps = hash:/etc/postfix/passwd<br />
relayhost = [smtp.hugecorp.biz]:submission<br />
</code></p></blockquote>
<p><strong>Step 2</strong></p>
<p>Create /etc/postfix/relayhost_map file:</p>
<blockquote><p><code>vim /etc/postfix/relayhost_map<br />
</code></p></blockquote>
<p>Append entries for each unique sender =&gt; isp relay mapping you need.  (note: our default relay, smtp.hugecorp.biz, is not included here):</p>
<blockquote><p><code># Per-sender provider<br />
user1@server1.com		[smtp.isp1.com]<br />
user2@server2.com		[mail.isp2.org]<br />
user3@server3.com		[mx.isp3.net]<br />
</code></p></blockquote>
<p><strong>Step 3</strong></p>
<p>Update the /etc/postfix/passwd file with the user authentication information:</p>
<blockquote><p><code># Per-sender authentication<br />
user1@server1.com		user1@server1.com:SecretP@ssw0rd1<br />
user1@server2.com		user2@server2.com:SecretP@ssw0rd2<br />
user1@server3.com		user2@server3.com:SecretP@ssw0rd3<br />
# Login for the default relayhost<br />
[smtp.hugecorp.biz]	    defaultUsername:defaultPassword<br />
</code></p></blockquote>
<p><strong>Step 4</strong><br />
Hash the config files. Restart Postfix:</p>
<blockquote><p><code>postmap hash:/etc/postfix/passwd<br />
postmap hash:/etc/postfix/relayhost_map<br />
/etc/init.d/postfix reload</code></p></blockquote>
<p>Following these instructions you should be able to configure each of your users, or a specific subset of users, to relay their outgoing email through specific ISPs or even specific gmail accounts.  If my previous post is too limited for you&#8211;you don&#8217;t want everything authenticating and relaying through a single gmail account&#8211;these instructions should give you more flexibility.</p>
<p>Source: <a title="postfix configure multiple ISC client smtp authentication" href="http://www.cyberciti.biz/faq/postfix-multiple-isp-accounts-smarthost-smtp-client/">nixCraft</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2009/03/13/configure-postfix-for-multiple-isp-client-smtp-authentication/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Relaying Postfix SMTP via smtp.gmail.com</title>
		<link>http://ubuntu-tutorials.com/2008/11/11/relaying-postfix-smtp-via-smtpgmailcom/</link>
		<comments>http://ubuntu-tutorials.com/2008/11/11/relaying-postfix-smtp-via-smtpgmailcom/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:51:46 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[relayhost]]></category>
		<category><![CDATA[smtp.gmail.com]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=864</guid>
		<description><![CDATA[I&#8217;ve got a few servers in different places around the country and try to monitor them using the logwatch utility.  One problem that I&#8217;ve run into however is that a few of these servers are not able to send their logwatch emails to me, based on email restrictions by the ISPs.  I spent some time [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a few servers in different places around the country and try to monitor them using the logwatch utility.  One problem that I&#8217;ve run into however is that a few of these servers are not able to send their logwatch emails to me, based on email restrictions by the ISPs.  I spent some time this afternoon researching what was required to have my servers authenticate to my gmail account and send me the mail that way.  This setup assumes Ubuntu 8.04 (or later) and Postfix.</p>
<p><strong>Install the required packages</strong></p>
<blockquote><p><code>sudo aptitude install <a title="postfix package" href="apt://postfix">postfix</a> <a title="libsasl2 package" href="apt://libsasl2">libsasl2</a> <a title="ca-certificate package" href="apt://ca-certificate">ca-certificate</a> <a title="libsasl2-modules" href="apt://libsasl2-modules">libsasl2-modules</a></code><a title="libsasl2-modules" href="apt://libsasl2-modules"> </a></p>
<p><a title="libsasl2-modules" href="apt://libsasl2-modules"></a></p></blockquote>
<p><strong>Configure Postfix</strong></p>
<p>This tutorial will not outline how to configure your postfix server, but we&#8217;ll jump directly to the relayhost section.  You&#8217;ll want to add the following lines to your /etc/postfix/main.cf file:</p>
<blockquote><p><code>relayhost = [smtp.gmail.com]:587<br />
smtp_sasl_auth_enable = yes<br />
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd<br />
smtp_sasl_security_options = noanonymous<br />
smtp_tls_CAfile = /etc/postfix/cacert.pem<br />
smtp_use_tls = yes</code></p></blockquote>
<p>The above lines are telling Postfix that you want to relay mail through gmail on a specific port, telling it to authenticate, and where to find the username and password.  The last three lines specify the authentication types supported, where the certificate authority file is and that it should use tls.</p>
<p><strong>Define Username and Password</strong></p>
<p>Next we&#8217;ll need to populate the sasl_passwd file.  Create the file /etc/postfix/sasl_passwd with the following contents:</p>
<blockquote><p>[smtp.gmail.com]:587    user.name@gmail.com:password</p></blockquote>
<p>This file should have restrictive permissions and then needs to be translated into a .db that Postfix will read.</p>
<blockquote><p><code>sudo chmod 400 /etc/postfix/sasl_passwd<br />
sudo postmap /etc/postfix/sasl_passwd<br />
</code></p></blockquote>
<p>At this point you can restart Postfix and it should work, however it will complain about not being able to authenticate the certificate.  To take care of this issue we&#8217;ll use the ca-certificate package we installed and tell it where it can validate the certificate.</p>
<blockquote><p><code>cat /etc/ssl/certs/Thawte_Premium_Server_CA.pem | sudo tee -a /etc/postfix/cacert.pem</code></p></blockquote>
<p>Go ahead and reload postfix (sudo /etc/init.d/postfix reload) and you should be set.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2008/11/11/relaying-postfix-smtp-via-smtpgmailcom/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>How To Manager Multiple Outbound Addresses In Evolution</title>
		<link>http://ubuntu-tutorials.com/2008/05/17/how-to-manage-multiple-outbound-addresses-in-evolution/</link>
		<comments>http://ubuntu-tutorials.com/2008/05/17/how-to-manage-multiple-outbound-addresses-in-evolution/#comments</comments>
		<pubDate>Sat, 17 May 2008 19:18:09 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>
		<category><![CDATA[@ubuntu.com]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=643</guid>
		<description><![CDATA[I was just setting up Evolution again and went through the steps of setting up my personal account and my Ubuntu account.  I&#8217;ve heard some people run into problems doing this considering the Ubuntu account, on the incoming side, is bound to your default address in Launchpad, but you still need to send mail out.  [...]]]></description>
			<content:encoded><![CDATA[<p>I was just setting up Evolution again and went through the steps of setting up my personal account and my Ubuntu account.  I&#8217;ve heard some people run into problems doing this considering the Ubuntu account, on the incoming side, is bound to your default address in Launchpad, but you still need to send mail out.  Here is how I did it.</p>
<p>note: as you&#8217;ve likely noticed I don&#8217;t do a lot of screen shots on this blog primarily because I can&#8217;t ever get the formatting to look the way I&#8217;d like.  As you see below some of the text is not properly displaying under each picture, but tries to display to the right.  I&#8217;ve been fighting it for hours.  I finally decided to just post as-is.  If you have any suggestions on WP formatting with graphics let me know.</p>
<p><strong>Creating an Outbound-Only Account in Evolution</strong></p>
<ol>
<li>To create a secondary account to be used for sending mail (one that does not require receiving), we&#8217;ll need to open the Preferences Window, which is found in Edit &gt; Preferences.</li>
<p style="text-align: center;"><img class="alignnone size-full wp-image-644" style="border: 0pt none;" title="preferences" src="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/preferences.png" alt="" width="412" height="318" /></p>
<li>Click &#8220;Add&#8221;, which will open the Account Assistant for creating new email account settings.  Click &#8220;Forward&#8221; on the first introductory window.</li>
<p style="text-align: center;"><a href="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/configresized.png"><img class="alignnone size-full wp-image-653" title="configresized" src="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/configresized.png" alt="" width="380" height="457" /></a></p>
<li>Fill out the Identity information, ie; Full Name and your outbound email address.  In this case I am using my ubuntu.com address.  Click &#8220;Forward&#8221;.</li>
<p style="text-align: center;"><a href="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/identityresized.png"><img class="alignnone size-full wp-image-656" title="identityresized" src="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/identityresized.png" alt="" width="380" height="457" /></a></p>
<li>On the &#8220;Recieving Email&#8221; step we will set the Server Type to &#8220;None&#8221;, and click &#8220;Forward&#8221;.</li>
<p style="text-align: center;"><a href="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/recieveresized.png"><img class="alignnone size-full wp-image-657" title="recieveresized" src="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/recieveresized.png" alt="" width="380" height="457" /></a></p>
<li>On the &#8220;Sending Email&#8221; step we will populate your SMTP settings.  In my case I am using my gmail account as the outbound SMTP server.  Click &#8220;Forward&#8221;.</li>
<p style="text-align: center;"><a href="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/sendingresized.png"><img class="alignnone size-full wp-image-658" title="sendingresized" src="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/sendingresized.png" alt="" width="380" height="457" /></a></p>
<li>On the &#8220;Account Management&#8221; step we will give this account a unique name.  In this case &#8220;Ubuntu&#8221;.</li>
<p style="text-align: center;"><a href="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/accountresized.png"><img class="alignnone size-full wp-image-654" title="accountresized" src="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/accountresized.png" alt="" width="380" height="457" /></a></p>
<li>Click &#8220;Forward&#8221; and then &#8220;Apply&#8221; and you should be finished.</li>
</ol>
<p style="text-align: center;"><a href="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/doneresized.png"><img class="alignnone size-full wp-image-655" title="doneresized" src="http://ubuntu-tutorials.com/wp-content/uploads/2008/05/doneresized.png" alt="" width="380" height="458" /></a></p>
<p style="text-align: left;">You can then repeat these steps for the total number of accounts that you need send-access with while the reply-to still goes elsewhere.  I&#8217;ve been using this setup for my Ubuntu account for a few years now and its simple enough, and quick to setup.</p>
<p style="text-align: left;">The steps are slightly different if you&#8217;re using Thunderbird.  Maybe I can get that installed here soon and walk through those steps as well.  Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2008/05/17/how-to-manage-multiple-outbound-addresses-in-evolution/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Evolution + Gmail IMAP = &#8230;really slow?</title>
		<link>http://ubuntu-tutorials.com/2007/12/23/evolution-gmail-imap-really-slow/</link>
		<comments>http://ubuntu-tutorials.com/2007/12/23/evolution-gmail-imap-really-slow/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 05:10:01 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=526</guid>
		<description><![CDATA[I set up Evolution again today to tie into my gmail IMAP but I notice the performance is terribly slow. Does anyone else have this same issue? I&#8217;ve been using webmail for some time now, is that comparing apples to oranges? If anyone has any tips on speeding up Evolution when tied into Gmail&#8217;s IMAP [...]]]></description>
			<content:encoded><![CDATA[<p>I set up Evolution again today to tie into my gmail IMAP but I notice the performance is terribly slow.  Does anyone else have this same issue?  I&#8217;ve been using webmail for some time now, is that comparing apples to oranges?  If anyone has any tips on speeding up Evolution when tied into Gmail&#8217;s IMAP I would appreciate hearing about them.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2007/12/23/evolution-gmail-imap-really-slow/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Mozilla Thunderbird 2.0.0.5 : Security Update</title>
		<link>http://ubuntu-tutorials.com/2007/07/20/mozilla-thunderbird-2005-security-update/</link>
		<comments>http://ubuntu-tutorials.com/2007/07/20/mozilla-thunderbird-2005-security-update/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 14:18:49 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=380</guid>
		<description><![CDATA[For any of you running the Thunderbird 2.x series, perhaps based on my tutorial on manually installing the latest Thunderbird, there has been a security patch released today.  Below are instructions on upgrading manually, and a quick outline of some of the major security fixes. Upgrading Download Thunderbird (Save as...) sudo tar -C /opt -zxvf [...]]]></description>
			<content:encoded><![CDATA[<p>For any of you running the Thunderbird 2.x series, perhaps based on my tutorial on <a href="http://ubuntu-tutorials.com/2007/05/18/manually-install-thunderbird-2-ubuntu-704/" title="manually installing the latest thunderbird on Ubuntu">manually installing the latest Thunderbird</a>, there has been a security patch released today.  Below are instructions on upgrading manually, and a quick outline of some of the major security fixes.</p>
<p><strong>Upgrading</strong></p>
<blockquote><p><code><a href="http://getthunderbird.com" title="Download the latest Thunderbird email client">Download Thunderbird</a> (Save as...)</code></p></blockquote>
<blockquote><p><code>sudo tar -C /opt -zxvf ~/Desktop/thunderbird-*</code></p></blockquote>
<p>One of the security patches looks specific to Windows, but the other could be Linux related.  They are outlined below:</p>
<p><a href="http://www.mozilla.org/security/announce/2007/mfsa2007-23.html" class="critical">MFSA 2007-23</a>     Remote code execution by launching Firefox from Internet Explorer</p>
<p><a href="http://www.mozilla.org/security/announce/2007/mfsa2007-18.html" class="critical">MFSA 2007-18</a>     Crashes with evidence of memory corruption</p>
<p>Note: manually installing Thunderbird or any other application not from the official Ubuntu repository limits the level of support that can be received from the community.  Please keep this in mind or know what you are doing.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2007/07/20/mozilla-thunderbird-2005-security-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Thunder(bird) and Lightning! : Read and Write access to Google Calendar</title>
		<link>http://ubuntu-tutorials.com/2007/07/10/thunderbird-and-lightning-read-and-write-access-to-google-calendar/</link>
		<comments>http://ubuntu-tutorials.com/2007/07/10/thunderbird-and-lightning-read-and-write-access-to-google-calendar/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 14:35:37 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=367</guid>
		<description><![CDATA[First line: thanks to bordy for piecing this together. Now on to the business at hand. Who uses Thunderbird? Ok, a large number of you. Who uses a calendaring system? Whoa, a lot of you ehh. Well how would you like to tie Thunderbird into Google Calendar with read and write access? Cool, keep reading. [...]]]></description>
			<content:encoded><![CDATA[<p>First line: thanks to <a href="http://veritastic.net/" title="bordy, thanks for helping piece together this tutorial.">bordy</a> for piecing this together.</p>
<p>Now on to the business at hand.  Who uses Thunderbird?  Ok, a large number of you.  Who uses a calendaring system?  Whoa, a lot of you ehh.  Well how would you like to tie Thunderbird into Google Calendar with read <strong>and</strong> write access?  Cool, keep reading. You&#8217;ll be setup in five minutes.  It&#8217;s really pretty painless.</p>
<p><strong>Getting the Plugins</strong></p>
<p>Download the <a href="https://addons.mozilla.org/en-US/thunderbird/addon/2313" title="Lightning addon for Mozilla Thunderbird">Lightning Addon</a> for Mozilla Thunderbird</p>
<p>Download the <a href="https://addons.mozilla.org/en-US/thunderbird/addon/4631" title="Google Provider Addon for Mozilla Thunderbird">Google Provider Addon</a> for Mozilla Thunderbird (requires Thunderbird 2.x, see <a href="http://ubuntu-tutorials.com/2007/05/18/manually-install-thunderbird-2-ubuntu-704/" title="manually installing Thunderbird 2.0">here</a>)</p>
<p><strong>Installing the Plugins</strong></p>
<p>Open Thunderbird, navigate to &#8220;Tools&#8221; and select &#8220;Addons&#8221;.  Drag-and-Drop the two files you just downloaded into the box.  They will ask for installation confirmation, select Yes.  When these are done you&#8217;ll need to restart Thunderbird.  You will be prompted with a window to do so.</p>
<p><strong>Visit Google Calendar</strong></p>
<p>Before we can configure your new calendar in Thunderbird we&#8217;ll need to get just a bit of data from your Google Calendar account.  Login to Google Calendar (I&#8217;m assuming you already have an account, if not you&#8217;ll want to set one up.. but that is outside the context of this tutorial.)</p>
<p>Navigate your way to &#8220;Settings&#8221; (top right).</p>
<p>Navigate to &#8220;Calendars&#8221; in the Calendar Settings area.</p>
<p>Navigate to the calendar you want to share (as you can have multiple calendars, we need to do one at a time)</p>
<p>Navigate to the &#8220;Private Address&#8221; and select the XML link via right-click.  Select &#8220;Copy Link Location&#8221; in your Firefox browser.</p>
<p><strong>Configure Lightning</strong></p>
<p>Now that you have the link to your private Google Calendar address we can configure Lightning to use it.  Go back to Thunderbird now and select &#8220;New&#8221; in the Calendar tab of Lightning (bottom right, third tab).</p>
<p>Select &#8220;On the Network&#8221; for the location of your calendar system.</p>
<p>Select &#8220;Google Calendar&#8221; on the next prompt.  If you don&#8217;t see a Google Calendar option you&#8217;ll want to verify that the Google Provider Addon was installed properly.</p>
<p>Paste the link we copied from Google Calendar (the XML we copied just in the section previous) into the &#8220;Location&#8221; box.</p>
<p>The next step will ask for a calendar name and color.  I&#8217;ll leave that part up to you. <img src='http://ubuntu-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The last step is providing Lightning / Thunderbird with your Google Calendar username and password for Google Calendar.  The username should have been auto-harvested from the link you pasted, but the password will be needed.</p>
<p><strong>Using Your Calendar</strong></p>
<p>At this point you should be able to create appointments within Lightning and they&#8217;ll very quickly propogate to Google Calendar. To get started select the Calendar tab within Lightning, right-click on a date and time and select New.  I&#8217;m sure you can take it from here.. Enjoy.</p>
<p>(some of these steps taken from <a href="http://bfish.xaedalus.net/?p=239" title="Stay in sync with Google and Thunderbird">here</a>.)</p>
<p><hints id="hah_hints"></hints></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2007/07/10/thunderbird-and-lightning-read-and-write-access-to-google-calendar/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Configuring Mutt To Use An Alternate MTA : ESMTP</title>
		<link>http://ubuntu-tutorials.com/2007/07/08/configuring-mutt-to-use-an-alternate-mta-esmtp/</link>
		<comments>http://ubuntu-tutorials.com/2007/07/08/configuring-mutt-to-use-an-alternate-mta-esmtp/#comments</comments>
		<pubDate>Sun, 08 Jul 2007 07:04:40 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=363</guid>
		<description><![CDATA[Some of you may remember that I went on a Mutt kick there a while back and gave up for a few different reasons. I have been using Thunderbird 2.x series since, which has been pretty good, but I still think all mail clients suck. I don&#8217;t know exactly what it is about them&#8211; maybe [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may remember that I went on a Mutt kick there a while back and gave up for a few different reasons.  I have been using Thunderbird 2.x series since, which has been pretty good, but I still think all mail clients suck.  I don&#8217;t know exactly what it is about them&#8211; maybe I just don&#8217;t like email in general.</p>
<p>Anyway, last nite I got to thinking about Mutt again and what I didn&#8217;t like about it.  One of my main complaints is that it relies on postfix and relays through your local machine.  I would prefer if it were able to send outgoing through one of my many domains, my ISP, etc.  Granted I still have a few other complaints with Mutt, but this tutorial will take care of the mail relaying anyway.</p>
<p>In this tutorial I&#8217;ll outline installing, configuring and using ESMTP to handle your outgoing mail.  This will allow you to send your email, via Mutt, through gmail, your ISP, or some other mail relay that you have access to.  I&#8217;ll outline using gmail here, but you should easily be able to customize it for your own needs.</p>
<p><strong>Install and Configure ESMTP</strong></p>
<p>First we&#8217;ll replace postfix with ESMTP for our mail relaying.  Use a command such as the one below to install ESMTP, which should auto-remove postfix.</p>
<blockquote><p><code>sudo aptitude install esmtp</code></p></blockquote>
<p>On the Ubuntu 6.06.1 server that I tested this on it auto-removed postfix at this point.  If dependencies or packages have changed since then you might find different results.  I have yet to test on current (Ubuntu 7.04).</p>
<p>We can now configure esmtp to use your ISP or, in this case, to use a gmail account to send email through.</p>
<p>Open and edit a new file in your home folder called $HOME/.esmtprc (there is also a global in /etc/esmtprc).</p>
<p>To use gmail for your outgoing mail set your $HOME/.esmtprc to the following settings:</p>
<blockquote><p><code>identity username@gmail.com</code></p></blockquote>
<blockquote><p><code></code></p></blockquote>
<blockquote><p><code>hostname smtp.gmail.com:587</code></p></blockquote>
<blockquote><p><code></code></p></blockquote>
<blockquote><p><code>username "username@gmail.com"</code></p></blockquote>
<blockquote><p><code></code></p></blockquote>
<blockquote><p><code>password "password"</code></p></blockquote>
<blockquote><p><code></code></p></blockquote>
<blockquote><p><code>starttls required</code></p></blockquote>
<blockquote><p><code>mda "/usr/bin/procmail -d %T"</code></p></blockquote>
<p>You&#8217;ll need to set the permissions on this file to private before esmtp will function properly.  Use this command to set the permissions:</p>
<blockquote><p><code>chmod 0600 .esmtprc</code></p></blockquote>
<p>After you&#8217;ve done this you need to tell Mutt to use these settings.  You can do this by setting a symlink from what Mutt normally looks for in sendmail to the new esmtp, or we can just tell it the path within the mutt configuration file.  We&#8217;ll do the latter here.  Add the following two lines into your .muttrc file:</p>
<blockquote><p><code>set sendmail="/usr/bin/esmtp"</p>
<p>set envelope_from=yes</code></p></blockquote>
<p>or (if you want debug logging done during testing)</p>
<blockquote><p><code>set sendmail="/usr/bin/esmtp -v -X /tmp/esmtp.log"</code></p></blockquote>
<p>Now one last thing that needs to be done here is put the Gmail Certificate Authority (CA) in the proper place so that the tls will work for encrypted outgoing connection.  If you are not using gmail you may not need this step.  Run the following commands to put the CA in the proper place for use by ESMTP and the gmail connection.</p>
<blockquote><p><code>mkdir ~/.authenticate</code></p></blockquote>
<blockquote><p><code>chmod 0700 ~/.authenticate</code></p></blockquote>
<blockquote><p><code>sudo aptitude install ca-certificates (this may already be in place, it was on my Dapper machine)</code></p></blockquote>
<blockquote><p><code>cp -a /etc/ssl/certs/ ~/.authenticate/ca</code></p></blockquote>
<blockquote><p><code>chmod -R go-rwx ~/.authenticate/ca</code></p></blockquote>
<p>At this point Mutt should be configured to use ESMTP for outgoing mail and will relay through whatever host you specify (that you have access to, of course).  You can test this by opening Mutt and trying to send a message.  Check the /tmp/esmtp.log for details on troubleshooting or whether or not things worked as planned.  Of course you&#8217;ll need the logging configured as above to troubleshoot this.</p>
<p>This, I think, solves one of my major concerns with Mutt and makes it a bit more flexible for my needs.  I may come back to Mutt for a while&#8230; at least until I get tired of it again and come to another client looking for something more.  It&#8217;s inevitable considering all mail clients suck, right? <img src='http://ubuntu-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>(much of these instructions were based on information in the <a href="http://esmtp.sourceforge.net/manual.html" title="esmtp manual - configuring mutt to use an alternate MTA">esmtp manual</a>, see there for more details.)</p>
<p><hints id="hah_hints"></hints></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2007/07/08/configuring-mutt-to-use-an-alternate-mta-esmtp/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Manually Install Thunderbird 2 : Ubuntu 7.04</title>
		<link>http://ubuntu-tutorials.com/2007/05/18/manually-install-thunderbird-2-ubuntu-704/</link>
		<comments>http://ubuntu-tutorials.com/2007/05/18/manually-install-thunderbird-2-ubuntu-704/#comments</comments>
		<pubDate>Sat, 19 May 2007 04:44:41 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=339</guid>
		<description><![CDATA[Since my exodus yesterday from Mutt I have installed and am playing with Thunderbird 2 for email. So far I don&#8217;t hate it like I did 1.5, but we&#8217;re still in the test stages. We&#8217;ll see how it all turns out. In any event I wanted to share with you how I installed Thunderbird 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Since my exodus yesterday from Mutt I have installed and am playing with Thunderbird 2 for email.  So far I don&#8217;t hate it like I did 1.5, but we&#8217;re still in the test stages.  We&#8217;ll see how it all turns out.  In any event I wanted to share with you how I installed Thunderbird 2 manually since it is not yet in the Ubuntu repositories.</p>
<ol>
<li><a href="http://www.mozilla.com/en-US/thunderbird/" title="Download Thunderbird 2 mail client">Download Thunderbird 2</a>. (Save to disk)</li>
<li>sudo tar -C /opt -zxvf ~/Desktop/thunderbird-*</li>
<li>sudo ln -s /opt/thunderbird/thunderbird /usr/local/bin/thunderbird</li>
<li>create a menu item: sudo gedit /usr/share/applications/thunderbird.desktop</li>
</ol>
<blockquote><p><code>[Desktop Entry]<br />
Encoding=UTF-8<br />
Name=Thunderbird<br />
Comment=Thunderbird Mail Client<br />
Exec=thunderbird<br />
Icon=/opt/thunderbird/icons/mozicon16.xpm<br />
StartupNotify=true<br />
Terminal=false<br />
Type=Application<br />
Categories=Applications;Network</code></p></blockquote>
<p>Enjoy the latest build while we wait for the official package to come down the pipe.  You can be sure I&#8217;ll keep you updated on my thoughts on Thunderbird 2.</p>
<p>The Ubuntu Wiki has similar instructions and also contains details on having the repository version and the manually installed version side by side. See &#8220;<a href="https://help.ubuntu.com/community/ThunderbirdNewVersion" title="Thunderbird New Version - manually installing thunderbird along side the repository">Thunderbird New Version</a>&#8220;.</p>
<p><hints id="hah_hints"></hints></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2007/05/18/manually-install-thunderbird-2-ubuntu-704/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Mastering Mutt : A Few Basic Commands</title>
		<link>http://ubuntu-tutorials.com/2007/04/28/mastering-mutt-a-few-basic-commands/</link>
		<comments>http://ubuntu-tutorials.com/2007/04/28/mastering-mutt-a-few-basic-commands/#comments</comments>
		<pubDate>Sat, 28 Apr 2007 22:52:30 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=324</guid>
		<description><![CDATA[To update based on my earlier post concerning use of the Mutt email client I wanted to share some of the quick tips that I&#8217;ve learned.  Now, Mutt can be very complex and very granular in its configuration.  This is by no means a comprehensive overview of Mutt usage.  I mainly want to point out [...]]]></description>
			<content:encoded><![CDATA[<p>To update based on my earlier post concerning use of the Mutt email client I wanted to share some of the quick tips that I&#8217;ve learned.  Now, Mutt can be very complex and very granular in its configuration.  This is by no means a comprehensive overview of Mutt usage.  I mainly want to point out some of its basic uses, navigation and configuration and you can go from there.</p>
<p>Now, why in the world would I want to use a text-based email client?  It&#8217;s 2007 already.  We&#8217;re using Feisty with Beryl and can burn our windows into oblivion upon closing.  We can spin our cubes of virtual desktops until we&#8217;re motion sick.  Ohh, and let&#8217;s not forget that Mozilla just released the long awaited Thunderbird 2.0!  So, despite all this, why would I bother spending any time on the text based Mutt client?  One, because I can (isn&#8217;t that the driving reason behind half of what we do sometimes!) and two, because it can come in handy.  I&#8217;ve actually grown now to prefer it over Evolution or Thunderbird&#8230; but I&#8217;ll let you decide for yourself.</p>
<p>First of all, the thing that held me up, was not knowing how to access my account when I first opened Mutt.  No in-application config to create your inbox settings and no handy &#8216;wizard&#8217; to walk you through.  So that led me to asking questions and doing a bit of reading.  Here are a few of the methods I found for accessing your mail accounts:</p>
<blockquote><p><code>mutt -f protocol://username:password(optional)@mail.server.com</p>
<p>mutt -f pops://christer.edwards@pop.gmail.com (example gmail setup, replace with your user)</p>
<p>mutt -f imaps://christer@mail.imapserver.com (example imap account access, user your own settings)</code></p></blockquote>
<p>Again, these are examples and you&#8217;ll need to replace the sections with your own settings.  Account types that are supported, pop, pops, imap, imaps and local mail (ie; Maildir, /var/mail/user, etc).</p>
<p>Using this format, without the password, will prompt you for the password once you&#8217;ve connected to the server and you&#8217;ll see a listing of any email in your inbox.  Some of the basic commands are listed across the top of the screen within Mutt, and for more you can press ?.  Some of the basics:</p>
<blockquote><p><code>d - delete selected message</p>
<p>m - compose message</p>
<p>h - toggle header detail</p>
<p>q - quit current message / quit mutt</p>
<p>r - reply to single user</p>
<p>g - reply to group (ie; mailing list)</p>
<p>u - undelete message tagged for deletion</p>
<p>v - view attachments (if email has attachment, of course)</p>
<p>s - save email or attachment</code></p></blockquote>
<p>Again, I don&#8217;t mean to be comprehensive in the shortcut keys and usage of mutt, but those should get you around for the most part.</p>
<p>This&#8217;ll be enough for today, but I have plans for a second tutorial on some of the more useful settings within the .muttrc file.  Things such as GPG verification and signing, header settings, preferred editors, etc.</p>
<p>If you&#8217;d like to give mutt a try, maybe give some of the above commands a test run and shoot me an email for testing at christer DOT edwards AT ubuntu DOT com.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2007/04/28/mastering-mutt-a-few-basic-commands/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Learning the Mutt Mail Client</title>
		<link>http://ubuntu-tutorials.com/2007/04/14/learning-the-mutt-mail-client/</link>
		<comments>http://ubuntu-tutorials.com/2007/04/14/learning-the-mutt-mail-client/#comments</comments>
		<pubDate>Sun, 15 Apr 2007 01:03:14 +0000</pubDate>
		<dc:creator>Christer Edwards</dc:creator>
				<category><![CDATA[EMail]]></category>

		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=319</guid>
		<description><![CDATA[I&#8217;ve decided over the past few days that I wanted to learn more about and start using Mutt for my mail client.  After reading numerous pages and seeing dozens of examples of .muttrc files I&#8217;ll say that I&#8217;m still a bit lost on what I should and shouldn&#8217;t be setting.  For those of you that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided over the past few days that I wanted to learn more about and start using Mutt for my mail client.  After reading numerous pages and seeing dozens of examples of .muttrc files I&#8217;ll say that I&#8217;m still a bit lost on what I should and shouldn&#8217;t be setting.  For those of you that have experience with Mutt I&#8217;d appreciate any tips you might have.  Here is some of my basic setup.</p>
<ul>
<li>Gmail: I need to follow this account and be able to send as @gmail and @ubuntu from this account.</li>
<li>IMAP: My office uses an IMAP server for email that I&#8217;ll also need to follow.</li>
<li>From what I can tell these both need pops:// and imaps:// for connection.</li>
<li>This makes two incoming accounts to track and three accounts I need to be able to send-as.  (I have already configured postfix to handle outgoing)</li>
<li>I also would like to PGP sign all of these accounts and validate incoming signed emails.</li>
</ul>
<p>I know that kind of looks like a lot.  I have much of it roughly figured out but don&#8217;t feel terribly confident about how I have it pieced together so far.  I&#8217;m do have some of these options missing..</p>
<p>I appreciate any help in getting this setup.  Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntu-tutorials.com/2007/04/14/learning-the-mutt-mail-client/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic (User agent is rejected)
Database Caching 2/44 queries in 0.025 seconds using disk: basic
Object Caching 540/623 objects using disk: basic

Served from: ubuntu-tutorials.com @ 2012-02-09 13:28:00 -->
