<?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 on: Postal</title>
	<atom:link href="http://doc.coker.com.au/projects/postal/feed/" rel="self" type="application/rss+xml" />
	<link>http://doc.coker.com.au/projects/postal/</link>
	<description>Documents that are not date based</description>
	<lastBuildDate>Thu, 10 Jun 2010 00:20:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: etbe</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-1673</link>
		<dc:creator>etbe</dc:creator>
		<pubDate>Fri, 14 May 2010 14:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-1673</guid>
		<description>vinaya: Well the header already has a Date: field, so I guess all that&#039;s needed is to have BHM parse it and record the data.
Also I&#039;m thinking of putting a hash of the message in the X-Postal header so that BHM (or other tools) can parse it.  What do you think?</description>
		<content:encoded><![CDATA[<p>vinaya: Well the header already has a Date: field, so I guess all that&#8217;s needed is to have BHM parse it and record the data.</p>
<p>Also I&#8217;m thinking of putting a hash of the message in the X-Postal header so that BHM (or other tools) can parse it.  What do you think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vinaya</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-1672</link>
		<dc:creator>vinaya</dc:creator>
		<pubDate>Tue, 04 May 2010 22:27:42 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-1672</guid>
		<description>Hi Russell,
Thanks for the smtp load tool. I can understand that this tool can be used to generate the required throughput on the mail server. But is there a way to measure the latency for mail relays (i.e the time it from when the message was sent by postal to the time when it was recieved by BHM). One way i can think of this is to stamp the epoch time onto a header in postal and them when the BHM receives the mail, parse for that header and generate the latency time, before sinking it.
do you think this can be done as an enhancement for the tool?
thanks
_vinaya</description>
		<content:encoded><![CDATA[<p>Hi Russell,<br />
Thanks for the smtp load tool. I can understand that this tool can be used to generate the required throughput on the mail server. But is there a way to measure the latency for mail relays (i.e the time it from when the message was sent by postal to the time when it was recieved by BHM). One way i can think of this is to stamp the epoch time onto a header in postal and them when the BHM receives the mail, parse for that header and generate the latency time, before sinking it.<br />
do you think this can be done as an enhancement for the tool?<br />
thanks<br />
_vinaya</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: piesek leszek</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-1663</link>
		<dc:creator>piesek leszek</dc:creator>
		<pubDate>Tue, 13 Apr 2010 18:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-1663</guid>
		<description>Good job my friend. Thx for this great tool!</description>
		<content:encoded><![CDATA[<p>Good job my friend. Thx for this great tool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vignesh</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-706</link>
		<dc:creator>vignesh</dc:creator>
		<pubDate>Mon, 09 Nov 2009 09:07:51 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-706</guid>
		<description>Hi Russell,
I just tested out Postal 0.70 which I installed using the debian repository. It is working very well. I still have to start using all the features of Postal but thought that I should thank you before that. :). Thanks a lot for writing such a wonderful tool. I will soon try to contribute to it myself.
Thanks again.
Regards,
Vignesh</description>
		<content:encoded><![CDATA[<p>Hi Russell,</p>
<p>I just tested out Postal 0.70 which I installed using the debian repository. It is working very well. I still have to start using all the features of Postal but thought that I should thank you before that. :). Thanks a lot for writing such a wonderful tool. I will soon try to contribute to it myself.</p>
<p>Thanks again.</p>
<p>Regards,</p>
<p>Vignesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars Nordin</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-699</link>
		<dc:creator>Lars Nordin</dc:creator>
		<pubDate>Wed, 04 Nov 2009 20:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-699</guid>
		<description>Here is a patch to rabid that I sent Russell a while back, not fully vetted but works for me.
====================
I ran into a problem with rabid trying to log into pop with local name logins. Instead of the second field being sent as the password, the domain of the address was being sent instead.
I changed userlist.ccp and I got it working but I having really gone thru the logic to make sure it all correct.
lars@qadev:postal-0.70 diff -c userlist.cpp.orig userlist.cpp
*** userlist.cpp.orig   Tue Jun 10 11:56:28 2008
--- userlist.cpp        Tue Jun 10 12:10:00 2008
***************
*** 34,44 ****
          printf(&quot;Need a password for \&quot;%s\&quot;.&quot;, buf);
          continue;
        }
        if(stripDom)
          strtok(buf, &quot;@&quot;);
        m_users-&gt;push_back(buf);
-       if(usePass)
-         m_passwords-&gt;push_back(buf + strlen(buf) + 1);
        if(strlen(buf) &gt; m_maxNameLen)
          m_maxNameLen = strlen(buf);
      }
--- 34,44 ----
          printf(&quot;Need a password for \&quot;%s\&quot;.&quot;, buf);
          continue;
        }
+       if(usePass)
+         m_passwords-&gt;push_back(buf + strlen(buf) + 1);
        if(stripDom)
          strtok(buf, &quot;@&quot;);
        m_users-&gt;push_back(buf);
        if(strlen(buf) &gt; m_maxNameLen)
          m_maxNameLen = strlen(buf);
      }
-------------------------------------------------------</description>
		<content:encoded><![CDATA[<p>Here is a patch to rabid that I sent Russell a while back, not fully vetted but works for me.<br />
====================<br />
I ran into a problem with rabid trying to log into pop with local name logins. Instead of the second field being sent as the password, the domain of the address was being sent instead.<br />
I changed userlist.ccp and I got it working but I having really gone thru the logic to make sure it all correct.</p>
<p>lars@qadev:postal-0.70 diff -c userlist.cpp.orig userlist.cpp<br />
*** userlist.cpp.orig   Tue Jun 10 11:56:28 2008<br />
&#8212; userlist.cpp        Tue Jun 10 12:10:00 2008<br />
***************<br />
*** 34,44 ****<br />
          printf(&#8220;Need a password for \&#8221;%s\&#8221;.&#8221;, buf);<br />
          continue;<br />
        }<br />
        if(stripDom)<br />
          strtok(buf, &#8220;@&#8221;);<br />
        m_users-&gt;push_back(buf);<br />
-       if(usePass)<br />
-         m_passwords-&gt;push_back(buf + strlen(buf) + 1);<br />
        if(strlen(buf) &gt; m_maxNameLen)<br />
          m_maxNameLen = strlen(buf);<br />
      }<br />
&#8212; 34,44 &#8212;-<br />
          printf(&#8220;Need a password for \&#8221;%s\&#8221;.&#8221;, buf);<br />
          continue;<br />
        }<br />
+       if(usePass)<br />
+         m_passwords-&gt;push_back(buf + strlen(buf) + 1);<br />
        if(stripDom)<br />
          strtok(buf, &#8220;@&#8221;);<br />
        m_users-&gt;push_back(buf);<br />
        if(strlen(buf) &gt; m_maxNameLen)<br />
          m_maxNameLen = strlen(buf);<br />
      }</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brais</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-638</link>
		<dc:creator>Brais</dc:creator>
		<pubDate>Fri, 02 Oct 2009 16:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-638</guid>
		<description>Hi Russell,
I&#039;m playing with Postal and Rabid, using the Debian Package on Lenny a instalation and i have a question. Can be disabled de MD5 verification without recompilation?
And i&#039;m experiencing and issue, Rabid doesn&#039;t print the workload values
Thx!
Congratulations for this great tool!</description>
		<content:encoded><![CDATA[<p>Hi Russell,</p>
<p>I&#8217;m playing with Postal and Rabid, using the Debian Package on Lenny a instalation and i have a question. Can be disabled de MD5 verification without recompilation?<br />
And i&#8217;m experiencing and issue, Rabid doesn&#8217;t print the workload values</p>
<p>Thx!<br />
Congratulations for this great tool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amin</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-623</link>
		<dc:creator>Amin</dc:creator>
		<pubDate>Thu, 06 Aug 2009 17:45:47 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-623</guid>
		<description>I&#039;m having the same issue on Fedora 8. Does anybody know  how to resolve it?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same issue on Fedora 8. Does anybody know  how to resolve it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-603</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 16 Jun 2009 10:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-603</guid>
		<description>hi, Russell,
i can&#039;t compile postal0.7.0&amp;0.6.5 on RHEL5U3, which have same error.
postal.cpp: In function ‘int gcry_pthread_mutex_init(void**)’:
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’
postal.cpp: In function ‘int gcry_pthread_mutex_destroy(void**)’:
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’
postal.cpp: In function ‘int gcry_pthread_mutex_lock(void**)’:
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’
postal.cpp: In function ‘int gcry_pthread_mutex_unlock(void**)’:
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’
postal.cpp: At global scope:
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::read’
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::write’
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::select’
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::waitpid’
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::accept’
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::connect’
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::sendmsg’
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::recvmsg’
make: *** [postal] Error 1
How to resolve it? Thanks!</description>
		<content:encoded><![CDATA[<p>hi, Russell,<br />
i can&#8217;t compile postal0.7.0&amp;0.6.5 on RHEL5U3, which have same error.</p>
<p>postal.cpp: In function ‘int gcry_pthread_mutex_init(void**)’:<br />
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’<br />
postal.cpp: In function ‘int gcry_pthread_mutex_destroy(void**)’:<br />
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’<br />
postal.cpp: In function ‘int gcry_pthread_mutex_lock(void**)’:<br />
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’<br />
postal.cpp: In function ‘int gcry_pthread_mutex_unlock(void**)’:<br />
postal.cpp:16: error: invalid conversion from ‘void*’ to ‘pthread_mutex_t*’<br />
postal.cpp: At global scope:<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::read’<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::write’<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::select’<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::waitpid’<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::accept’<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::connect’<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::sendmsg’<br />
postal.cpp:16: warning: missing initializer for member ‘gcry_thread_cbs::recvmsg’<br />
make: *** [postal] Error 1</p>
<p>How to resolve it? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ml</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-559</link>
		<dc:creator>ml</dc:creator>
		<pubDate>Thu, 26 Mar 2009 14:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-559</guid>
		<description>that would be grat to know without installing XX MTAs</description>
		<content:encoded><![CDATA[<p>that would be grat to know without installing XX MTAs</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen</title>
		<link>http://doc.coker.com.au/projects/postal/comment-page-1/#comment-485</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Mon, 23 Feb 2009 09:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://doc.coker.com.au/?p=26#comment-485</guid>
		<description>Hi Russell,
Do you have any clues yet on what the best performing SMTP servers are?
Thx,
Jeroen</description>
		<content:encoded><![CDATA[<p>Hi Russell,</p>
<p>Do you have any clues yet on what the best performing SMTP servers are?</p>
<p>Thx,<br />
Jeroen</p>
]]></content:encoded>
	</item>
</channel>
</rss>
