Re: [Dspam-devel] trouble understanding an extract of agent_shared.c on process_parseto()

2009-07-23 Thread Carlo Rodrigues
On 2009/07/23, at 18:37, Steve wrote: > > Original-Nachricht >> Datum: Thu, 23 Jul 2009 18:11:15 +0100 >> Von: Carlo Rodrigues >> An: [email protected] >> Betreff: Re: [Dspam-devel] trouble understanding an extract of >> agent_shared.c onprocess_parseto()

Re: [Dspam-devel] Proposal to complete the documentation for Postfix

2009-07-23 Thread Julien Valroff
Le jeudi 23 juillet 2009 à 20:13 +0200, Julien Valroff a écrit : > Hi, > > You will find attached a patch against current git, completing the > existing documentation for Postfix. > > It adds notes about chrooted postfix setups and a method to only filter > incoming mail when the SMTP server is a

[Dspam-devel] Proposal to complete the documentation for Postfix

2009-07-23 Thread Julien Valroff
Hi, You will find attached a patch against current git, completing the existing documentation for Postfix. It adds notes about chrooted postfix setups and a method to only filter incoming mail when the SMTP server is also used as a relay. Any comments are welcome. Cheers, Julien diff --git a/do

Re: [Dspam-devel] trouble understanding an extract of agent_shared.c on process_parseto()

2009-07-23 Thread Steve
Original-Nachricht > Datum: Thu, 23 Jul 2009 18:11:15 +0100 > Von: Carlo Rodrigues > An: [email protected] > Betreff: Re: [Dspam-devel] trouble understanding an extract of agent_shared.c > on process_parseto() > Steve wrote: > > Original-Nachricht

Re: [Dspam-devel] trouble understanding an extract of agent_shared.c on process_parseto()

2009-07-23 Thread Carlo Rodrigues
Steve wrote: Original-Nachricht Datum: Thu, 23 Jul 2009 17:13:19 +0100 Von: Carlo Rodrigues An: [email protected] Betreff: [Dspam-devel] trouble understanding an extract of agent_shared.c on process_parseto() 829 int process_parseto(AGENT_CTX

Re: [Dspam-devel] trouble understanding an extract of agent_shared.c on process_parseto()

2009-07-23 Thread Steve
Original-Nachricht > Datum: Thu, 23 Jul 2009 17:13:19 +0100 > Von: Carlo Rodrigues > An: [email protected] > Betreff: [Dspam-devel] trouble understanding an extract of agent_shared.c on > process_parseto() > 829 int process_parseto(AGENT_CTX *ATX, const char *

[Dspam-devel] trouble understanding an extract of agent_shared.c on process_parseto()

2009-07-23 Thread Carlo Rodrigues
829 int process_parseto(AGENT_CTX *ATX, const char *buf) { 830 char *y = NULL; 831 char *x; 832 char *h; 833 834 if (!buf) 835 return EINVAL; 836 h = strstr(buf, "\r\n\r\n"); 837 if (!h) h = strstr(buf, "\n\n"); 838 839 x = strstr(buf, " h) x = NULL; I'm trying to understand what