<?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>Linux T&#38;T &#187; Mail</title>
	<atom:link href="http://linux.wxs.ro/category/mail/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux.wxs.ro</link>
	<description>WladyX’s collection of linux tips&#38;tricks</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:42:05 +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>Clamd upgrade (slack)</title>
		<link>http://linux.wxs.ro/2011/11/03/clamd-upgrade-slack/</link>
		<comments>http://linux.wxs.ro/2011/11/03/clamd-upgrade-slack/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 11:23:57 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1699</guid>
		<description><![CDATA[download sources untar ./configure --enable-experimental --enable-dns-fix --sysconfdir=/etc make /etc/rc.d/rc.clamd stop make install /etc/rc.d/rc.clamd start source]]></description>
			<content:encoded><![CDATA[<p>download <a href="http://www.clamav.net/lang/en/download/sources/">sources</a><br />
untar<br />
<a href="http://www.clamav.net/lang/en/download/sources/"><br />
</a><code>./configure --enable-experimental --enable-dns-fix --sysconfdir=/etc<br />
make<br />
/etc/rc.d/rc.clamd stop<br />
make install<br />
/etc/rc.d/rc.clamd start</code></p>
<p><code><br />
<a href="http://wiki.clamav.net/bin/view/Main/InstallFromSource">source</a> </code></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/11/03/clamd-upgrade-slack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sendmail flush queue</title>
		<link>http://linux.wxs.ro/2011/09/29/sendmail-flush-queue/</link>
		<comments>http://linux.wxs.ro/2011/09/29/sendmail-flush-queue/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 10:40:46 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1634</guid>
		<description><![CDATA[sendmail -q -v source]]></description>
			<content:encoded><![CDATA[<p><code>sendmail -q -v</code></p>
<p><a href="http://www.linuxquestions.org/questions/linux-software-2/sendmail-command-to-flush-queue-49694/">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/09/29/sendmail-flush-queue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sendmail on AIX</title>
		<link>http://linux.wxs.ro/2011/09/23/sendmail-on-aix/</link>
		<comments>http://linux.wxs.ro/2011/09/23/sendmail-on-aix/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 07:06:18 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[AIX]]></category>
		<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1607</guid>
		<description><![CDATA[To add a mail relay server (smart host) to the Sendmail configuration file, edit the /etc/mail/sendmail.cf file, modify the DS line, and refresh the daemon: # vi /etc/mail/sendmail.cf DSsmtpgateway.xyz.com.au # refresh -s sendmail To log Sendmail activity, place the following entry in the /etc/syslog.conf file, create the log file, and refresh the syslog daemon: # [...]]]></description>
			<content:encoded><![CDATA[<p>To add a mail relay server (smart host) to the Sendmail configuration file, edit the /etc/mail/sendmail.cf file, modify the DS line, and refresh the daemon:</p>
<p><code># vi /etc/mail/sendmail.cf<br />
DSsmtpgateway.xyz.com.au<br />
# refresh -s sendmail</code></p>
<p>To log Sendmail activity, place the following entry in the /etc/syslog.conf file, create the log file, and refresh the syslog daemon:</p>
<p><code># grep mail /etc/syslog.conf<br />
mail.debug /var/log/maillog rotate time 7d files 4 compress<br />
# touch /var/log/maillog<br />
# refresh -s syslogd</code></p>
<p><a href="http://www.ibm.com/developerworks/aix/library/au-sendmail_on_aix/index.html">source</a><br />
.forward+: world writable directory:</p>
<p>The biggest surprise is likely to come from .forward and :include: files in unsafe directory paths (directory paths which are group or world writable). This is no longer allowed. This would mean that if user joe&#8217;s home directory was writable by group staff, sendmail would not use his .forward file. This behavior can be altered, at the possible expense of system security, by setting the DontBlameSendmail option. Items from these unsafe .forward and :include: files will be marked as unsafe addresses – the items can not be deliveries to files or programs. This behavior can also be altered via DontBlameSendmail.</p>
<p>I&#8217;ve set:</p>
<p><code>O DontBlameSendmail=forwardfileinunsafedirpath, forwardfileinunsafedirpathsafe</code></p>
<p>The first flag allows the forward file to be read, the second allows the items in the file to be marked as safe for file and program delivery.</p>
<p><a href="http://www.warmetal.nl/aixmail">source</a></p>
<p><strong>How do I start/stop sendmail on AIX?</strong></p>
<div>
<p>To start sendmail:<br />
<code>startsrc -s sendmail -a "-bd -q30m"</code><br />
To stop sendmail:<br />
<code>stopsrc -s sendmail</code><br />
To refresh sendmail:<br />
<code>refresh -s sendmail</code></p>
</div>
<p><a href="http://kb.eclipseinc.com/kb/how-do-i-startstop-sendmail-on-aix/"> source</a></p>
<p><strong>Purging a sendmail mailqueue on AIX</strong></p>
<p>&nbsp;</p>
<p><code># ps -ef | grep sendmail</code></p>
<p># kill -9 <em>SENDMAIL_PIDS</em> <em><br />
</em></p>
<p>Then, stop sendmail cleanly (the commands depend of your OS. This one works only on IBM AIX).</p>
<p><code># stopsrc -s sendma</code>il</p>
<p>You may check the number of messages that are in the queue, which will give you an idea of the time it will take to process the queue:</p>
<p><code># sendmail -bp<br />
</code></p>
<p>Check that there are no longer any sendmail processes running:</p>
<p><code># ps -ef | grep sendmail</code></p>
<p># kill -9 <em>SENDMAIL_PIDS</em></p>
<p>Rename the current mailqueue to another directory:</p>
<p><code># mv /var/spool/mqueue /var/spool/omqueue </code></p>
<p>Restart sendmail</p>
<p><code># startsrc -s sendmail</code><br />
<code>0513-059 The sendmail Subsystem has been started. Subsystem PID is 62118</code><br />
Now process the old queue (may take time, depending upon the number of messages to process):</p>
<p><code># /usr/sbin/sendmail -oQ/var/spool/omqueue -q -v</code></p>
<p><code>Running /var/spool/omqueue/m7HKkOM60666 (sequence XXXX of XXXXX)<br />
Running /var/spool/omqueue/m7HKkOM60666 (sequence XXXX+1 of XXXXX)...<br />
etc... </code></p>
<p>Now, you may safely delete all messages in the old queue:</p>
<p><code># rm -rf /var/spool/omqueue</code></p>
<p>Create a new mailqueue directory.</p>
<p><code># mkdir /var/spool/mqueue</code></p>
<p>Stop and start sendmail:</p>
<p><code># stopsrc -s sendmail<br />
</code></p>
<p><code># startsrc -s sendmail</code></p>
<p><a href="http://www.nixblog.org/post/2008/09/10/Purging-a-sendmail-mailqueue-on-AIX">source</a></p>
<p><strong>Kill all sendmail processes</strong></p>
<p><code>for i in `ps -ef |grep sendmail|awk '{ print $2 }'`; do kill -9 $i; done</code></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/09/23/sendmail-on-aix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add an Image to Your Mozilla Thunderbird Signature</title>
		<link>http://linux.wxs.ro/2011/08/30/how-to-add-an-image-to-your-mozilla-thunderbird-signature/</link>
		<comments>http://linux.wxs.ro/2011/08/30/how-to-add-an-image-to-your-mozilla-thunderbird-signature/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 12:23:56 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>
		<category><![CDATA[Thunderbird]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1586</guid>
		<description><![CDATA[Add an Image to Your Mozilla Thunderbird Signature To insert an image into your signature in Mozilla Thunderbird: Start with a new, empty message using HTML formatting. In the message&#8217;s body, create your signature the way you want it to look. Insert the image. Go to the image insertion dialog&#8217;s Link tab to link your [...]]]></description>
			<content:encoded><![CDATA[<h3>Add an Image to Your Mozilla Thunderbird Signature</h3>
<p>To insert an image into your signature in Mozilla Thunderbird:</p>
<ul>
<li>Start with a new, empty message <a href="http://email.about.com/od/mozillathunderbirdtips/qt/How_to_Compose_Messages_in_HTML_in_Mozilla_Thunderbird.htm">using HTML formatting</a>.</li>
<li>In the message&#8217;s body, create your signature the way you want it to look.</li>
<li><a href="http://email.about.com/od/mozillathunderbirdtips/qt/Insert_an_Image_Inline_in_an_Email_with_Mozilla_Thunderbird.htm">Insert the image</a>.
<ul>
<li>Go to the image insertion dialog&#8217;s <em>Link</em> tab to link your image to a web page.</li>
</ul>
</li>
<li>Select <em>File | Save As | File&#8230;</em> from the message&#8217;s menu.</li>
<li>Make sure <em>HTML Files</em> is selected under <em>Format:</em>.</li>
<li>Enter &#8220;signature.html&#8221; (or something similar) under <em>Save As:</em>.</li>
<li>Click <em>Save</em>.</li>
<li>Close the message window, not saving the draft.</li>
<li>Select <em>Tools | Account Settings&#8230;</em> from the Mozilla Thunderbird menu.</li>
<li>For all desired accounts:
<ul>
<li>Go to the account&#8217;s root item.</li>
<li>Make sure <em>Attach this signature:</em> is checked.</li>
<li>Click <em>Choose&#8230;</em>.</li>
<li>Find and highlight the &#8220;signature.html&#8221; file just created.</li>
<li>Click <em>Open</em>.</li>
</ul>
</li>
<li>Click <em>OK</em>.</li>
</ul>
<p><a href="http://email.about.com/od/mozillathunderbirdtips/qt/et_tb_sig_image.htm">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/08/30/how-to-add-an-image-to-your-mozilla-thunderbird-signature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sendmail.mc entry for Smart Host on different port</title>
		<link>http://linux.wxs.ro/2011/05/03/sendmail-mc-entry-for-smart-host-on-different-port/</link>
		<comments>http://linux.wxs.ro/2011/05/03/sendmail-mc-entry-for-smart-host-on-different-port/#comments</comments>
		<pubDate>Tue, 03 May 2011 10:04:30 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1449</guid>
		<description><![CDATA[/etc/mail/sendmail.mc: define(`SMART_HOST',`relay:your.relay.system.com')dnl define(`RELAY_MAILER_ARGS', `TPC $h 587')dnl cd /etc/mail m4 sendmail.mc &#62; sendmail.cf service sendmail restart source]]></description>
			<content:encoded><![CDATA[<p>/etc/mail/sendmail.mc:<br />
<code>define(`SMART_HOST',`relay:your.relay.system.com')dnl<br />
define(`RELAY_MAILER_ARGS', `TPC $h 587')dnl</code></p>
<p><code> </code></p>
<p><code>cd /etc/mail<br />
m4 sendmail.mc &gt; sendmail.cf<br />
service sendmail restart</code></p>
<p><a href="http://www.linuxquestions.org/questions/linux-server-73/sendmail-mc-entry-for-smart-host-on-different-port-690852/">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/05/03/sendmail-mc-entry-for-smart-host-on-different-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CLI zmtlsctl to set Zimbra Web Server Mode</title>
		<link>http://linux.wxs.ro/2011/04/27/cli-zmtlsctl-to-set-zimbra-web-server-mode/</link>
		<comments>http://linux.wxs.ro/2011/04/27/cli-zmtlsctl-to-set-zimbra-web-server-mode/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 11:27:49 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>
		<category><![CDATA[Zimbra]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1422</guid>
		<description><![CDATA[zmtlsctl [mode] http &#8211; http only, the user would browse to http://zimbra.domain.com https &#8211; https only, the user would browse to https://zimbra.domain.com http:// is denied. both &#8211; A user can go to http:// or https:// and will keep that mode for their entire session. mixed &#8211; If the user goes to http:// it will switch [...]]]></description>
			<content:encoded><![CDATA[<p><strong>zmtlsctl [mode]</strong></p>
<p><strong>http</strong> &#8211; http only, the user would browse to http://zimbra.domain.com<br />
<strong>https</strong> &#8211; https only, the user would browse to https://zimbra.domain.com http:// is denied.<br />
<strong>both</strong> &#8211; A user can go to http:// or https:// and will keep that mode for their entire session.<br />
<strong>mixed</strong> &#8211; If the user goes to http:// it will switch to https:// for the login only, then will revert to http:// for normal session traffic. If they browse to https:// then they will stay https://<br />
<strong>redirect</strong> &#8211; Like mixed if the user goes to http:// it will switch to https:// but they will stay https:// for their entire session.</p>
<p><a href="http://wiki.zimbra.com/index.php?title=Zmtlsctl"> source</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/04/27/cli-zmtlsctl-to-set-zimbra-web-server-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evolution error</title>
		<link>http://linux.wxs.ro/2011/03/18/evolution-error/</link>
		<comments>http://linux.wxs.ro/2011/03/18/evolution-error/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 08:18:26 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1368</guid>
		<description><![CDATA[GConf error: Type mismatch: Expected list, got string All further errors shown only on terminal. &#160; close evolution $ killall gconfd-2 rm /home/user/.gconf/apps/evolution/shell/network_config/%gconf.xml]]></description>
			<content:encoded><![CDATA[<p>GConf error: Type mismatch: Expected list, got string<br />
All further errors shown only on terminal.</p>
<p>&nbsp;</p>
<p>close evolution<br />
$ killall gconfd-2<br />
rm /home/user/.gconf/apps/evolution/shell/network_config/%gconf.xml</p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/03/18/evolution-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mailman attachments archived even when archiving disabled</title>
		<link>http://linux.wxs.ro/2011/01/11/mailman-attachments-archived-even-when-archiving-disabled/</link>
		<comments>http://linux.wxs.ro/2011/01/11/mailman-attachments-archived-even-when-archiving-disabled/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 15:07:25 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1277</guid>
		<description><![CDATA[i disabled digestable in Digest options. This is expected behavior. The scrubber saves attachments in the archives/private/&#60;listname&#62;/attachments/ directory. This happens for all messages if scrub_nondigest is Yes, and for all plain digests in any case even if the list does not do archiving. If you allow attachments at all, the only way to avoid this [...]]]></description>
			<content:encoded><![CDATA[<p>i disabled<strong> digestable </strong>in<strong> Digest options<strong>.</strong><a href="https://lists.wxs.ro/mailman/admin/fmi/digest"><strong><br />
</strong></a></strong></p>
<p>This is expected behavior. The scrubber saves attachments in<br />
the archives/private/&lt;listname&gt;/attachments/ directory. This<br />
happens for all messages if scrub_nondigest is Yes, and for<br />
all plain digests in any case even if the list does not do<br />
archiving.</p>
<p>If you allow attachments at all, the only way to avoid this<br />
is to set both scrub_nondigest and digestable to No. I.e,<br />
don&#8217;t scrub individual messages and don&#8217;t allow digests.</p>
<p><a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=1442639&amp;group_id=103&amp;atid=100103]">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/01/11/mailman-attachments-archived-even-when-archiving-disabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mailman Clear Archives</title>
		<link>http://linux.wxs.ro/2011/01/11/mailman-clear-archives/</link>
		<comments>http://linux.wxs.ro/2011/01/11/mailman-clear-archives/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 15:05:25 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1275</guid>
		<description><![CDATA[cat /dev/null &#62; archives/private/listname.mbox/listname.mbox bin/arch --wipe listname source]]></description>
			<content:encoded><![CDATA[<p><code>cat /dev/null &gt; archives/private/listname.mbox/listname.mbox<br />
bin/arch --wipe listname</code></p>
<p><a href="http://mail.python.org/pipermail/mailman-users/2005-June/045006.html">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/01/11/mailman-clear-archives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate dovecot self-signed SSL certificates</title>
		<link>http://linux.wxs.ro/2011/01/05/generate-dovecot-self-signed-ssl-certificates/</link>
		<comments>http://linux.wxs.ro/2011/01/05/generate-dovecot-self-signed-ssl-certificates/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 08:13:08 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mail]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1258</guid>
		<description><![CDATA[delete certs from /etc/ssl dpkg-reconfigure dovecot-common source]]></description>
			<content:encoded><![CDATA[<p>delete certs from /etc/ssl<code><br />
dpkg-reconfigure dovecot-common</code></p>
<p><a href="http://jerakeen.org/blog/2005/08/ssl/">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/01/05/generate-dovecot-self-signed-ssl-certificates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

