Hi,

In reference to the latest snapshot of clamav-milter I've been able to find:

http://archive.elektrapro.com/clamav.elektrapro.com/devel/2003/1/msg00019.html

>From the libmilter API documentation:

xxfi_envrcpt is called once per recipient, hence one or more times per
message, immediately after xxfi_envfrom.

...

argv    Null-terminated SMTP command arguments; argv[0] is guaranteed to be
the recipient address. Later arguments are the ESMTP arguments.

My question is; is the following code fragment from clamfi_envrcpt() 
necessary?

        for(i = 0; i < argc; i++) {
                clamfi_send(privdata, 0, "To: %s\n", *recipients);
                privdata->to[i] = strdup(*recipients++);
        }
        privdata->to[i] = NULL;

Joe

-- 
You could be Younger than you think
                  - spam subject line

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Reply via email to