Hello, In both Mailutils 3.17 and 3.20 (Linux OS) Putmail ignores multiple ";to=" addresses separated by commas as described in the SMTP Mailboxes section of the manual. It only sends to the first recipient address, and debug logs show that sending to the second address isn't attempted at all. Using ";recipient-headers=" in the URL also has the same problem - when there is more than one recipient in any of the specified headers only the first one is used.
Example command (with the three different email user and server names replaced with dummy values): $ echo -e 'From: [email protected]\nTo: [email protected]\nCc: [email protected]\nSubject: Test\n\nTesting 1,2,3,4' | putmail --debug-level=all -f "[email protected]" "smtp://[email protected]:587;[email protected],[email protected]" 2>putmail_3.20_log.txt $ grep [email protected] putmail_3.20_log.txt putmail: _mu_mailer_mailbox_init(smtp://[email protected]:587;[email protected],[email protected]) putmail: C: RCPT TO:<[email protected]> putmail: C: Cc: [email protected] $ grep [email protected] putmail_3.20_log.txt putmail: _mu_mailer_mailbox_init(smtp://[email protected]:587;[email protected],[email protected]) putmail: C: To: [email protected] Build options are: ./configure --includedir=/usr/local/include --datarootdir=/usr/local/share --exec-prefix=/usr/local --sysconfdir=/etc --disable-static Also the Makefile in the mailutils-3.20/ directory didn't run libmu_dbm/Makefile, so to complete the build for v3.20 I had to run that manually then run "make" in the start directory again. Regards, Kevin Koster.
