diff options
author | Eduardo Chappa <chappa@washington.edu> | 2018-12-26 17:26:44 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2018-12-26 17:26:44 -0700 |
commit | 5940080c7a073d40e7f90dde4b8d0f802a22bd69 (patch) | |
tree | 70b12c474bab716097c76e6a281340137bf2ca81 /pith/send.c | |
parent | 3be2ba48af54614d8e46ed9a26d7d76ecbef4808 (diff) | |
download | alpine-5940080c7a073d40e7f90dde4b8d0f802a22bd69.tar.xz |
* Remove old code to support Pine 4.42 (released November 21, 2001)
and short-lived until release of Pine 4.43 (released November 28,
2001.) Also update message to mean what Alpine is trying to do
(forwarding, not answering.)
Diffstat (limited to 'pith/send.c')
-rw-r--r-- | pith/send.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/pith/send.c b/pith/send.c index a501b3b0..75cd2bac 100644 --- a/pith/send.c +++ b/pith/send.c @@ -1610,20 +1610,10 @@ update_answered_flags(REPLY_S *reply) if(!stream && reply->msgno) return; - /* - * This is here only for people who ran pine4.42 and are - * processing postponed mail from 4.42 now. Pine4.42 saved the - * original mailbox name in the canonical name's position in - * the postponed-msgs folder so it won't match the canonical - * name from the stream. - */ - if(!stream && (!reply->origmbox || - (reply->mailbox && - !strcmp(reply->origmbox, reply->mailbox)))) - stream = sp_stream_get(reply->mailbox, SP_MATCH); - /* TRANSLATORS: program is busy updating the Answered flags so warns user */ - we_cancel = busy_cue(_("Updating \"Answered\" Flags"), NULL, 0); + we_cancel = reply->forwarded + ? busy_cue(_("Setting \"Forwarded\" Keyword"), NULL, 0) + : busy_cue(_("Updating \"Answered\" Flags"), NULL, 0); if(!stream){ if((stream = pine_mail_open(NULL, reply->origmbox ? reply->origmbox |