<?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>LinuxReaders &#187; qmail gmail</title> <atom:link href="http://www.linuxreaders.com/tag/qmail-gmail/feed/" rel="self" type="application/rss+xml" /><link>http://www.linuxreaders.com</link> <description></description> <lastBuildDate>Tue, 07 Feb 2012 04:52:06 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Qmail – Relay Mails to Gmail</title><link>http://www.linuxreaders.com/2010/01/07/qmail-relay-mails-to-gmail/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qmail-relay-mails-to-gmail</link> <comments>http://www.linuxreaders.com/2010/01/07/qmail-relay-mails-to-gmail/#comments</comments> <pubDate>Wed, 06 Jan 2010 21:03:13 +0000</pubDate> <dc:creator>Dhaval Thakar</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[MailServer]]></category> <category><![CDATA[gmail mail relay]]></category> <category><![CDATA[gmail mail relay qmail]]></category> <category><![CDATA[gmail qmail]]></category> <category><![CDATA[Qmail - Relay Mails to Gmail]]></category> <category><![CDATA[qmail gmail]]></category> <category><![CDATA[qmail relay mail gmail]]></category> <category><![CDATA[relay mails through gmail]]></category> <category><![CDATA[relay mails to gmail]]></category> <guid
isPermaLink="false">http://www.linuxreaders.com/?p=1135</guid> <description><![CDATA[Earlier we have covered postfix- relay mails to gmail This tip is for the qmail server using Jms patch. Many of us prefer Qmail instead of Postfix, especially when it come to use as mail server, for the one who wish to relay mails postfix is easy to install. Make sure you have created cert [...]<p><a
href="http://www.linuxreaders.com/2010/01/07/qmail-relay-mails-to-gmail/">Qmail – Relay Mails to Gmail</a> is a post from: <a
href="http://www.linuxreaders.com">LinuxReaders</a> <br
/>  <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script> <a
class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;username=dpthakar"><img
src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=dpthakar"></script> </p> ]]></description> <content:encoded><![CDATA[<p></p><p>Earlier we have covered <a
href="http://www.linuxreaders.com/2009/08/07/postfix-relay-emails-to-gmail/" target="_blank">postfix- relay mails to gmail</a></p><p>This tip is for the qmail server using <a
href="http://qmail.jms1.net/patches/combined-details.shtml" target="_blank">Jms patch.</a></p><p>Many of us prefer Qmail instead of Postfix, especially when it come to use as mail server, for the one who wish to relay mails postfix is easy to install.</p><p>Make sure you have created cert while installing Qmail.<br
/> e.g.</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>qmail<span style="color: #000000; font-weight: bold;">/</span>qmail-<span style="color: #000000;">1.03</span>
.<span style="color: #000000; font-weight: bold;">/</span>config-fast tech.linuxreaders.com
<span style="color: #c20cb9; font-weight: bold;">make</span> cert
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> vpopmail:qmail <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>qmail<span style="color: #000000; font-weight: bold;">/</span>control<span style="color: #000000; font-weight: bold;">/</span>clientcert.pem <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>qmail<span style="color: #000000; font-weight: bold;">/</span>control<span style="color: #000000; font-weight: bold;">/</span>servercert.pem</pre></div></div><p>Create new smtp service. I created qmail-smtpd1 which listens on port 26</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>service<span style="color: #000000; font-weight: bold;">/</span>qmail-smtpd1<span style="color: #000000; font-weight: bold;">/</span>run
<span style="color: #666666; font-style: italic;">#!/bin/sh </span>
<span style="color: #7a0874; font-weight: bold;">exec</span> tcpserver <span style="color: #660033;">-v</span> 127.0.0.1 <span style="color: #000000;">26</span> openssl s_client <span style="color: #660033;">-quiet</span> <span style="color: #660033;">-connect</span> smtp.gmail.com:<span style="color: #000000;">25</span> <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span></pre></div></div><p>Aadd entry in smtproutes</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>qmail<span style="color: #000000; font-weight: bold;">/</span>control<span style="color: #000000; font-weight: bold;">/</span>smtproutes
<span style="color: #666666; font-style: italic;">#following is to relay all mails through gmail</span>
:smtp.gmail.com linuxreaders<span style="color: #000000; font-weight: bold;">@</span>gmail.com my_passwd
<span style="color: #666666; font-style: italic;">#OR</span>
<span style="color: #666666; font-style: italic;">#following is to relay only technoreaders.com through gmail.</span>
technoreaders.com:smtp.gmail.com linuxreaders<span style="color: #000000; font-weight: bold;">@</span>gmail.com my_passwd</pre></div></div><p><a
href="http://groups.google.com/group/muc.lists.qmail/browse_thread/thread/cb33ad5935ab4c9a" target="_blank">Reference</a></p><p><a
href="http://www.linuxreaders.com/2010/01/07/qmail-relay-mails-to-gmail/">Qmail – Relay Mails to Gmail</a> is a post from: <a
href="http://www.linuxreaders.com">LinuxReaders</a> <br
/>  <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script> <a
class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;username=dpthakar"><img
src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=dpthakar"></script> </p><p></p><p>Related posts:<ol><li><a
href='http://www.linuxreaders.com/2009/08/07/postfix-relay-emails-to-gmail/' rel='bookmark' title='Postfix- Relay Emails to Gmail'>Postfix- Relay Emails to Gmail</a></li><li><a
href='http://www.linuxreaders.com/2009/05/14/import-mails-contacts-from-yahoo-aol-hotmail-to-your-gmail/' rel='bookmark' title='Import Mails &amp; Contacts from Yahoo, Aol, Hotmail&#8230; to your Gmail'>Import Mails &amp; Contacts from Yahoo, Aol, Hotmail&#8230; to your Gmail</a></li><li><a
href='http://www.linuxreaders.com/2009/05/08/gmail-down/' rel='bookmark' title='Gmail Down'>Gmail Down</a></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linuxreaders.com/2010/01/07/qmail-relay-mails-to-gmail/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
