Re: [Mutt] #3012: missing From:-header in command line call
#3012: missing From:-header in command line call
Changes (by pdmef):
* status: new => closed
* resolution: => invalid
Comment:
I assume this is a config problem on your side. Maybe your $sendmail
script strips the header? To test this do:
{{{
$ echo "foobar" | mutt -s "subject text" -nF sampleMuttrc
receiver@xxxxxxxxx
}}}
(note the -n switch) and set sendmail to "sh /tmp/sendmail.sh" where
/tmp/sendmail.sh is:
{{{
#!/bin/sh
echo "$0" "$@"
cat -
}}}
producing:
{{{
/tmp/sendmail.sh -f user@xxxxxxxxxx -- receiver@xxxxxxxxx
Date: Tue, 15 Jan 2008 12:55:53 +0000
From: Joe Avarage <user@xxxxxxxxxx>
To: receiver@xxxxxxxxx
Subject: subject text
Message-ID: <20080115125553.GA13305@xxxxxxxxxxxxxxx>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.17 (2008-01-15)
foobar
}}}
...which is exactly what I'd expect from the above command.
--
Ticket URL: <http://dev.mutt.org/trac/ticket/3012#comment:1>