Hemanth Gopal a écrit : > Dear all, > > I am curious to know the method to make my postfix installation to > drop BCC header mail ids while sending from my server. Only the to and > cc should work. Please let me know. >
you need to learn more about SMTP. SMTP doesn't care about mail headers. SMTP uses envelope addresses. when you tell you mailer to send mail to To/CC/Bcc, your mailer converts these into envelope addresse (used in RCPT TO commands). email headers are not for mail routing. From:, To:, Cc: ... are simply information to the recipient. and they can easily be forged. try this: $ telnet localhost 25 EHLO joe.example.com MAIL FROM:<[email protected]> RCPT TO:<[email protected]> DATA From: Uranus <[email protected]> To: Moon <[email protected]> Subject: domedo blah blah . QUIT
