When 'quilt mail' is called with a --sender option that includes an
E-mail address in angle brackets, quilt uses a double closing angle
bracket in the message ID. Fix this by stripping the closing angle
bracket out of $opt_sender first.
- Paul
--- quilt/quilt/mail.orig 2007-08-02 12:27:10.000000000 -0600
+++ quilt/quilt/mail 2007-08-02 12:28:18.000000000 -0600
@@ -68,7 +68,8 @@
msgid()
{
local timestamp=$(date --utc "+%Y%m%d%H%M%S.%N")
- echo "[EMAIL PROTECTED]@}"
+ local cleansender=`echo ${opt_sender} | sed '1,$s/>//'`
+ echo "[EMAIL PROTECTED]@}"
}
process_mail()
--- quilt/quilt.changes.orig 2007-08-02 12:37:07.000000000 -0600
+++ quilt/quilt.changes 2007-08-02 12:38:16.000000000 -0600
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Thu Aug 2 12:37:19 MDT 2007 - [EMAIL PROTECTED]
+
+- quilt mail: strip closing angle brackets from the mail sender
+ address before it is inserted into the message ID
+
+-------------------------------------------------------------------
Thu Jul 26 13:53:09 CEST 2007 - [EMAIL PROTECTED]
- quilt diff: don't colorize the output when the --diff=... option
--
_______________________________________________
Quilt-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/quilt-dev