> > my issue is when i send a email by using sendmail commandline to mailist > , maillist services can not read this message correctly , the message > will become a "Message has implicit destination" warning , but it did > have a subject and i pretty sure that i have a subject and i did not use > cc or bcc .
The message file that you sent did not contain a To: header with the list address. The sendmail command, unlike the mail command, does not add headers to the input and your message must have a To: header with the list address in order to not be flagged for implicit destination. In other words if you are sending the message with some command like sendmail -r [email protected] [email protected] < input_file the file input_file must contain things like -------------------------------------------------- To: [email protected] From: [email protected] Subject: The message subject The body of the message -------------------------------------------------- The sending MTA will probably add headers like Message-ID: and Date:, but it won't add To: which is your issue. If you want to use a command line command that will add header like To: and Subject: use the mail command, not the sendmail command. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org
