summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2006-02-03 12:04:31 +0000
committerJean Delvare <khali@linux-fr.org>2006-02-03 12:04:31 +0000
commit08299b14bf993ecaf5016029ad77f1391d813ed1 (patch)
tree140dfa3e6beeeaf5aaf1b9c405a78db741d925ba
parent7110ecb3423dc7d8687254a036e7bf962526cce9 (diff)
downloadquilt-08299b14bf993ecaf5016029ad77f1391d813ed1.tar.gz
- quilt/mail.in: Strip "Tr:" from subject lines like we do with
"Re:" and "Fwd:".
-rw-r--r--quilt.changes6
-rw-r--r--quilt/mail.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/quilt.changes b/quilt.changes
index 9a02379..715edef 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Fri Feb 3 13:03:10 CET 2006 - khali@linux-fr.org
+
+- quilt/mail.in: Strip "Tr:" from subject lines like we do with
+ "Re:" and "Fwd:".
+
+-------------------------------------------------------------------
Fri Feb 3 10:26:36 CET 2006 - agruen@suse.de
- quilt/mail.in: Disable broken patch header format check.
diff --git a/quilt/mail.in b/quilt/mail.in
index cbaaa84..e0bf68e 100644
--- a/quilt/mail.in
+++ b/quilt/mail.in
@@ -265,7 +265,7 @@ if [ "$(type -t quilt_mail_patch_filter 2> /dev/null)" != function ]; then
mh[0]=$(echo "${mh[0]}" \
| sed -e $'s/\\[[^]]*\\][ \t]*//gi' \
- -e $'s/\<\(fwd:\|fw:\|re:\|aw:\)[ \t]//gi')
+ -e $'s/\<\(fwd\|fw\|re\|aw\|tr\):[ \t]//gi')
# Add recipients defined by some recognized keywords
local saved_IFS=$IFS; IFS=$'\n'