<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Guillermo Cruz</title>
	<atom:link href="http://wuilly.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://wuilly.com</link>
	<description></description>
	<lastBuildDate>Tue, 29 Jan 2013 03:27:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by webjunkie01</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-116</link>
		<dc:creator>webjunkie01</dc:creator>
		<pubDate>Tue, 29 Jan 2013 03:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-116</guid>
		<description>Hi Andrea,

Thanks for the update, it works great. In fact the current SQL statement in pgsql-virtual_mailboxes.cf it&#039;s wrong. It was supposed to be &lt;em&gt;SELECT substring(email from &#039;@(.*)&#039;) &#124;&#124;&#039;/&#039;&#124;&#124;substring(email from &#039;(.*)@&#039;) FROM users WHERE email=&#039;%s&#039;&lt;/em&gt;. I&#039;ll add your Postgresql compliant statement.

Cheers.</description>
		<content:encoded><![CDATA[<p>Hi Andrea,</p>
<p>Thanks for the update, it works great. In fact the current SQL statement in pgsql-virtual_mailboxes.cf it&#8217;s wrong. It was supposed to be <em>SELECT substring(email from &#8216;@(.*)&#8217;) ||&#8217;/'||substring(email from &#8216;(.*)@&#8217;) FROM users WHERE email=&#8217;%s&#8217;</em>. I&#8217;ll add your Postgresql compliant statement.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by Andrea Zwirner</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-115</link>
		<dc:creator>Andrea Zwirner</dc:creator>
		<pubDate>Mon, 28 Jan 2013 17:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-115</guid>
		<description>Hello,

I think that, to be postgres compiant, in pgsql-virtual_mailboxes.cf the query

SELECT CONCAT(SUBSTRING_INDEX(email,&#039;@&#039;,-1),&#039;/&#039;,SUBSTRING_INDEX(email,&#039;@&#039;,1),&#039;/&#039;) FROM users WHERE email=&#039;%s&#039;

should be replaced with:

SELECT split_part(email, &#039;@&#039;, 2) &#124;&#124; &#039;/&#039; &#124;&#124; split_part(email,&#039;@&#039;, 1) FROM users WHERE email=&#039;%s&#039;;

Thanks for the guide.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I think that, to be postgres compiant, in pgsql-virtual_mailboxes.cf the query</p>
<p>SELECT CONCAT(SUBSTRING_INDEX(email,&#8217;@',-1),&#8217;/',SUBSTRING_INDEX(email,&#8217;@',1),&#8217;/') FROM users WHERE email=&#8217;%s&#8217;</p>
<p>should be replaced with:</p>
<p>SELECT split_part(email, &#8216;@&#8217;, 2) || &#8216;/&#8217; || split_part(email,&#8217;@', 1) FROM users WHERE email=&#8217;%s&#8217;;</p>
<p>Thanks for the guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Manage cron jobs with python-crontab by webjunkie01</title>
		<link>http://wuilly.com/manage-cron-jobs-with-python-crontab/#comment-77</link>
		<dc:creator>webjunkie01</dc:creator>
		<pubDate>Fri, 28 Sep 2012 12:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://wuilly.com/?p=70#comment-77</guid>
		<description>Hi Michael, 

Ah it must be because there&#039;s a new version, I was using version 0.9.6. From version 1.0 and up there was a change in the API of slice calls to be properties instead of methods.

Thanks for the heads up, I&#039;ve put a note in the post.

Cheers!.</description>
		<content:encoded><![CDATA[<p>Hi Michael, </p>
<p>Ah it must be because there&#8217;s a new version, I was using version 0.9.6. From version 1.0 and up there was a change in the API of slice calls to be properties instead of methods.</p>
<p>Thanks for the heads up, I&#8217;ve put a note in the post.</p>
<p>Cheers!.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Manage cron jobs with python-crontab by Michael</title>
		<link>http://wuilly.com/manage-cron-jobs-with-python-crontab/#comment-76</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 28 Sep 2012 06:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://wuilly.com/?p=70#comment-76</guid>
		<description>I encountered some errors while using your example code.

cron_job.minute().on(0) gave an error.

I resolved by using this instead:

cron_job.minute.on(0)

Besides that, thanks for sharing. Your post helped me out.</description>
		<content:encoded><![CDATA[<p>I encountered some errors while using your example code.</p>
<p>cron_job.minute().on(0) gave an error.</p>
<p>I resolved by using this instead:</p>
<p>cron_job.minute.on(0)</p>
<p>Besides that, thanks for sharing. Your post helped me out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by webjunkie01</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-75</link>
		<dc:creator>webjunkie01</dc:creator>
		<pubDate>Mon, 03 Sep 2012 13:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-75</guid>
		<description>Yes I did omit some steps, the whole set up instructions are at http://library.linode.com/email/postfix/dovecot-mysql-debian-5-lenny</description>
		<content:encoded><![CDATA[<p>Yes I did omit some steps, the whole set up instructions are at <a href="http://library.linode.com/email/postfix/dovecot-mysql-debian-5-lenny" rel="nofollow">http://library.linode.com/email/postfix/dovecot-mysql-debian-5-lenny</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by webjunkie01</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-74</link>
		<dc:creator>webjunkie01</dc:creator>
		<pubDate>Mon, 03 Sep 2012 13:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-74</guid>
		<description>Strange issue, must be a more recent version of postfix the one you&#039;re using.</description>
		<content:encoded><![CDATA[<p>Strange issue, must be a more recent version of postfix the one you&#8217;re using.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by webjunkie01</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-73</link>
		<dc:creator>webjunkie01</dc:creator>
		<pubDate>Mon, 03 Sep 2012 12:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-73</guid>
		<description>Yes, you need to create a vmail user groupadd -g 5000 vmail useradd -g vmail -u 5000 vmail -d /home/vmail -m, all the steps are here http://library.linode.com/email/postfix/dovecot-mysql-debian-5-lenny I based my installation on this guide since I have a vps on linode.com</description>
		<content:encoded><![CDATA[<p>Yes, you need to create a vmail user groupadd -g 5000 vmail useradd -g vmail -u 5000 vmail -d /home/vmail -m, all the steps are here <a href="http://library.linode.com/email/postfix/dovecot-mysql-debian-5-lenny" rel="nofollow">http://library.linode.com/email/postfix/dovecot-mysql-debian-5-lenny</a> I based my installation on this guide since I have a vps on linode.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by cc young</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-72</link>
		<dc:creator>cc young</dc:creator>
		<pubDate>Sun, 02 Sep 2012 08:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-72</guid>
		<description>dovcot completely upchucked.  apparently they have new dovecot.conf

relay=dovecot, delay=1383, delays=1383/0.04/0/0.08, dsn=4.3.0, status=deferred (temporary failure. Command output: doveconf: Warning: NOTE: You can get a new clean config file with: doveconf -n &gt; dovecot-new.conf doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:1: &#039;imaps&#039; protocol is no longer necessary, remove it doveconf: Warning: Obsolete setting in 
/etc/dovecot/dovecot.conf:1: &#039;pop3s&#039; protocol is no longer necessary, remove it doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:5: ssl_cert_file has been replaced by ssl_cert = &lt;file doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:6: ssl_key_file has been replaced by ssl_key = &lt;file doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:8: namespace private {} has been replaced by namespace { type=private } doveconf: Fatal: Error in configuration file /etc/dovecot/dovecot.conf line 19: Unknown setting: global_script_path )</description>
		<content:encoded><![CDATA[<p>dovcot completely upchucked.  apparently they have new dovecot.conf</p>
<p>relay=dovecot, delay=1383, delays=1383/0.04/0/0.08, dsn=4.3.0, status=deferred (temporary failure. Command output: doveconf: Warning: NOTE: You can get a new clean config file with: doveconf -n &gt; dovecot-new.conf doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:1: &#8216;imaps&#8217; protocol is no longer necessary, remove it doveconf: Warning: Obsolete setting in<br />
/etc/dovecot/dovecot.conf:1: &#8216;pop3s&#8217; protocol is no longer necessary, remove it doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:5: ssl_cert_file has been replaced by ssl_cert = &lt;file doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:6: ssl_key_file has been replaced by ssl_key = &lt;file doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:8: namespace private {} has been replaced by namespace { type=private } doveconf: Fatal: Error in configuration file /etc/dovecot/dovecot.conf line 19: Unknown setting: global_script_path )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by cc young</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-71</link>
		<dc:creator>cc young</dc:creator>
		<pubDate>Sun, 02 Sep 2012 07:37:50 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-71</guid>
		<description>also missed (I think) is creating the vmail user</description>
		<content:encoded><![CDATA[<p>also missed (I think) is creating the vmail user</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Host Email with Postfix, Dovecot and Postgres on Debian 6 (Squeeze) by cc young</title>
		<link>http://wuilly.com/host-email-with-postfix-dovecot-and-postgres-on-debian-6-squeeze/#comment-70</link>
		<dc:creator>cc young</dc:creator>
		<pubDate>Sun, 02 Sep 2012 07:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://mercadoinmobi.com/?p=23#comment-70</guid>
		<description>when postfix restarted, many many warnings, eg,

 * Starting Postfix Mail Transport Agent postfix                                                                                                                                                      postconf: warning: /etc/postfix/main.cf: unused parameter: virtual_create_maildirsize=yes
postconf: warning: /etc/postfix/main.cf: unused parameter: virtual_maildir_extended=yes
postconf: warning: /etc/postfix/main.cf: unused parameter: dovecot_destination_recipient_limit=1
postconf: warning: /etc/postfix/main.cf: unused parameter: virtual_create_maildirsize=yes

is this to be expected?</description>
		<content:encoded><![CDATA[<p>when postfix restarted, many many warnings, eg,</p>
<p> * Starting Postfix Mail Transport Agent postfix                                                                                                                                                      postconf: warning: /etc/postfix/main.cf: unused parameter: virtual_create_maildirsize=yes<br />
postconf: warning: /etc/postfix/main.cf: unused parameter: virtual_maildir_extended=yes<br />
postconf: warning: /etc/postfix/main.cf: unused parameter: dovecot_destination_recipient_limit=1<br />
postconf: warning: /etc/postfix/main.cf: unused parameter: virtual_create_maildirsize=yes</p>
<p>is this to be expected?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
