made RSS title and description configurable
[git/dscho.git] / source-1234141489.txt
blob700e43e382d3cfccc4547e6f2c23a04ef233f6b2
1 ''format-patch --thread'' and Alpine
3 I started recently to pipe the output of
4 ''git format-patch --cover-letter --stdout ...'' directly into the
5 ''postponed-msgs'' folder Alpine uses, instead of pasting files into the
6 mailer.
8 The idea is to pretend that I continue a postponed mail, but in reality I
9 never wrote it, ''format-patch'' did.
11 However, I had problems with the ''--thread'' option that is implied by
12 ''--cover-letter''.  Alpine always generated new message IDs without adjusting
13 the ''In-reply-to:'' and ''References:'' headers of the other mails.
15 Now I found out that the reason is that the ''Fcc:'' headers were missing in
16 the mails, and Alpine generated them, making up new message IDs in the process.
18 Therefore I have an alias now which sets not only the ''Fcc:'' header, but also
19 the ''To:'' headers by rewriting the stream using ''sed''.  This is slightly
20 ugly, but so is the handling of headers in ''format-patch'': if you thought
21 you could specify arbitrary headers using the command line, you are mistaken:
22 you can do that only by editing the config.
24 While at it, I also noticed a bug whereby ''--thread --in-reply-to=...'' simply
25 forgets the ''--thread''.  Maybe this week I will find time to address this bug.