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()
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
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
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
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
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 *
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