After much trial and error, I eventually narrowed down the errors related to sending mail via SMTP in Gnus to the following error:
> Sending via mail... > message-send-mail-with-sendmail: Sending...failed to ssmtp: recipients with > -t option not supported; After performing a search using Google using the search phrase "+"mailer-app-args"", I discovered the related page "[#FSCORE-158] mailer-app-args assumes "-t" if set to a blank string "" - FreeSWITCH Jira" (see http://jira.freeswitch.org/browse/FSCORE-158;jsessionid=5E61B29048C44E4C670D5297069CE0CE?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aworklog-tabpanel), with the following apparently relevant information: > Description ≪ Hide > FreeSwitch Version 1.0.trunk (9029) > if mailer-app-args="" > then the following errors appear: > sendmail: recipients with -t option not supported ~ /bin/cat: write error: > Broken pipe > if mailer-app-args=" " then it works fine Accordingly, modified I my .gnus.el file as follows: > (setq mailer-app-args " ") > (require 'smtpmail) However, this change had no effect. Does anybody know how to pass " " (a space string) as an argument to "mailer-app-args" for "message-send-with-sendmail"? -- Benjamin L. Russell -- Benjamin L. Russell / DekuDekuplex at Yahoo dot com http://dekudekuplex.wordpress.com/ Translator/Interpreter / Mobile: +011 81 80-3603-6725 "Furuike ya, kawazu tobikomu mizu no oto." -- Matsuo Basho^ _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
