Only in alpine.rpt/imap: ip6 diff -rc alpine.orig/pith/conf.c alpine.rpt/pith/conf.c *** alpine.orig/pith/conf.c 2008-03-14 18:15:38.000000000 +0000 --- alpine.rpt/pith/conf.c 2008-06-20 10:44:26.000000000 +0100 *************** *** 2701,2706 **** --- 2701,2708 ---- F_AUTO_INCLUDE_IN_REPLY, h_config_auto_include_reply, PREF_RPLY, 0}, {"reply-always-uses-reply-to", "Reply Always Uses Reply-To", F_AUTO_REPLY_TO, h_config_auto_reply_to, PREF_RPLY, 0}, + {"reply-preserve-to", "Preserve To addresses in Reply", + F_REPLY_PRESERVE_TO, h_config_reply_preserve_to, PREF_RPLY, 0}, {"signature-at-bottom", "Signature at Bottom", F_SIG_AT_BOTTOM, h_config_sig_at_bottom, PREF_RPLY, 0}, {"strip-from-sigdashes-on-reply", "Strip From Sigdashes on Reply", diff -rc alpine.orig/pith/conftype.h alpine.rpt/pith/conftype.h *** alpine.orig/pith/conftype.h 2008-03-14 18:15:38.000000000 +0000 --- alpine.rpt/pith/conftype.h 2008-06-20 10:44:58.000000000 +0100 *************** *** 372,377 **** --- 372,378 ---- F_VERTICAL_FOLDER_LIST, F_TAB_CHK_RECENT, F_AUTO_REPLY_TO, + F_REPLY_PRESERVE_TO, F_VERBOSE_POST, F_FCC_ON_BOUNCE, F_SEND_WO_CONFIRM, diff -rc alpine.orig/pith/pine.hlp alpine.rpt/pith/pine.hlp *** alpine.orig/pith/pine.hlp 2008-03-14 18:34:08.000000000 +0000 --- alpine.rpt/pith/pine.hlp 2008-06-20 10:48:05.000000000 +0100 *************** *** 3108,3113 **** --- 3108,3114 ----
  • FEATURE:
  • FEATURE:
  • FEATURE: +
  • FEATURE:
  • FEATURE:
  • FEATURE:
  • FEATURE: *************** *** 29056,29061 **** --- 29057,29076 ---- <End of help on this topic> + ====== h_config_reply_preserve_to ===== + + + FEATURE: <!--#echo var="FEAT_reply-preserve-to"--> + + +

    FEATURE:

    + + This feature controls an aspect of Alpine's Reply command. If set, Alpine + will copy addresses in the original To: field into the reply's To: field. If unset, the addresses will be copied into the cc field. +

    + <End of help on this topic> + + ====== h_config_del_skips_del ===== diff -rc alpine.orig/pith/reply.c alpine.rpt/pith/reply.c *** alpine.orig/pith/reply.c 2008-03-06 20:54:01.000000000 +0000 --- alpine.rpt/pith/reply.c 2008-06-20 10:42:21.000000000 +0100 *************** *** 368,380 **** /* Put Reply-To or From in To. */ *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to, (ADDRESS *) NULL, saved_from, RCA_ALL); ! /* and the rest in cc */ if(replytoall){ ! *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc, ! outgoing->to, saved_to, RCA_ALL); ! while(*cc_tail) /* stay on last address */ ! cc_tail = &(*cc_tail)->next; ! *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc, outgoing->to, saved_cc, RCA_ALL); while(*cc_tail) --- 368,386 ---- /* Put Reply-To or From in To. */ *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to, (ADDRESS *) NULL, saved_from, RCA_ALL); ! /* and the rest in cc or To depending on F_REPLY_PRESERVE_TO. */ if(replytoall){ ! if (F_ON(F_REPLY_PRESERVE_TO, ps_global)) { ! to_tail = &(*to_tail)->next; ! *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc, ! outgoing->to, saved_to, RCA_ALL); ! } else { ! *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc, ! outgoing->to, saved_to, RCA_ALL); ! while(*cc_tail) /* stay on last address */ ! cc_tail = &(*cc_tail)->next; ! } ! *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc, outgoing->to, saved_cc, RCA_ALL); while(*cc_tail) Only in alpine.orig/po: Makefile.in Only in alpine.rpt/po: stamp-po Only in alpine.rpt/regex: .deps Only in alpine.rpt/regex: Makefile Only in alpine.rpt/web/src/alpined.d: .deps Only in alpine.rpt/web/src/alpined.d: Makefile Only in alpine.rpt/web/src: Makefile Only in alpine.rpt/web/src/pubcookie: .deps Only in alpine.rpt/web/src/pubcookie: Makefile