Martin Hierling wrote:
> I have attached a trace=5 debug log from the dbmail-smtp daemon.

Could you please verify attached diff? This is Aarons' code, but it
looks like a simple case of inverted logic.


-- 
  ________________________________________________________________
  Paul Stevens                                      paul at nfg.nl
  NET FACILITIES GROUP                     GPG/PGP: 1024D/11F8CD31
  The Netherlands________________________________http://www.nfg.nl
diff --git a/modules/sortsieve.c b/modules/sortsieve.c
index ae20976..31f87d1 100644
--- a/modules/sortsieve.c
+++ b/modules/sortsieve.c
@@ -777,7 +777,7 @@ freesieve:
 	if (sort_context->script)
 		dm_free(sort_context->script);
 
-	if (exitnull)
+	if (! exitnull)
 		result = NULL;
 	else
 		result = sort_context->result;

Reply via email to