On Wed, Sep 22, 2010 at 07:09:44PM -0300, Alexandre Pires wrote:

> Thanks Viktor, but how can I set envelop sender address in postfix ?

With SMTP:

        EHLO <clientname>
        MAIL FROM:<[email protected]>
        RCPT TO:<[email protected]>
        RCPT TO:<[email protected]>
        DATA
        Message-Headers:

        Message Body
        .

On the command-line:

    sendmail -f [email protected] -i -- \
        [email protected] [email protected] < message-source-file

-- 
        Viktor.

Reply via email to