]> git.pld-linux.org Git - packages/mutt.git/blame - mutt-keep_to.patch
- updated to 1.12.1
[packages/mutt.git] / mutt-keep_to.patch
CommitLineData
ffc6f62d
JP
1Add keep_to option to control where To: recipients are copied on group-reply (To: or Cc:).
2
3author: Jan Palus
4
5diff -urN mutt-1.5.23.orig/send.c mutt-1.5.23/send.c
6--- mutt-1.5.23.orig/send.c 2014-10-12 16:55:39.680846728 +0200
7+++ mutt-1.5.23/send.c 2014-10-12 16:55:52.104179682 +0200
458d46c4
AG
8@@ -672,7 +672,7 @@
9 (!in->mail_followup_to || hmfupto != MUTT_YES))
ffc6f62d 10 {
458d46c4
AG
11 /* if (!mutt_addr_is_user(in->to)) */
12- if (flags & SENDGROUPREPLY)
13+ if ( (flags & SENDGROUPREPLY) || ! option(OPTKEEPTO) )
14 rfc822_append (&out->cc, in->to, 1);
15 else
16 rfc822_append (&out->to, in->to, 1);
ffc6f62d
JP
17diff -ur mutt-1.5.23.orig/init.h mutt-1.5.23/init.h
18--- mutt-1.5.23.orig/init.h 2014-10-12 17:17:05.716118306 +0200
19+++ mutt-1.5.23/init.h 2014-10-12 17:24:08.119438749 +0200
20@@ -1344,6 +1344,12 @@
21 ** from your spool mailbox to your $$mbox mailbox, or as a result of
22 ** a ``$mbox-hook'' command.
23 */
24+ { "keep_to", DT_BOOL, R_NONE, OPTKEEPTO, 0 },
25+ /*
26+ ** .pp
27+ ** Controls where recipients from ``To:'' list go on group-reply. If \fIset\fP
28+ ** they are copied to ``To:'' otherwise to ``Cc:''.
29+ */
b324a978 30 { "mail_check", DT_NUM, R_NONE, UL &BuffyTimeout, 5 },
ffc6f62d
JP
31 /*
32 ** .pp
33diff -ur mutt-1.5.23.orig/mutt.h mutt-1.5.23/mutt.h
34--- mutt-1.5.23.orig/mutt.h 2014-10-12 17:17:05.722784972 +0200
35+++ mutt-1.5.23/mutt.h 2014-10-12 17:24:50.006104137 +0200
36@@ -391,6 +391,7 @@
37 OPTIMPLICITAUTOVIEW,
38 OPTINCLUDEONLYFIRST,
39 OPTKEEPFLAGGED,
40+ OPTKEEPTO,
41 OPTMAILCAPSANITIZE,
42 OPTMAILCHECKRECENT,
43 OPTMAILDIRTRASH,
This page took 0.050401 seconds and 4 git commands to generate.