<?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>Patterns &#187; mail</title>
	<atom:link href="http://kb.huptas.net/category/ops/mail/feed/" rel="self" type="application/rss+xml" />
	<link>http://kb.huptas.net</link>
	<description>Technical patchwork to ease my brain</description>
	<lastBuildDate>Sat, 08 Aug 2009 23:10:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Postfix: Delete mails from Postfix queue</title>
		<link>http://kb.huptas.net/2007/04/04/postfix-delete-mails-from-postfix-queue/</link>
		<comments>http://kb.huptas.net/2007/04/04/postfix-delete-mails-from-postfix-queue/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 19:17:48 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://kb.huptas.net/?p=125</guid>
		<description><![CDATA[$ mailq &#124; tail +2 &#124; grep -v '^ *(' &#124; awk 'BEGIN { RS = "" } { if ($8 == "sender@example.com") print $1 }'&#124; /usr/sbin/postsuper -d -]]></description>
		<wfw:commentRss>http://kb.huptas.net/2007/04/04/postfix-delete-mails-from-postfix-queue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Postfix+dkfilter</title>
		<link>http://kb.huptas.net/2007/02/09/install-postfixdkfilter/</link>
		<comments>http://kb.huptas.net/2007/02/09/install-postfixdkfilter/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 15:43:59 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://kb.huptas.net/?p=117</guid>
		<description><![CDATA[Install Postfix mv /usr/sbin/sendmail /usr/sbin/sendmail.OFF mv /usr/bin/newaliases /usr/bin/newaliases.OFF mv /usr/bin/mailq /usr/bin/mailq.OFF chmod 755 /usr/sbin/sendmail.OFF /usr/bin/newaliases.OFF /usr/bin/mailq.OFF tar xfz postfix-2.3.7.tar.gz cd postfix-2.3.7 make groupadd -g 89 postfix groupadd -g 90 postdrop useradd -d /dev/null -s /bin/false -g postfix -u 89 postfix make install Install dkfilter groupadd -g 91 dkfilter useradd -d /dev/null -s /bin/false -g dkfilter [...]]]></description>
		<wfw:commentRss>http://kb.huptas.net/2007/02/09/install-postfixdkfilter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postfix: grep for errors in mail.log</title>
		<link>http://kb.huptas.net/2006/06/26/postfix-grep-for-errors-in-maillog/</link>
		<comments>http://kb.huptas.net/2006/06/26/postfix-grep-for-errors-in-maillog/#comments</comments>
		<pubDate>Mon, 26 Jun 2006 16:25:04 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://kb.huptas.net/?p=108</guid>
		<description><![CDATA[egrep '(reject&#124;warning&#124;error&#124;fatal&#124;panic):' /var/log/mail.log]]></description>
		<wfw:commentRss>http://kb.huptas.net/2006/06/26/postfix-grep-for-errors-in-maillog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postfix: Interactive installation parameters</title>
		<link>http://kb.huptas.net/2005/12/23/postfix-interactive-installation-parameters/</link>
		<comments>http://kb.huptas.net/2005/12/23/postfix-interactive-installation-parameters/#comments</comments>
		<pubDate>Fri, 23 Dec 2005 14:48:11 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://kb.huptas.net/?p=80</guid>
		<description><![CDATA[install_root config_directory daemon_directory command_directory queue_directory sendmail_path newaliases_path mailq_path mail_owner setgid_group html_directory manpage_directory readme_directory]]></description>
		<wfw:commentRss>http://kb.huptas.net/2005/12/23/postfix-interactive-installation-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postfix&#124;MySQL</title>
		<link>http://kb.huptas.net/2005/04/13/postfixmysql/</link>
		<comments>http://kb.huptas.net/2005/04/13/postfixmysql/#comments</comments>
		<pubDate>Wed, 13 Apr 2005 11:40:50 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">https://localhost:9001/wordpress/?p=11</guid>
		<description><![CDATA[[root@ns01 postfix]# cat mysql-aliases.cf # # mysql config file for local(8) aliases(5) lookups # # The user name and password to log into the mysql server. user = postfix password = password # The database name on the servers. dbname = mail select_field = address table = mxaliases where_field = alias [root@ns01 postfix]# grep mysql-aliases [...]]]></description>
		<wfw:commentRss>http://kb.huptas.net/2005/04/13/postfixmysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LDAP&#124;Cyrus IMAP&#124;Postfix</title>
		<link>http://kb.huptas.net/2005/04/13/ldapcyrus-imappostfix/</link>
		<comments>http://kb.huptas.net/2005/04/13/ldapcyrus-imappostfix/#comments</comments>
		<pubDate>Wed, 13 Apr 2005 09:06:04 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">https://localhost:9001/wordpress/?p=8</guid>
		<description><![CDATA[Cyrus: user mailboxes have to start with user.username LDAP &#8211; CYRUS IMAP &#8211; POSTFIX &#8211; OPENGROUPWARE]]></description>
		<wfw:commentRss>http://kb.huptas.net/2005/04/13/ldapcyrus-imappostfix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
