* The TAB key allows autocomplete in the Fcc field in the composer headers,
[alpine.git] / pith / reply.c
blob9361781fa0c3a88e8e3d26c4aa18731aae030e50
1 #if !defined(lint) && !defined(DOS)
2 static char rcsid[] = "$Id: reply.c 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $";
3 #endif
5 /*
6 * ========================================================================
7 * Copyright 2013-2016 Eduardo Chappa
8 * Copyright 2006-2008 University of Washington
10 * Licensed under the Apache License, Version 2.0 (the "License");
11 * you may not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
14 * http://www.apache.org/licenses/LICENSE-2.0
16 * ========================================================================
19 #include "../pith/headers.h"
20 #include "../pith/reply.h"
21 #include "../pith/send.h"
22 #include "../pith/init.h"
23 #include "../pith/state.h"
24 #include "../pith/conf.h"
25 #include "../pith/remote.h"
26 #include "../pith/status.h"
27 #include "../pith/mailview.h"
28 #include "../pith/filter.h"
29 #include "../pith/newmail.h"
30 #include "../pith/bldaddr.h"
31 #include "../pith/mailindx.h"
32 #include "../pith/mimedesc.h"
33 #include "../pith/detach.h"
34 #include "../pith/help.h"
35 #include "../pith/pipe.h"
36 #include "../pith/addrstring.h"
37 #include "../pith/news.h"
38 #include "../pith/util.h"
39 #include "../pith/pattern.h"
40 #include "../pith/detoken.h"
41 #include "../pith/stream.h"
42 #include "../pith/busy.h"
43 #include "../pith/readfile.h"
44 #include "../pith/text.h"
45 #include "../pith/list.h"
46 #include "../pith/ablookup.h"
47 #include "../pith/mailcmd.h"
48 #include "../pith/margin.h"
49 #include "../pith/smime.h"
53 * Internal prototypes
55 void bounce_mask_header(char **, char *);
58 int (*pith_opt_replyto_prompt)(void);
59 int (*pith_opt_reply_to_all_prompt)(int *);
63 * standard type of storage object used for body parts...
65 #define PART_SO_TYPE CharStar
68 char *(*pith_opt_user_agent_prefix)(void);
70 /* compare two subjects and return if they are the same.
71 We compare stripped subjects, that is, those that do
72 not have re/fwd. Before we compare the subjects, we
73 decode them in case they were encoded.
74 Return value: 0 - not the same subject, 1 - same subject.
77 int
78 same_subject(char *s, char *t)
80 int rv = 0;
81 int i, j, len;
82 char *s1, *s2; /* holds decoded subjects from s and t */
83 char *u, *v;
85 if (s == NULL || t == NULL)
86 return s == t ? 1 : 0;
88 i = strlen(s); j = strlen(t);
89 len = i < j ? j : i;
90 u = fs_get(6*len+1);
91 v = fs_get(6*len+1);
92 s1 = (char *) rfc1522_decode_to_utf8((unsigned char *) u, 6*len + 1, s);
93 s2 = (char *) rfc1522_decode_to_utf8((unsigned char *) v, 6*len + 1, t);
94 mail_strip_subject(s1, &u);
95 mail_strip_subject(s2, &v);
97 rv = !strucmp(u, v);
99 fs_give((void **) &u);
100 fs_give((void **) &v);
101 return rv;
105 * reply_harvest -
107 * Returns: 1 if addresses successfully copied
108 * 0 on user cancel or error
110 * Input flags:
111 * RSF_FORCE_REPLY_TO
112 * RSF_QUERY_REPLY_ALL
113 * RSF_FORCE_REPLY_ALL
115 * Output flags:
116 * RSF_FORCE_REPLY_ALL
120 reply_harvest(struct pine *ps, long int msgno, char *section, ENVELOPE *env,
121 struct mail_address **saved_from, struct mail_address **saved_to,
122 struct mail_address **saved_cc, struct mail_address **saved_resent,
123 int *flags)
125 ADDRESS *ap, *ap2, *rep_address;
126 int ret = 0, sniff_resent = 0;
127 char *rep_field;
130 * If Reply-To is same as From just treat it like it was From.
131 * Otherwise, always use the reply-to if we're replying to more
132 * than one msg or say ok to using it, even if it's us.
133 * If there's no reply-to or it's the same as the from, assume
134 * that the user doesn't want to reply to himself, unless there's
135 * nobody else.
137 if(env->reply_to && !addr_lists_same(env->reply_to, env->from)
138 && (F_ON(F_AUTO_REPLY_TO, ps_global)
139 || ((*flags) & RSF_FORCE_REPLY_TO)
140 || (pith_opt_replyto_prompt && (*pith_opt_replyto_prompt)() == 'y'))){
141 rep_field = "reply-to";
142 rep_address = env->reply_to;
144 else{
145 rep_field = "From";
146 rep_address = env->from;
149 ap = reply_cp_addr(ps, msgno, section, rep_field, *saved_from,
150 (ADDRESS *) NULL, rep_address, RCA_NOT_US);
152 if(ret == 'x') {
153 cmd_cancelled("Reply");
154 return(0);
157 reply_append_addr(saved_from, ap);
159 /*--------- check for other recipients ---------*/
160 if(((*flags) & (RSF_FORCE_REPLY_ALL | RSF_QUERY_REPLY_ALL))){
162 if((ap = reply_cp_addr(ps, msgno, section, "To", *saved_to,
163 *saved_from, env->to, RCA_NOT_US)) != NULL)
164 reply_append_addr(saved_to, ap);
166 if((ap = reply_cp_addr(ps, msgno, section, "Cc", *saved_cc,
167 *saved_from, env->cc, RCA_NOT_US)) != NULL)
168 reply_append_addr(saved_cc, ap);
171 * In these cases, we either need to look at the resent headers
172 * to include in the reply-to-all, or to decide whether or not
173 * we need to ask the reply-to-all question.
175 if(((*flags) & RSF_FORCE_REPLY_ALL)
176 || (((*flags) & RSF_QUERY_REPLY_ALL)
177 && ((!(*saved_from) && !(*saved_cc))
178 || (*saved_from && !(*saved_to) && !(*saved_cc))))){
180 sniff_resent++;
181 if((ap2 = reply_resent(ps, msgno, section)) != NULL){
183 * look for bogus addr entries and replace
185 if((ap = reply_cp_addr(ps, 0, NULL, NULL, *saved_resent,
186 *saved_from, ap2, RCA_NOT_US)) != NULL)
188 reply_append_addr(saved_resent, ap);
190 mail_free_address(&ap2);
195 * It makes sense to ask reply-to-all now.
197 if(((*flags) & RSF_QUERY_REPLY_ALL)
198 && ((*saved_from && (*saved_to || *saved_cc || *saved_resent))
199 || (*saved_cc || *saved_resent))){
200 *flags &= ~RSF_QUERY_REPLY_ALL;
201 if(pith_opt_reply_to_all_prompt
202 && (*pith_opt_reply_to_all_prompt)(flags) < 0){
203 cmd_cancelled("Reply");
204 return(0);
209 * If we just answered yes to the reply-to-all question and
210 * we still haven't collected the resent headers, do so now.
212 if(((*flags) & RSF_FORCE_REPLY_ALL) && !sniff_resent
213 && (ap2 = reply_resent(ps, msgno, section))){
215 * look for bogus addr entries and replace
217 if((ap = reply_cp_addr(ps, 0, NULL, NULL, *saved_resent,
218 *saved_from, ap2, RCA_NOT_US)) != NULL)
219 reply_append_addr(saved_resent, ap);
221 mail_free_address(&ap2);
225 return(1);
229 /*----------------------------------------------------------------------
230 Return a pointer to a copy of the given address list
231 filtering out those already in the "mask" lists and ourself.
233 Args: mask1 -- Don't copy if in this list
234 mask2 -- or if in this list
235 source -- List to be copied
236 us_too -- Don't filter out ourself.
237 flags -- RCA_NOT_US copy all addrs except for our own
238 RCA_ALL copy all addrs, including our own
239 RCA_ONLY_US copy only addrs that are our own
241 ---*/
242 ADDRESS *
243 reply_cp_addr(struct pine *ps, long int msgno, char *section, char *field,
244 struct mail_address *mask1, struct mail_address *mask2,
245 struct mail_address *source, int flags)
247 ADDRESS *tmp1, *tmp2, *ret = NULL, **ret_tail;
249 /* can only choose one of these flags values */
250 assert(!((flags & RCA_ALL && flags & RCA_ONLY_US)
251 || (flags & RCA_ALL && flags & RCA_NOT_US)
252 || (flags & RCA_ONLY_US && flags & RCA_NOT_US)));
254 for(tmp1 = source; msgno && tmp1; tmp1 = tmp1->next)
255 if(tmp1->host && tmp1->host[0] == '.'){
256 char *h, *fields[2];
258 fields[0] = field;
259 fields[1] = NULL;
260 if((h = pine_fetchheader_lines(ps ? ps->mail_stream : NULL,
261 msgno, section, fields)) != NULL){
262 char *p, fname[32];
263 int q;
265 q = strlen(h);
267 strncpy(fname, field, sizeof(fname)-2);
268 fname[sizeof(fname)-2] = '\0';
269 strncat(fname, ":", sizeof(fname)-strlen(fname)-1);
270 fname[sizeof(fname)-1] = '\0';
272 for(p = h; (p = strstr(p, fname)) != NULL; )
273 rplstr(p, q-(p-h), strlen(fname), ""); /* strip field strings */
275 sqznewlines(h); /* blat out CR's & LF's */
276 for(p = h; (p = strchr(p, TAB)) != NULL; )
277 *p++ = ' '; /* turn TABs to whitespace */
279 if(*h){
280 long l;
281 size_t ll;
283 ret = (ADDRESS *) fs_get(sizeof(ADDRESS));
284 memset(ret, 0, sizeof(ADDRESS));
286 /* get rid of leading white space */
287 for(p = h; *p == SPACE; p++)
290 if(p != h){
291 memmove(h, p, l = strlen(p));
292 h[l] = '\0';
295 /* base64 armor plate the gunk to protect against
296 * c-client quoting in output.
298 p = (char *) rfc822_binary(h, strlen(h),
299 (unsigned long *) &l);
300 sqznewlines(p);
301 fs_give((void **) &h);
303 * Seems like the 4 ought to be a 2, but I'll leave it
304 * to be safe, in case something else adds 2 chars later.
306 ll = strlen(p) + 4;
307 ret->mailbox = (char *) fs_get(ll * sizeof(char));
308 snprintf(ret->mailbox, ll, "&%s", p);
309 ret->mailbox[ll-1] = '\0';
310 fs_give((void **) &p);
311 ret->host = cpystr(RAWFIELD);
315 return(ret);
318 ret_tail = &ret;
319 for(source = first_addr(source); source; source = source->next){
320 for(tmp1 = first_addr(mask1); tmp1; tmp1 = tmp1->next)
321 if(address_is_same(source, tmp1)) /* it is in mask1, skip it */
322 break;
324 for(tmp2 = first_addr(mask2); !tmp1 && tmp2; tmp2 = tmp2->next)
325 if(address_is_same(source, tmp2)) /* it is in mask2, skip it */
326 break;
329 * If there's no match in masks and this address satisfies the
330 * flags requirement, copy it.
332 if(!tmp1 && !tmp2 /* no mask match */
333 && ((flags & RCA_ALL) /* including everybody */
334 || (flags & RCA_ONLY_US && address_is_us(source, ps))
335 || (flags & RCA_NOT_US && !address_is_us(source, ps)))){
336 tmp1 = source->next;
337 source->next = NULL; /* only copy one addr! */
338 *ret_tail = rfc822_cpy_adr(source);
339 ret_tail = &(*ret_tail)->next;
340 source->next = tmp1; /* restore rest of list */
344 return(ret);
348 ACTION_S *
349 set_role_from_msg(struct pine *ps, long int rflags, long int msgno, char *section)
351 ACTION_S *role = NULL;
352 PAT_S *pat = NULL;
353 SEARCHSET *ss = NULL;
354 PAT_STATE pstate;
356 if(!nonempty_patterns(rflags, &pstate))
357 return(role);
359 if(msgno > 0L){
360 ss = mail_newsearchset();
361 ss->first = ss->last = (unsigned long)msgno;
364 /* Go through the possible roles one at a time until we get a match. */
365 pat = first_pattern(&pstate);
367 /* calculate this message's score if needed */
368 if(ss && pat && scores_are_used(SCOREUSE_GET) & SCOREUSE_ROLES &&
369 get_msg_score(ps->mail_stream, msgno) == SCORE_UNDEF)
370 (void)calculate_some_scores(ps->mail_stream, ss, 0);
372 while(!role && pat){
373 if(match_pattern(pat->patgrp, ps->mail_stream, ss, section,
374 get_msg_score, SE_NOSERVER|SE_NOPREFETCH)){
375 if(!pat->action || pat->action->bogus)
376 break;
378 role = pat->action;
380 else
381 pat = next_pattern(&pstate);
384 if(ss)
385 mail_free_searchset(&ss);
387 return(role);
392 * reply_seed - fill in reply header
395 void
396 reply_seed(struct pine *ps, ENVELOPE *outgoing, ENVELOPE *env,
397 struct mail_address *saved_from, struct mail_address *saved_to,
398 struct mail_address *saved_cc, struct mail_address *saved_resent,
399 char **fcc, int replytoall, char **errmsg)
401 ADDRESS **to_tail, **cc_tail;
403 to_tail = &outgoing->to;
404 cc_tail = &outgoing->cc;
406 if(saved_from){
407 /* Put Reply-To or From in To. */
408 *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
409 (ADDRESS *) NULL, saved_from, RCA_ALL);
410 if(replytoall){
411 if(ps->preserve){
412 while(*to_tail)
413 to_tail = &(*to_tail)->next;
415 *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
416 (ADDRESS *) NULL, saved_to, RCA_ALL);
418 while(*to_tail)
419 to_tail = &(*to_tail)->next;
421 *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
422 outgoing->to, saved_resent, RCA_ALL);
424 *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
425 outgoing->to, saved_cc, RCA_ALL);
427 else{ /* and the rest in cc */
428 *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
429 outgoing->to, saved_to, RCA_ALL);
430 while(*cc_tail) /* stay on last address */
431 cc_tail = &(*cc_tail)->next;
433 *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
434 outgoing->to, saved_cc, RCA_ALL);
435 while(*cc_tail)
436 cc_tail = &(*cc_tail)->next;
438 *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
439 outgoing->to, saved_resent, RCA_ALL);
443 else if(saved_to){
444 /* No From (maybe from us), put To in To. */
445 *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
446 (ADDRESS *)NULL, saved_to, RCA_ALL);
447 /* and the rest in cc */
448 if(replytoall){
449 *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
450 outgoing->to, saved_cc, RCA_ALL);
451 while(*cc_tail)
452 cc_tail = &(*cc_tail)->next;
454 *cc_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->cc,
455 outgoing->to, saved_resent, RCA_ALL);
458 else{
459 /* No From or To, put everything else in To if replytoall, */
460 if(replytoall){
461 *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
462 (ADDRESS *) NULL, saved_cc, RCA_ALL);
463 while(*to_tail)
464 to_tail = &(*to_tail)->next;
466 *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
467 (ADDRESS *) NULL, saved_resent, RCA_ALL);
469 /* else, reply to original From which must be us */
470 else{
472 * Put self in To if in original From.
474 if(!outgoing->newsgroups)
475 *to_tail = reply_cp_addr(ps, 0, NULL, NULL, outgoing->to,
476 (ADDRESS *) NULL, env->from, RCA_ALL);
480 /* add any missing personal data */
481 reply_fish_personal(outgoing, env);
483 /* get fcc */
484 if(fcc && outgoing->to && outgoing->to->host[0] != '.'){
485 *fcc = get_fcc_based_on_to(outgoing->to);
487 else if(fcc && outgoing->newsgroups){
488 char *newsgroups_returned = NULL;
489 int rv;
491 rv = news_grouper(outgoing->newsgroups, &newsgroups_returned, errmsg, fcc, NULL);
492 if(rv != -1 &&
493 strcmp(outgoing->newsgroups, newsgroups_returned)){
494 fs_give((void **)&outgoing->newsgroups);
495 outgoing->newsgroups = newsgroups_returned;
497 else
498 fs_give((void **) &newsgroups_returned);
503 /*----------------------------------------------------------------------
504 Test the given address lists for equivalence
506 Args: x -- First address list for comparison
507 y -- Second address for comparison
509 ---*/
511 addr_lists_same(struct mail_address *x, struct mail_address *y)
513 for(x = first_addr(x), y = first_addr(y);
514 x && y;
515 x = first_addr(x->next), y = first_addr(y->next)){
516 if(!address_is_same(x, y))
517 return(0);
520 return(!x && !y); /* true if ran off both lists */
524 /*----------------------------------------------------------------------
525 Test the given address against those in the given envelope's to, cc
527 Args: addr -- address for comparison
528 env -- envelope to compare against
530 ---*/
532 addr_in_env(struct mail_address *addr, ENVELOPE *env)
534 ADDRESS *ap;
536 for(ap = env ? env->to : NULL; ap; ap = ap->next)
537 if(address_is_same(addr, ap))
538 return(1);
540 for(ap = env ? env->cc : NULL; ap; ap = ap->next)
541 if(address_is_same(addr, ap))
542 return(1);
544 return(0); /* not found! */
548 /*----------------------------------------------------------------------
549 Add missing personal info dest from src envelope
551 Args: dest -- envelope to add personal info to
552 src -- envelope to get personal info from
554 NOTE: This is just kind of a courtesy function. It's really not adding
555 anything needed to get the mail thru, but it is nice for the user
556 under some odd circumstances.
557 ---*/
558 void
559 reply_fish_personal(ENVELOPE *dest, ENVELOPE *src)
561 ADDRESS *da, *sa;
563 for(da = dest ? dest->to : NULL; da; da = da->next){
564 if(da->personal && !da->personal[0])
565 fs_give((void **)&da->personal);
567 for(sa = src ? src->to : NULL; sa && !da->personal ; sa = sa->next)
568 if(address_is_same(da, sa) && sa->personal && sa->personal[0])
569 da->personal = cpystr(sa->personal);
571 for(sa = src ? src->cc : NULL; sa && !da->personal; sa = sa->next)
572 if(address_is_same(da, sa) && sa->personal && sa->personal[0])
573 da->personal = cpystr(sa->personal);
576 for(da = dest ? dest->cc : NULL; da; da = da->next){
577 if(da->personal && !da->personal[0])
578 fs_give((void **)&da->personal);
580 for(sa = src ? src->to : NULL; sa && !da->personal; sa = sa->next)
581 if(address_is_same(da, sa) && sa->personal && sa->personal[0])
582 da->personal = cpystr(sa->personal);
584 for(sa = src ? src->cc : NULL; sa && !da->personal; sa = sa->next)
585 if(address_is_same(da, sa) && sa->personal && sa->personal[0])
586 da->personal = cpystr(sa->personal);
591 /*----------------------------------------------------------------------
592 Given a header field and envelope, build "References: " header data
594 Args:
596 Returns:
597 ---*/
598 char *
599 reply_build_refs(ENVELOPE *env)
601 int len, id_len, first_ref_len = 0, foldslop;
602 char *p, *refs = NULL, *h = env->references;
603 char *first_ref = NULL, *tail_refs = NULL;
606 if(!(env->message_id && (id_len = strlen(env->message_id))))
607 return(NULL);
609 if(h){
611 * The length we have to work with doesn't seem to appear in any
612 * standards. Steve Jones says that in comp.news discussions he
613 * has seen 1024 as the longest length of a header value.
614 * In the inn news source we find MAXHEADERSIZE = 1024. It appears
615 * that is the maximum length of the header value, including
616 * newlines for folded lines (that is, the newlines are counted).
617 * We'll be conservative and figure every reference will take up a
618 * line of its own when we fold. We'll also count 2 for CRLF instead
619 * of just one for LF just to be safe. hubert 2001-jan
620 * J.B. Moreno <planb@newsreaders.com> says "The server limit is
621 * more commonly encountered at 999/1000 bytes [...]". So we'll
622 * back off to 999 instead of 1024.
624 #define MAXHEADERSIZE (999)
626 /* count the total number of potential folds, max of 2 bytes each */
627 for(foldslop = 2, p = h; (p = strstr(p+1, "> <")); )
628 foldslop += 2;
630 if((len=strlen(h)) + 1+id_len + foldslop >= MAXHEADERSIZE
631 && (p = strstr(h, "> <"))){
633 * If the references line is so long that we are going to have
634 * to delete some of the references, delete the 2nd, 3rd, ...
635 * We don't want to delete the first message in the thread.
637 p[1] = '\0';
638 first_ref = cpystr(h);
639 first_ref_len = strlen(first_ref)+1; /* len includes space */
640 p[1] = ' ';
641 tail_refs = p+2;
642 /* get rid of 2nd, 3rd, ... until it fits */
643 while((len=strlen(tail_refs)) + first_ref_len + 1+id_len +
644 foldslop >= MAXHEADERSIZE
645 && (p = strstr(tail_refs, "> <"))){
646 tail_refs = p + 2;
647 foldslop -= 2;
651 * If the individual references are seriously long, somebody
652 * is messing with us and we don't care if it works right.
654 if((len=strlen(tail_refs)) + first_ref_len + 1+id_len +
655 foldslop >= MAXHEADERSIZE){
656 first_ref_len = len = 0;
657 tail_refs = NULL;
658 if(first_ref)
659 fs_give((void **)&first_ref);
662 else
663 tail_refs = h;
665 refs = (char *)fs_get((first_ref_len + 1+id_len + len + 1) *
666 sizeof(char));
667 snprintf(refs, first_ref_len + 1+id_len + len + 1, "%s%s%s%s%s",
668 first_ref ? first_ref : "",
669 first_ref ? " " : "",
670 tail_refs ? tail_refs : "",
671 tail_refs ? " " : "",
672 env->message_id);
673 refs[first_ref_len + 1+id_len + len] = '\0';
676 if(!refs && id_len)
677 refs = cpystr(env->message_id);
679 if(first_ref)
680 fs_give((void **)&first_ref);
682 return(refs);
687 /*----------------------------------------------------------------------
688 Snoop for any Resent-* headers, and return an ADDRESS list
690 Args: stream --
691 msgno --
693 Returns: either NULL if no Resent-* or parsed ADDRESS struct list
694 ---*/
695 ADDRESS *
696 reply_resent(struct pine *pine_state, long int msgno, char *section)
698 #define RESENTFROM 0
699 #define RESENTTO 1
700 #define RESENTCC 2
701 ADDRESS *rlist = NULL, **a, **b;
702 char *hdrs, *values[RESENTCC+1];
703 int i;
704 static char *fields[] = {"Resent-From", "Resent-To", "Resent-Cc", NULL};
705 static char *fakedomain = "@";
707 if((hdrs = pine_fetchheader_lines(pine_state->mail_stream,
708 msgno, section, fields)) != NULL){
709 memset(values, 0, (RESENTCC+1) * sizeof(char *));
710 simple_header_parse(hdrs, fields, values);
711 for(i = RESENTFROM; i <= RESENTCC; i++)
712 rfc822_parse_adrlist(&rlist, values[i],
713 (F_ON(F_COMPOSE_REJECTS_UNQUAL, pine_state))
714 ? fakedomain : pine_state->maildomain);
716 /* pare dup's ... */
717 for(a = &rlist; *a; a = &(*a)->next) /* compare every address */
718 for(b = &(*a)->next; *b; ) /* to the others */
719 if(address_is_same(*a, *b)){
720 ADDRESS *t = *b;
722 if(!(*a)->personal){ /* preserve personal name */
723 (*a)->personal = (*b)->personal;
724 (*b)->personal = NULL;
727 *b = t->next;
728 t->next = NULL;
729 mail_free_address(&t);
731 else
732 b = &(*b)->next;
735 if(hdrs)
736 fs_give((void **) &hdrs);
738 return(rlist);
742 /*----------------------------------------------------------------------
743 Format and return subject suitable for the reply command
745 Args: subject -- subject to build reply subject for
746 buf -- buffer to use for writing. If non supplied, alloc one.
747 buflen -- length of buf if supplied, else ignored
749 Returns: with either "Re:" prepended or not, if already there.
750 returned string is allocated.
751 ---*/
752 char *
753 reply_subject(char *subject, char *buf, size_t buflen)
755 size_t l = (subject && *subject) ? 4*strlen(subject) : 10;
756 char *tmp = fs_get(l + 1), *decoded, *p;
758 if(!buf){
759 buflen = l + 5;
760 buf = fs_get(buflen);
763 /* decode any 8bit into tmp buffer */
764 decoded = (char *) rfc1522_decode_to_utf8((unsigned char *)tmp, l+1, subject);
766 buf[0] = '\0';
767 if(decoded /* already "re:" ? */
768 && (decoded[0] == 'R' || decoded[0] == 'r')
769 && (decoded[1] == 'E' || decoded[1] == 'e')){
771 if(decoded[2] == ':')
772 snprintf(buf, buflen, "%.*s", (int)(buflen-1), subject);
773 else if((decoded[2] == '[') && (p = strchr(decoded, ']'))){
774 p++;
775 while(*p && isspace((unsigned char)*p)) p++;
776 if(p[0] == ':')
777 snprintf(buf, buflen, "%.*s", (int)(buflen-1), subject);
781 if(!buf[0])
782 snprintf(buf, buflen, "Re: %.*s", (int)(buflen-1),
783 (subject && *subject) ? subject : "your mail");
785 buf[buflen-1] = '\0';
787 fs_give((void **) &tmp);
788 return(buf);
792 /*----------------------------------------------------------------------
793 return initials for the given personal name
795 Args: name -- Personal name to extract initials from
797 Returns: pointer to name overwritten with initials
798 ---*/
799 char *
800 reply_quote_initials(char *name)
802 char *s = name,
803 *w = name;
804 int i, j;
805 CBUF_S cbuf;
806 UCS ucs;
808 cbuf.cbuf[i = 0] = '\0';
809 cbuf.cbufp = cbuf.cbuf;
810 cbuf.cbufend = cbuf.cbuf;
812 /* while there are still characters to look at */
813 while(s && *s){
814 /* skip to next initial */
815 while(*s && (unsigned char) *s == ' ')
816 s++;
818 if(!utf8_to_ucs4_oneatatime((unsigned char) *s++ & 0xff, &cbuf, &ucs, NULL)){
819 i++;
820 continue;
823 /* skip over non-alpha stuff */
824 if(i == 0 && !isalnum((unsigned char) cbuf.cbuf[0]))
825 goto reset_cbuf;
827 /* copy cbuf */
828 for(j = 0; j <= i; j++) *w++ = cbuf.cbuf[j];
830 /* skip to end of this piece of name */
831 while(*s && (unsigned char) *s != ' ')
832 s++;
834 reset_cbuf:
835 cbuf.cbuf[i = 0] = '\0';
836 cbuf.cbufp = cbuf.cbuf;
837 cbuf.cbufend = cbuf.cbuf;
840 if(w)
841 *w = '\0';
843 return(name);
847 * There is an assumption that MAX_SUBSTITUTION is <= the size of the
848 * tokens being substituted for (only in the size of buf below).
850 #define MAX_SUBSTITUTION 6
851 #define MAX_PREFIX 63
852 static char *from_token = "_FROM_";
853 static char *nick_token = "_NICK_";
854 static char *init_token = "_INIT_";
856 /*----------------------------------------------------------------------
857 return a quoting string, "> " by default, for replied text
859 Args: env -- envelope of message being replied to
861 Returns: malloc'd array containing quoting string, freed by caller
862 ---*/
863 char *
864 reply_quote_str(ENVELOPE *env)
866 char *prefix, *repl, *p, buf[MAX_PREFIX+1], pbf[MAX_SUBSTITUTION+1];
868 strncpy(buf, ps_global->VAR_REPLY_STRING, sizeof(buf)-1);
869 buf[sizeof(buf)-1] = '\0';
871 /* set up the prefix to quote included text */
872 if((p = strstr(buf, from_token)) != NULL){
873 repl = (env && env->from && env->from->mailbox) ? env->from->mailbox
874 : "";
875 strncpy(pbf, repl, sizeof(pbf)-1);
876 pbf[sizeof(pbf)-1] = '\0';;
877 rplstr(p, sizeof(buf)-(p-buf), strlen(from_token), pbf);
880 if((p = strstr(buf, nick_token)) != NULL){
881 repl = (env &&
882 env->from &&
883 env->from &&
884 get_nickname_from_addr(env->from, tmp_20k_buf, 1000))
885 ? tmp_20k_buf : "";
886 strncpy(pbf, repl, sizeof(pbf)-1);
887 pbf[sizeof(pbf)-1] = '\0';;
888 rplstr(p, sizeof(buf)-(p-buf), strlen(nick_token), pbf);
891 if((p = strstr(buf, init_token)) != NULL){
892 char *q = NULL;
893 char buftmp[MAILTMPLEN];
895 snprintf(buftmp, sizeof(buftmp), "%.200s",
896 (env && env->from && env->from->personal) ? env->from->personal : "");
897 buftmp[sizeof(buftmp)-1] = '\0';
899 repl = (env && env->from && env->from->personal)
900 ? reply_quote_initials(q = cpystr((char *)rfc1522_decode_to_utf8(
901 (unsigned char *)tmp_20k_buf,
902 SIZEOF_20KBUF, buftmp)))
903 : "";
905 istrncpy(pbf, repl, sizeof(pbf)-1);
906 pbf[sizeof(pbf)-1] = '\0';;
907 rplstr(p, sizeof(buf)-(p-buf), strlen(init_token), pbf);
908 if(q)
909 fs_give((void **)&q);
912 prefix = removing_quotes(cpystr(buf));
914 return(prefix);
918 reply_quote_str_contains_tokens(void)
920 return(ps_global->VAR_REPLY_STRING && ps_global->VAR_REPLY_STRING[0] &&
921 (strstr(ps_global->VAR_REPLY_STRING, from_token) ||
922 strstr(ps_global->VAR_REPLY_STRING, nick_token) ||
923 strstr(ps_global->VAR_REPLY_STRING, init_token)));
927 /*----------------------------------------------------------------------
928 Build the body for the message number/part being replied to
930 Args:
932 Result: BODY structure suitable for sending
934 ----------------------------------------------------------------------*/
935 BODY *
936 reply_body(MAILSTREAM *stream, ENVELOPE *env, struct mail_bodystruct *orig_body,
937 long int msgno, char *sect_prefix, void *msgtext, char *prefix,
938 int plustext, ACTION_S *role, int toplevel, REDRAFT_POS_S **redraft_pos)
940 #define SECTBUFLEN 256
941 char *p, *sig = NULL, *section, sect_buf[SECTBUFLEN];
942 BODY *body = NULL, *tmp_body = NULL;
943 PART *part;
944 gf_io_t pc;
945 int impl, template_len = 0, leave_cursor_at_top = 0, reply_raw_body = 0;
947 if(sect_prefix) /* SECTBUFLEN = sizeof(sect_buf) */
948 snprintf(section = sect_buf, sizeof(sect_buf), "%.*s.1", SECTBUFLEN-1, sect_prefix);
949 else
950 section = "1";
952 sect_buf[sizeof(sect_buf)-1] = '\0';
954 if(ps_global->full_header == 2
955 && F_ON(F_ENABLE_FULL_HDR_AND_TEXT, ps_global))
956 reply_raw_body = 1;
958 gf_set_so_writec(&pc, (STORE_S *) msgtext);
960 if(toplevel){
961 char *filtered;
963 impl = 0;
964 filtered = detoken(role, env, 0,
965 F_ON(F_SIG_AT_BOTTOM, ps_global) ? 1 : 0,
966 0, redraft_pos, &impl);
967 if(filtered){
968 if(*filtered){
969 so_puts((STORE_S *)msgtext, filtered);
970 if(impl == 1)
971 template_len = strlen(filtered);
972 else if(impl == 2)
973 leave_cursor_at_top++;
976 fs_give((void **)&filtered);
978 else
979 impl = 1;
981 else
982 impl = 1;
984 if(toplevel &&
985 (sig = reply_signature(role, env, redraft_pos, &impl)) &&
986 F_OFF(F_SIG_AT_BOTTOM, ps_global)){
989 * If CURSORPOS was set explicitly in sig_file, and there was a
990 * template file before that, we need to adjust the offset by the
991 * length of the template file. However, if the template had
992 * a set CURSORPOS in it then impl was 2 before getting to the
993 * signature, so offset wouldn't have been reset by the signature
994 * CURSORPOS and offset would already be correct. That case will
995 * be ok here because template_len will be 0 and adding it does
996 * nothing. If template
997 * didn't have CURSORPOS in it, then impl was 1 and got set to 2
998 * by the CURSORPOS in the sig. In that case we have to adjust the
999 * offset. That's what the next line does. It adjusts it if
1000 * template_len is nonzero and if CURSORPOS was set in sig_file.
1002 if(impl == 2)
1003 (*redraft_pos)->offset += template_len;
1005 if(*sig)
1006 so_puts((STORE_S *)msgtext, sig);
1009 * Set sig to NULL because we've already used it. If SIG_AT_BOTTOM
1010 * is set, we won't have used it yet and want it to be non-NULL.
1012 fs_give((void **)&sig);
1016 * Only put cursor in sig if there is a cursorpos there but not
1017 * one in the template, and sig-at-bottom.
1019 if(!(sig && impl == 2 && !leave_cursor_at_top))
1020 leave_cursor_at_top++;
1022 if(plustext){
1023 if(!orig_body
1024 || orig_body->type == TYPETEXT
1025 || reply_raw_body
1026 || F_OFF(F_ATTACHMENTS_IN_REPLY, ps_global)){
1027 char *charset = NULL;
1029 /*------ Simple text-only message ----*/
1030 body = mail_newbody();
1031 body->type = TYPETEXT;
1032 body->contents.text.data = msgtext;
1033 reply_delimiter(env, role, pc);
1034 if(F_ON(F_INCLUDE_HEADER, ps_global))
1035 reply_forward_header(stream, msgno, sect_prefix,
1036 env, pc, prefix);
1038 if(!orig_body || reply_raw_body || reply_body_text(orig_body, &tmp_body)){
1039 BODY *bodyp = NULL;
1041 bodyp = reply_raw_body ? NULL : tmp_body;
1044 * We set the charset in the outgoing message to the same
1045 * as the one in the message we're replying to unless it
1046 * is the unknown charset. We do that in order to attempt
1047 * to preserve the same charset in the reply if possible.
1048 * It may be safer to just set it to whatever we want instead
1049 * but then the receiver may not be able to read it.
1051 if(bodyp
1052 && (charset = parameter_val(bodyp->parameter, "charset"))
1053 && strucmp(charset, UNKNOWN_CHARSET))
1054 set_parameter(&body->parameter, "charset", charset);
1056 if(charset)
1057 fs_give((void **) &charset);
1059 get_body_part_text(stream, bodyp, msgno,
1060 bodyp ? (p = body_partno(stream, msgno, bodyp))
1061 : sect_prefix,
1062 0L, pc, prefix, NULL, GBPT_NONE);
1063 if(bodyp && p)
1064 fs_give((void **) &p);
1066 else{
1067 gf_puts(NEWLINE, pc);
1068 gf_puts(" [NON-Text Body part not included]", pc);
1069 gf_puts(NEWLINE, pc);
1072 else if(orig_body->type == TYPEMULTIPART){
1073 /*------ Message is Multipart ------*/
1074 if(orig_body->subtype
1075 && !strucmp(orig_body->subtype, "signed")
1076 && orig_body->nested.part){
1077 /* operate only on the signed part */
1078 body = reply_body(stream, env,
1079 &orig_body->nested.part->body,
1080 msgno, section, msgtext, prefix,
1081 plustext, role, 0, redraft_pos);
1083 else if(orig_body->subtype
1084 && !strucmp(orig_body->subtype, "alternative")){
1085 /* Set up the simple text reply */
1086 body = mail_newbody();
1087 body->type = TYPETEXT;
1088 body->contents.text.data = msgtext;
1090 if(reply_body_text(orig_body, &tmp_body)){
1091 reply_delimiter(env, role, pc);
1092 if(F_ON(F_INCLUDE_HEADER, ps_global))
1093 reply_forward_header(stream, msgno, sect_prefix,
1094 env, pc, prefix);
1096 get_body_part_text(stream, tmp_body, msgno,
1097 p = body_partno(stream,msgno,tmp_body),
1098 0L, pc, prefix, NULL, GBPT_NONE);
1099 if(p)
1100 fs_give((void **) &p);
1102 else
1103 q_status_message(SM_ORDER | SM_DING, 3, 3,
1104 "No suitable multipart text found for inclusion!");
1106 else{
1107 body = copy_body(NULL, orig_body);
1110 * whatever subtype it is, demote it
1111 * to plain old MIXED.
1113 if(body->subtype)
1114 fs_give((void **) &body->subtype);
1116 body->subtype = cpystr("Mixed");
1118 if(body->nested.part &&
1119 body->nested.part->body.type == TYPETEXT) {
1120 char *new_charset = NULL;
1122 /*---- First part of the message is text -----*/
1123 body->nested.part->body.contents.text.data = msgtext;
1124 if(body->nested.part->body.subtype &&
1125 strucmp(body->nested.part->body.subtype, "Plain")){
1126 fs_give((void **)&body->nested.part->body.subtype);
1127 body->nested.part->body.subtype = cpystr("Plain");
1129 reply_delimiter(env, role, pc);
1130 if(F_ON(F_INCLUDE_HEADER, ps_global))
1131 reply_forward_header(stream, msgno, sect_prefix,
1132 env, pc, prefix);
1134 if(!(get_body_part_text(stream,
1135 &orig_body->nested.part->body,
1136 msgno, section, 0L, pc, prefix,
1137 &new_charset, GBPT_NONE)
1138 && fetch_contents(stream, msgno, sect_prefix, body)))
1139 q_status_message(SM_ORDER | SM_DING, 3, 4,
1140 _("Error including all message parts"));
1141 else if(new_charset)
1142 set_parameter(&body->nested.part->body.parameter, "charset", new_charset);
1144 else if(orig_body->nested.part->body.type == TYPEMULTIPART
1145 && orig_body->nested.part->body.subtype
1146 && !strucmp(orig_body->nested.part->body.subtype,
1147 "alternative")
1148 && reply_body_text(&orig_body->nested.part->body,
1149 &tmp_body)){
1150 int partnum;
1152 reply_delimiter(env, role, pc);
1153 if(F_ON(F_INCLUDE_HEADER, ps_global))
1154 reply_forward_header(stream, msgno, sect_prefix,
1155 env, pc, prefix);
1156 /* SECTBUFLEN = sizeof(sect_buf) */
1157 snprintf(sect_buf, sizeof(sect_buf), "%.*s%s%.*s",
1158 SECTBUFLEN/2-2,
1159 sect_prefix ? sect_prefix : "",
1160 sect_prefix ? "." : "",
1161 SECTBUFLEN/2-2,
1162 p = partno(orig_body, tmp_body));
1163 sect_buf[sizeof(sect_buf)-1] = '\0';
1164 fs_give((void **) &p);
1165 get_body_part_text(stream, tmp_body, msgno,
1166 sect_buf, 0L, pc, prefix,
1167 NULL, GBPT_NONE);
1169 part = body->nested.part->next;
1170 body->nested.part->next = NULL;
1171 mail_free_body_part(&body->nested.part);
1172 body->nested.part = mail_newbody_part();
1173 body->nested.part->body.type = TYPETEXT;
1174 body->nested.part->body.subtype = cpystr("Plain");
1175 body->nested.part->body.contents.text.data = msgtext;
1176 body->nested.part->next = part;
1177 /* SECTBUFLEN = sizeof(sect_buf) */
1178 for(partnum = 2; part != NULL; part = part->next){
1179 snprintf(sect_buf, sizeof(sect_buf), "%.*s%s%d",
1180 SECTBUFLEN/2,
1181 sect_prefix ? sect_prefix : "",
1182 sect_prefix ? "." : "", partnum++);
1183 sect_buf[sizeof(sect_buf)-1] = '\0';
1185 if(!fetch_contents(stream, msgno,
1186 sect_buf, &part->body)){
1187 break;
1191 else {
1192 /*--- Fetch the original pieces ---*/
1193 if(!fetch_contents(stream, msgno, sect_prefix, body))
1194 q_status_message(SM_ORDER | SM_DING, 3, 4,
1195 _("Error including all message parts"));
1197 /*--- No text part, create a blank one ---*/
1198 part = mail_newbody_part();
1199 part->next = body->nested.part;
1200 body->nested.part = part;
1201 part->body.contents.text.data = msgtext;
1205 else{
1206 /*---- Single non-text message of some sort ----*/
1207 body = mail_newbody();
1208 body->type = TYPEMULTIPART;
1209 part = mail_newbody_part();
1210 body->nested.part = part;
1212 /*--- The first part, a blank text part to be edited ---*/
1213 part->body.type = TYPETEXT;
1214 part->body.contents.text.data = msgtext;
1216 /*--- The second part, what ever it is ---*/
1217 part->next = mail_newbody_part();
1218 part = part->next;
1219 part->body.id = generate_message_id();
1220 copy_body(&(part->body), orig_body);
1223 * the idea here is to fetch part into storage object
1225 if((part->body.contents.text.data = (void *) so_get(PART_SO_TYPE,
1226 NULL,EDIT_ACCESS)) != NULL){
1227 if((p = pine_mail_fetch_body(stream, msgno, section,
1228 &part->body.size.bytes, NIL)) != NULL){
1229 so_nputs((STORE_S *)part->body.contents.text.data,
1230 p, part->body.size.bytes);
1232 else
1233 mail_free_body(&body);
1235 else
1236 mail_free_body(&body);
1239 else{
1240 /*--------- No text included --------*/
1241 body = mail_newbody();
1242 body->type = TYPETEXT;
1243 body->contents.text.data = msgtext;
1246 if(!leave_cursor_at_top){
1247 long cnt = 0L;
1248 unsigned char c;
1250 /* rewind and count chars to start of sig file */
1251 so_seek((STORE_S *)msgtext, 0L, 0);
1252 while(so_readc(&c, (STORE_S *)msgtext))
1253 cnt++;
1255 if(!*redraft_pos){
1256 *redraft_pos = (REDRAFT_POS_S *)fs_get(sizeof(**redraft_pos));
1257 memset((void *)*redraft_pos, 0,sizeof(**redraft_pos));
1258 (*redraft_pos)->hdrname = cpystr(":");
1262 * If explicit cursor positioning in sig file,
1263 * add offset to start of sig file plus offset into sig file.
1264 * Else, just offset to start of sig file.
1266 (*redraft_pos)->offset += cnt;
1269 if(sig){
1270 if(*sig)
1271 so_puts((STORE_S *)msgtext, sig);
1273 fs_give((void **)&sig);
1276 gf_clear_so_writec((STORE_S *) msgtext);
1278 return(body);
1283 * reply_part - first replyable multipart of a multipart.
1286 reply_body_text(struct mail_bodystruct *body, struct mail_bodystruct **new_body)
1288 if(body){
1289 switch(body->type){
1290 case TYPETEXT :
1291 *new_body = body;
1292 return(1);
1294 case TYPEMULTIPART :
1295 if(body->subtype && !strucmp(body->subtype, "alternative")){
1296 PART *part;
1297 int got_one = 0;
1299 if(ps_global->force_prefer_plain
1300 || (!ps_global->force_no_prefer_plain
1301 && F_ON(F_PREFER_PLAIN_TEXT, ps_global))){
1302 for(part = body->nested.part; part; part = part->next)
1303 if((!part->body.type || part->body.type == TYPETEXT)
1304 && (!part->body.subtype
1305 || !strucmp(part->body.subtype, "plain"))){
1306 *new_body = &part->body;
1307 return(1);
1312 * Else choose last alternative among plain or html parts.
1313 * Perhaps we should really be using mime_show() to make this
1314 * potentially more general than just plain or html.
1316 for(part = body->nested.part; part; part = part->next){
1317 if((!part->body.type || part->body.type == TYPETEXT)
1318 && ((!part->body.subtype || !strucmp(part->body.subtype, "plain"))
1320 (part->body.subtype && !strucmp(part->body.subtype, "html")))){
1321 got_one++;
1322 *new_body = &part->body;
1326 if(got_one)
1327 return(1);
1329 else if(body->nested.part)
1330 /* NOTE: we're only interested in "first" part of mixed */
1331 return(reply_body_text(&body->nested.part->body, new_body));
1333 break;
1335 default:
1336 break;
1340 return(0);
1344 char *
1345 reply_signature(ACTION_S *role, ENVELOPE *env, REDRAFT_POS_S **redraft_pos, int *impl)
1347 char *sig;
1348 size_t l;
1350 sig = detoken(role, env,
1351 2, F_ON(F_SIG_AT_BOTTOM, ps_global) ? 0 : 1, 1,
1352 redraft_pos, impl);
1354 if(F_OFF(F_SIG_AT_BOTTOM, ps_global) && (!sig || !*sig)){
1355 if(sig)
1356 fs_give((void **)&sig);
1358 l = 2 * strlen(NEWLINE);
1359 sig = (char *)fs_get((l+1) * sizeof(char));
1360 strncpy(sig, NEWLINE, l);
1361 sig[l] = '\0';
1362 strncat(sig, NEWLINE, l+1-1-strlen(sig));
1363 sig[l] = '\0';
1364 return(sig);
1367 return(sig);
1372 * Buf is at least size maxlen+1
1374 void
1375 get_addr_data(ENVELOPE *env, IndexColType type, char *buf, size_t maxlen)
1377 ADDRESS *addr = NULL;
1378 ADDRESS *last_to = NULL;
1379 ADDRESS *first_addr = NULL, *second_addr = NULL;
1380 ADDRESS *third_addr = NULL, *fourth_addr = NULL;
1381 int cntaddr, l;
1382 size_t orig_maxlen;
1383 char *p;
1385 buf[0] = '\0';
1387 switch(type){
1388 case iFrom:
1389 addr = env ? env->from : NULL;
1390 break;
1392 case iTo:
1393 addr = env ? env->to : NULL;
1394 break;
1396 case iCc:
1397 addr = env ? env->cc : NULL;
1398 break;
1400 case iSender:
1401 addr = env ? env->sender : NULL;
1402 break;
1405 * Recips is To and Cc togeter. We hook the two adrlists together
1406 * temporarily.
1408 case iRecips:
1409 addr = env ? env->to : NULL;
1410 /* Find end of To list */
1411 for(last_to = addr; last_to && last_to->next; last_to = last_to->next)
1414 /* Make the end of To list point to cc list */
1415 if(last_to)
1416 last_to->next = (env ? env->cc : NULL);
1418 break;
1421 * Initials.
1423 case iInit:
1424 if(env && env->from && env->from->personal){
1425 char *name, *initials = NULL;
1427 name = (char *)rfc1522_decode_to_utf8((unsigned char *)tmp_20k_buf,
1428 SIZEOF_20KBUF, env->from->personal);
1429 if(name == env->from->personal){
1430 strncpy(tmp_20k_buf, name, SIZEOF_20KBUF-1);
1431 tmp_20k_buf[SIZEOF_20KBUF - 1] = '\0';
1432 name = tmp_20k_buf;
1435 if(name && *name){
1436 initials = reply_quote_initials(name);
1437 iutf8ncpy(buf, initials, maxlen);
1438 buf[maxlen] = '\0';
1442 return;
1444 default:
1445 break;
1448 orig_maxlen = maxlen;
1450 first_addr = addr;
1451 /* skip over rest of c-client group addr */
1452 if(first_addr && first_addr->mailbox && !first_addr->host){
1453 for(second_addr = first_addr->next;
1454 second_addr && second_addr->host;
1455 second_addr = second_addr->next)
1458 if(second_addr && !second_addr->host)
1459 second_addr = second_addr->next;
1461 else if(!(first_addr && first_addr->host && first_addr->host[0] == '.'))
1462 second_addr = first_addr ? first_addr->next : NULL;
1464 if(second_addr && second_addr->mailbox && !second_addr->host){
1465 for(third_addr = second_addr->next;
1466 third_addr && third_addr->host;
1467 third_addr = third_addr->next)
1470 if(third_addr && !third_addr->host)
1471 third_addr = third_addr->next;
1473 else if(!(second_addr && second_addr->host && second_addr->host[0] == '.'))
1474 third_addr = second_addr ? second_addr->next : NULL;
1476 if(third_addr && third_addr->mailbox && !third_addr->host){
1477 for(fourth_addr = third_addr->next;
1478 fourth_addr && fourth_addr->host;
1479 fourth_addr = fourth_addr->next)
1482 if(fourth_addr && !fourth_addr->host)
1483 fourth_addr = fourth_addr->next;
1485 else if(!(third_addr && third_addr->host && third_addr->host[0] == '.'))
1486 fourth_addr = third_addr ? third_addr->next : NULL;
1488 /* Just attempting to make a nice display */
1489 if(first_addr && ((first_addr->personal && first_addr->personal[0]) ||
1490 (first_addr->mailbox && first_addr->mailbox[0]))){
1491 if(second_addr){
1492 if((second_addr->personal && second_addr->personal[0]) ||
1493 (second_addr->mailbox && second_addr->mailbox[0])){
1494 if(third_addr){
1495 if((third_addr->personal && third_addr->personal[0]) ||
1496 (third_addr->mailbox && third_addr->mailbox[0])){
1497 if(fourth_addr)
1498 cntaddr = 4;
1499 else
1500 cntaddr = 3;
1502 else
1503 cntaddr = -1;
1505 else
1506 cntaddr = 2;
1508 else
1509 cntaddr = -1;
1511 else
1512 cntaddr = 1;
1514 else
1515 cntaddr = -1;
1517 p = buf;
1518 if(cntaddr == 1)
1519 a_little_addr_string(first_addr, p, maxlen);
1520 else if(cntaddr == 2){
1521 a_little_addr_string(first_addr, p, maxlen);
1522 maxlen -= (l=strlen(p));
1523 p += l;
1524 if(maxlen > 7){
1525 strncpy(p, " and ", maxlen);
1526 maxlen -= 5;
1527 p += 5;
1528 a_little_addr_string(second_addr, p, maxlen);
1531 else if(cntaddr == 3){
1532 a_little_addr_string(first_addr, p, maxlen);
1533 maxlen -= (l=strlen(p));
1534 p += l;
1535 if(maxlen > 7){
1536 strncpy(p, ", ", maxlen);
1537 maxlen -= 2;
1538 p += 2;
1539 a_little_addr_string(second_addr, p, maxlen);
1540 maxlen -= (l=strlen(p));
1541 p += l;
1542 if(maxlen > 7){
1543 strncpy(p, ", and ", maxlen);
1544 maxlen -= 6;
1545 p += 6;
1546 a_little_addr_string(third_addr, p, maxlen);
1550 else if(cntaddr > 3){
1551 a_little_addr_string(first_addr, p, maxlen);
1552 maxlen -= (l=strlen(p));
1553 p += l;
1554 if(maxlen > 7){
1555 strncpy(p, ", ", maxlen);
1556 maxlen -= 2;
1557 p += 2;
1558 a_little_addr_string(second_addr, p, maxlen);
1559 maxlen -= (l=strlen(p));
1560 p += l;
1561 if(maxlen > 7){
1562 strncpy(p, ", ", maxlen);
1563 maxlen -= 2;
1564 p += 2;
1565 a_little_addr_string(third_addr, p, maxlen);
1566 maxlen -= (l=strlen(p));
1567 p += l;
1568 if(maxlen >= 12)
1569 strncpy(p, ", and others", maxlen);
1570 else if(maxlen >= 3)
1571 strncpy(p, "...", maxlen);
1575 else if(addr){
1576 char *a_string;
1578 a_string = addr_list_string(addr, NULL, 0);
1579 iutf8ncpy(buf, a_string, maxlen);
1581 fs_give((void **)&a_string);
1584 if(last_to)
1585 last_to->next = NULL;
1587 buf[orig_maxlen] = '\0';
1592 * Buf is at least size maxlen+1
1594 void
1595 get_news_data(ENVELOPE *env, IndexColType type, char *buf, size_t maxlen)
1597 int cntnews = 0, orig_maxlen;
1598 char *news = NULL, *p, *q;
1600 switch(type){
1601 case iNews:
1602 case iNewsAndTo:
1603 case iToAndNews:
1604 case iNewsAndRecips:
1605 case iRecipsAndNews:
1606 news = env ? env->newsgroups : NULL;
1607 break;
1609 case iCurNews:
1610 if(ps_global->mail_stream && IS_NEWS(ps_global->mail_stream))
1611 news = ps_global->cur_folder;
1613 break;
1615 default:
1616 break;
1619 orig_maxlen = maxlen;
1621 if(news){
1622 q = news;
1623 while(isspace((unsigned char)*q))
1624 q++;
1626 if(*q)
1627 cntnews++;
1629 while((q = strindex(q, ',')) != NULL){
1630 q++;
1631 while(isspace((unsigned char)*q))
1632 q++;
1634 if(*q)
1635 cntnews++;
1636 else
1637 break;
1641 if(cntnews == 1){
1642 istrncpy(buf, news, maxlen);
1643 buf[maxlen] = '\0';
1644 removing_leading_and_trailing_white_space(buf);
1646 else if(cntnews == 2){
1647 p = buf;
1648 q = news;
1649 while(isspace((unsigned char)*q))
1650 q++;
1652 while(maxlen > 0 && *q && !isspace((unsigned char)*q) && *q != ','){
1653 *p++ = *q++;
1654 maxlen--;
1657 if(maxlen > 7){
1658 strncpy(p, " and ", maxlen);
1659 p += 5;
1660 maxlen -= 5;
1663 while(isspace((unsigned char)*q) || *q == ',')
1664 q++;
1666 while(maxlen > 0 && *q && !isspace((unsigned char)*q) && *q != ','){
1667 *p++ = *q++;
1668 maxlen--;
1671 *p = '\0';
1673 istrncpy(tmp_20k_buf, buf, 10000);
1674 strncpy(buf, tmp_20k_buf, orig_maxlen);
1676 else if(cntnews > 2){
1677 char b[100];
1679 p = buf;
1680 q = news;
1681 while(isspace((unsigned char)*q))
1682 q++;
1684 while(maxlen > 0 && *q && !isspace((unsigned char)*q) && *q != ','){
1685 *p++ = *q++;
1686 maxlen--;
1689 *p = '\0';
1690 snprintf(b, sizeof(b), " and %d other newsgroups", cntnews-1);
1691 b[sizeof(b)-1] = '\0';
1692 if(maxlen >= strlen(b))
1693 strncpy(p, b, maxlen);
1694 else if(maxlen >= 3)
1695 strncpy(p, "...", maxlen);
1697 buf[orig_maxlen] = '\0';
1699 istrncpy(tmp_20k_buf, buf, 10000);
1700 tmp_20k_buf[10000-1] = '\0';
1701 strncpy(buf, tmp_20k_buf, orig_maxlen);
1704 buf[orig_maxlen] = '\0';
1709 * Buf is at least size maxlen+1
1711 char *
1712 get_reply_data(ENVELOPE *env, ACTION_S *role, IndexColType type, char *buf, size_t maxlen)
1714 char *space = NULL;
1715 IndexColType addrtype;
1717 buf[0] = '\0';
1719 switch(type){
1720 case iRDate: case iSDate: case iSTime:
1721 case iS1Date: case iS2Date: case iS3Date: case iS4Date:
1722 case iSDateIso: case iSDateIsoS:
1723 case iSDateS1: case iSDateS2: case iSDateS3: case iSDateS4:
1724 case iSDateTime:
1725 case iSDateTimeIso: case iSDateTimeIsoS:
1726 case iSDateTimeS1: case iSDateTimeS2: case iSDateTimeS3: case iSDateTimeS4:
1727 case iSDateTime24:
1728 case iSDateTimeIso24: case iSDateTimeIsoS24:
1729 case iSDateTimeS124: case iSDateTimeS224: case iSDateTimeS324: case iSDateTimeS424:
1730 case iDateIso: case iDateIsoS: case iTime24: case iTime12:
1731 case iDay: case iDayOrdinal: case iDay2Digit:
1732 case iMonAbb: case iMonLong: case iMon: case iMon2Digit:
1733 case iYear: case iYear2Digit:
1734 case iDate: case iLDate:
1735 case iTimezone: case iDayOfWeekAbb: case iDayOfWeek:
1736 case iPrefDate: case iPrefTime: case iPrefDateTime:
1737 if(env && env->date && env->date[0] && maxlen >= 20)
1738 date_str((char *) env->date, type, 1, buf, maxlen+1, 0);
1740 break;
1742 case iCurDate:
1743 case iCurDateIso:
1744 case iCurDateIsoS:
1745 case iCurTime24:
1746 case iCurTime12:
1747 case iCurDay:
1748 case iCurDay2Digit:
1749 case iCurDayOfWeek:
1750 case iCurDayOfWeekAbb:
1751 case iCurMon:
1752 case iCurMon2Digit:
1753 case iCurMonLong:
1754 case iCurMonAbb:
1755 case iCurYear:
1756 case iCurYear2Digit:
1757 case iCurPrefDate:
1758 case iCurPrefDateTime:
1759 case iCurPrefTime:
1760 case iLstMon:
1761 case iLstMon2Digit:
1762 case iLstMonLong:
1763 case iLstMonAbb:
1764 case iLstMonYear:
1765 case iLstMonYear2Digit:
1766 case iLstYear:
1767 case iLstYear2Digit:
1768 if(maxlen >= 20)
1769 date_str(NULL, type, 1, buf, maxlen+1, 0);
1771 break;
1773 case iFrom:
1774 case iTo:
1775 case iCc:
1776 case iSender:
1777 case iRecips:
1778 case iInit:
1779 get_addr_data(env, type, buf, maxlen);
1780 break;
1782 case iRoleNick:
1783 if(role && role->nick){
1784 strncpy(buf, role->nick, maxlen);
1785 buf[maxlen] = '\0';
1787 break;
1789 case iNewLine:
1790 if(maxlen >= strlen(NEWLINE)){
1791 strncpy(buf, NEWLINE, maxlen);
1792 buf[maxlen] = '\0';
1794 break;
1796 case iAddress:
1797 case iMailbox:
1798 if(env && env->from && env->from->mailbox && env->from->mailbox[0] &&
1799 strlen(env->from->mailbox) <= maxlen){
1800 strncpy(buf, env->from->mailbox, maxlen);
1801 buf[maxlen] = '\0';
1802 if(type == iAddress &&
1803 env->from->host &&
1804 env->from->host[0] &&
1805 env->from->host[0] != '.' &&
1806 strlen(buf) + strlen(env->from->host) + 1 <= maxlen){
1807 strncat(buf, "@", maxlen+1-1-strlen(buf));
1808 buf[maxlen] = '\0';
1809 strncat(buf, env->from->host, maxlen+1-1-strlen(buf));
1810 buf[maxlen] = '\0';
1814 break;
1816 case iNews:
1817 case iCurNews:
1818 get_news_data(env, type, buf, maxlen);
1819 break;
1821 case iToAndNews:
1822 case iNewsAndTo:
1823 case iRecipsAndNews:
1824 case iNewsAndRecips:
1825 if(type == iToAndNews || type == iNewsAndTo)
1826 addrtype = iTo;
1827 else
1828 addrtype = iRecips;
1830 if(env && env->newsgroups){
1831 space = (char *)fs_get((maxlen+1) * sizeof(char));
1832 get_news_data(env, type, space, maxlen);
1835 get_addr_data(env, addrtype, buf, maxlen);
1837 if(space && *space && *buf){
1838 if(strlen(space) + strlen(buf) + 5 > maxlen){
1839 if(strlen(space) > maxlen/2)
1840 get_news_data(env, type, space, maxlen - strlen(buf) - 5);
1841 else
1842 get_addr_data(env, addrtype, buf, maxlen - strlen(space) - 5);
1845 if(type == iToAndNews || type == iRecipsAndNews)
1846 snprintf(tmp_20k_buf, SIZEOF_20KBUF, "%s and %s", buf, space);
1847 else
1848 snprintf(tmp_20k_buf, SIZEOF_20KBUF, "%s and %s", space, buf);
1850 tmp_20k_buf[SIZEOF_20KBUF-1] = '\0';
1852 strncpy(buf, tmp_20k_buf, maxlen);
1853 buf[maxlen] = '\0';
1855 else if(space && *space){
1856 strncpy(buf, space, maxlen);
1857 buf[maxlen] = '\0';
1860 if(space)
1861 fs_give((void **)&space);
1863 break;
1865 case iSubject:
1866 if(env && env->subject){
1867 size_t n, len;
1868 unsigned char *p, *tmp = NULL;
1870 if((n = 4*strlen(env->subject)) > SIZEOF_20KBUF-1){
1871 len = n+1;
1872 p = tmp = (unsigned char *)fs_get(len * sizeof(char));
1874 else{
1875 len = SIZEOF_20KBUF;
1876 p = (unsigned char *)tmp_20k_buf;
1879 istrncpy(buf, (char *)rfc1522_decode_to_utf8(p, len, env->subject), maxlen);
1881 buf[maxlen] = '\0';
1883 if(tmp)
1884 fs_give((void **)&tmp);
1887 break;
1889 case iMsgID:
1890 if(env && env->message_id){
1891 strncpy(buf, env->message_id, maxlen);
1892 buf[maxlen] = '\0';
1895 break;
1897 default:
1898 break;
1901 buf[maxlen] = '\0';
1902 return(buf);
1907 * reply_delimiter - output formatted reply delimiter for given envelope
1908 * with supplied character writing function.
1910 void
1911 reply_delimiter(ENVELOPE *env, ACTION_S *role, gf_io_t pc)
1913 #define MAX_DELIM 2000
1914 char buf[MAX_DELIM+1];
1915 char *p;
1916 char *filtered = NULL;
1917 int contains_newline_token = 0;
1920 if(!env)
1921 return;
1923 strncpy(buf, ps_global->VAR_REPLY_INTRO, MAX_DELIM);
1924 buf[MAX_DELIM] = '\0';
1925 /* preserve exact default behavior from before */
1926 if(!strcmp(buf, DEFAULT_REPLY_INTRO)){
1927 struct date d;
1928 int include_date;
1930 parse_date((char *) env->date, &d);
1931 include_date = !(d.day == -1 || d.month == -1 || d.year == -1);
1932 if(include_date){
1933 gf_puts("On ", pc); /* All delims have... */
1934 if(d.wkday != -1){ /* "On day, date month year" */
1935 gf_puts(day_abbrev(d.wkday), pc); /* in common */
1936 gf_puts(", ", pc);
1939 gf_puts(int2string(d.day), pc);
1940 (*pc)(' ');
1941 gf_puts(month_abbrev(d.month), pc);
1942 (*pc)(' ');
1943 gf_puts(int2string(d.year), pc);
1946 if(env->from
1947 && ((env->from->personal && env->from->personal[0])
1948 || (env->from->mailbox && env->from->mailbox[0]))){
1949 char buftmp[MAILTMPLEN];
1951 a_little_addr_string(env->from, buftmp, sizeof(buftmp)-1);
1952 if(include_date)
1953 gf_puts(", ", pc);
1955 gf_puts(buftmp, pc);
1956 gf_puts(" wrote:", pc);
1958 else{
1959 if(include_date)
1960 gf_puts(", it was written", pc);
1961 else
1962 gf_puts("It was written", pc);
1966 else{
1968 * This is here for backwards compatibility. There didn't used
1969 * to be a _NEWLINE_ token. The user would enter text that should
1970 * all fit on one line and then that was followed by two newlines.
1971 * Also, truncation occurs if it is long.
1972 * Now, if _NEWLINE_ is not in the text, same thing still works
1973 * the same. However, if _NEWLINE_ is in there, then all bets are
1974 * off and the user is on his or her own. No automatic newlines
1975 * are added, only those that come from the tokens. No truncation
1976 * is done, the user is trusted to get it right. Newlines may be
1977 * embedded so that the leadin is multi-line.
1979 contains_newline_token = (strstr(buf, "_NEWLINE_") != NULL);
1980 filtered = detoken_src(buf, FOR_REPLY_INTRO, env, role,
1981 NULL, NULL);
1983 /* try to truncate if too long */
1984 if(!contains_newline_token && filtered && utf8_width(filtered) > 80){
1985 int ended_with_colon = 0;
1986 int ended_with_quote = 0;
1987 int ended_with_quote_colon = 0;
1988 int l;
1990 l = strlen(filtered);
1992 if(filtered[l-1] == ':'){
1993 ended_with_colon = ':';
1994 if(filtered[l-2] == QUOTE || filtered[l-2] == '\'')
1995 ended_with_quote_colon = filtered[l-2];
1997 else if(filtered[l-1] == QUOTE || filtered[l-1] == '\'')
1998 ended_with_quote = filtered[l-1];
2000 /* try to find space to break at */
2001 for(p = &filtered[75]; p > &filtered[60] &&
2002 !isspace((unsigned char)*p); p--)
2005 if(!isspace((unsigned char)*p))
2006 p = &filtered[75];
2008 *p++ = '.';
2009 *p++ = '.';
2010 *p++ = '.';
2011 if(ended_with_quote_colon){
2012 *p++ = ended_with_quote_colon;
2013 *p++ = ':';
2015 else if(ended_with_colon)
2016 *p++ = ended_with_colon;
2017 else if(ended_with_quote)
2018 *p++ = ended_with_quote;
2020 *p = '\0';
2023 if(filtered && *filtered)
2024 gf_puts(filtered, pc);
2027 /* and end with two newlines unless no leadin at all */
2028 if(!contains_newline_token){
2029 if(!strcmp(buf, DEFAULT_REPLY_INTRO) || (filtered && *filtered)){
2030 gf_puts(NEWLINE, pc);
2031 gf_puts(NEWLINE, pc);
2035 if(filtered)
2036 fs_give((void **)&filtered);
2040 void
2041 free_redraft_pos(REDRAFT_POS_S **redraft_pos)
2043 if(redraft_pos && *redraft_pos){
2044 if((*redraft_pos)->hdrname)
2045 fs_give((void **)&(*redraft_pos)->hdrname);
2047 fs_give((void **)redraft_pos);
2052 /*----------------------------------------------------------------------
2053 Build the body for the message number/part being forwarded as ATTACHMENT
2055 Args:
2057 Result: PARTS suitably attached to body
2059 ----------------------------------------------------------------------*/
2061 forward_mime_msg(MAILSTREAM *stream, long int msgno, char *section, ENVELOPE *env, struct mail_body_part **partp, void *msgtext)
2063 char *tmp_text;
2064 unsigned long len;
2065 BODY *b;
2067 *partp = mail_newbody_part();
2068 b = &(*partp)->body;
2069 b->type = TYPEMESSAGE;
2070 b->id = generate_message_id();
2071 b->description = cpystr("Forwarded Message");
2072 b->nested.msg = mail_newmsg();
2073 b->disposition.type = cpystr("inline");
2075 /*---- Package each message in a storage object ----*/
2076 if((b->contents.text.data = (void *) so_get(PART_SO_TYPE,NULL,EDIT_ACCESS))
2077 && (tmp_text = mail_fetch_header(stream,msgno,section,NIL,NIL,FT_PEEK))
2078 && *tmp_text){
2079 so_puts((STORE_S *) b->contents.text.data, tmp_text);
2081 b->size.bytes = strlen(tmp_text);
2082 so_puts((STORE_S *) b->contents.text.data, "\015\012");
2083 if((tmp_text = pine_mail_fetch_text (stream,msgno,section,&len,NIL)) != NULL){
2084 so_nputs((STORE_S *)b->contents.text.data,tmp_text,(long) len);
2085 b->size.bytes += len;
2086 return(1);
2090 return(0);
2095 * forward_delimiter - return delimiter for forwarded text
2097 void
2098 forward_delimiter(gf_io_t pc)
2100 gf_puts(NEWLINE, pc);
2101 /* TRANSLATORS: When a message is forwarded by the user this is the
2102 text that shows where the forwarded part of the message begins. */
2103 gf_puts(_("---------- Forwarded message ----------"), pc);
2104 gf_puts(NEWLINE, pc);
2108 /*----------------------------------------------------------------------
2109 Wrapper for header formatting tool
2111 Args: stream --
2112 msgno --
2113 env --
2114 pc --
2115 prefix --
2117 Result: header suitable for reply/forward text written using "pc"
2119 ----------------------------------------------------------------------*/
2120 void
2121 reply_forward_header(MAILSTREAM *stream, long int msgno, char *part, ENVELOPE *env,
2122 gf_io_t pc, char *prefix)
2124 int rv;
2125 HEADER_S h;
2126 char **list, **new_list = NULL;
2128 list = ps_global->VAR_VIEW_HEADERS;
2131 * If VIEW_HEADERS is set, we should remove BCC from the list so that
2132 * the user doesn't inadvertently forward the BCC header.
2134 if(list && list[0]){
2135 int i, cnt = 0;
2136 char **p;
2138 while(list[cnt++])
2141 p = new_list = (char **) fs_get((cnt+1) * sizeof(char *));
2143 for(i=0; list[i]; i++)
2144 if(strucmp(list[i], "bcc"))
2145 *p++ = cpystr(list[i]);
2147 *p = NULL;
2149 if(new_list && new_list[0])
2150 list = new_list;
2154 HD_INIT(&h, list, ps_global->view_all_except, FE_DEFAULT & ~FE_BCC);
2155 if((rv = format_header(stream, msgno, part, env, &h,
2156 prefix, NULL, FM_NOINDENT, NULL, pc)) != 0){
2157 if(rv == 1)
2158 gf_puts(" [Error fetching message header data]", pc);
2160 else
2161 gf_puts(NEWLINE, pc); /* write header delimiter */
2163 if(new_list)
2164 free_list_array(&new_list);
2168 /*----------------------------------------------------------------------
2169 Build the subject for the message number being forwarded
2171 Args: pine_state -- The usual pine structure
2172 msgno -- The message number to build subject for
2174 Result: malloc'd string containing new subject or NULL on error
2176 ----------------------------------------------------------------------*/
2177 char *
2178 forward_subject(ENVELOPE *env, int flags)
2180 size_t l;
2181 char *p, buftmp[MAILTMPLEN];
2183 if(!env)
2184 return(NULL);
2186 dprint((9, "checking subject: \"%s\"\n",
2187 env->subject ? env->subject : "NULL"));
2189 if(env->subject && env->subject[0]){ /* add (fwd)? */
2190 snprintf(buftmp, sizeof(buftmp), "%s", env->subject);
2191 buftmp[sizeof(buftmp)-1] = '\0';
2192 /* decode any 8bit (copy to the temp buffer if decoding doesn't) */
2193 if(rfc1522_decode_to_utf8((unsigned char *) tmp_20k_buf,
2194 SIZEOF_20KBUF, buftmp) == (unsigned char *) buftmp)
2195 strncpy(tmp_20k_buf, buftmp, SIZEOF_20KBUF);
2197 tmp_20k_buf[SIZEOF_20KBUF-1] = '\0';
2199 removing_trailing_white_space(tmp_20k_buf);
2200 if((l = strlen(tmp_20k_buf)) < 1000 &&
2201 (l < 5 || strcmp(tmp_20k_buf+l-5,"(fwd)"))){
2202 snprintf(tmp_20k_buf+2000, SIZEOF_20KBUF-2000, "%s (fwd)", tmp_20k_buf);
2203 tmp_20k_buf[SIZEOF_20KBUF-2000-1] = '\0';
2204 strncpy(tmp_20k_buf, tmp_20k_buf+2000, SIZEOF_20KBUF);
2205 tmp_20k_buf[SIZEOF_20KBUF-1] = '\0';
2209 * HACK: composer can't handle embedded double quotes in attachment
2210 * comments so we substitute two single quotes.
2212 if(flags & FS_CONVERT_QUOTES)
2213 while((p = strchr(tmp_20k_buf, QUOTE)) != NULL)
2214 (void)rplstr(p, SIZEOF_20KBUF-(p-tmp_20k_buf), 1, "''");
2216 return(cpystr(tmp_20k_buf));
2220 return(cpystr("Forwarded mail...."));
2224 /*----------------------------------------------------------------------
2225 Build the body for the message number/part being forwarded
2227 Args:
2229 Result: BODY structure suitable for sending
2231 ----------------------------------------------------------------------*/
2232 BODY *
2233 forward_body(MAILSTREAM *stream, ENVELOPE *env, struct mail_bodystruct *orig_body,
2234 long int msgno, char *sect_prefix, void *msgtext, int flags)
2236 BODY *body = NULL, *text_body, *tmp_body;
2237 PART *part;
2238 gf_io_t pc;
2239 char *tmp_text, *section, sect_buf[256];
2240 int forward_raw_body = 0;
2243 * Check to see if messages got expunged out from underneath us. This
2244 * could have happened during the prompt to the user asking whether to
2245 * include the message as an attachment. Either the message is gone or
2246 * it might be at a different sequence number. We'd better bail.
2248 if(ps_global->full_header == 2
2249 && F_ON(F_ENABLE_FULL_HDR_AND_TEXT, ps_global))
2250 forward_raw_body = 1;
2251 if(sp_expunge_count(stream))
2252 return(NULL);
2254 if(sect_prefix && forward_raw_body == 0)
2255 snprintf(section = sect_buf, sizeof(sect_buf), "%s.1", sect_prefix);
2256 else if(sect_prefix && forward_raw_body)
2257 section = sect_prefix;
2258 else if(!sect_prefix && forward_raw_body)
2259 section = NULL;
2260 else
2261 section = "1";
2263 sect_buf[sizeof(sect_buf)-1] = '\0';
2265 gf_set_so_writec(&pc, (STORE_S *) msgtext);
2266 if(!orig_body || orig_body->type == TYPETEXT || forward_raw_body) {
2267 char *charset = NULL;
2269 /*---- Message has a single text part -----*/
2270 body = mail_newbody();
2271 body->type = TYPETEXT;
2272 body->contents.text.data = msgtext;
2273 if(orig_body
2274 && (charset = parameter_val(orig_body->parameter, "charset")))
2275 set_parameter(&body->parameter, "charset", charset);
2277 if(charset)
2278 fs_give((void **) &charset);
2280 if(!(flags & FWD_ANON)){
2281 forward_delimiter(pc);
2282 reply_forward_header(stream, msgno, sect_prefix, env, pc, "");
2285 if(!get_body_part_text(stream, forward_raw_body ? NULL : orig_body,
2286 msgno, section, 0L, pc, NULL, NULL, GBPT_NONE)){
2287 mail_free_body(&body);
2288 return(NULL);
2291 else if(orig_body->type == TYPEMULTIPART) {
2292 if(orig_body->subtype
2293 && ((!strucmp(orig_body->subtype, "signed") && orig_body->nested.part)
2294 #ifdef SMIME
2295 || (!strucmp(orig_body->subtype, "mixed")
2296 && orig_body->nested.part
2297 && orig_body->nested.part->body.type == TYPEMULTIPART
2298 && orig_body->nested.part->body.subtype
2299 && (!strucmp(orig_body->nested.part->body.subtype, OUR_PKCS7_ENCLOSURE_SUBTYPE)
2300 || !strucmp(orig_body->nested.part->body.subtype, "signed")))
2301 || !strucmp(orig_body->subtype, OUR_PKCS7_ENCLOSURE_SUBTYPE)
2302 #endif /* SMIME */
2304 /* only operate on the signed data (not the signature) */
2305 body = forward_body(stream, env, &orig_body->nested.part->body,
2306 msgno,
2307 orig_body->nested.part->body.type == TYPEMULTIPART
2308 ? section : sect_prefix, msgtext, flags);
2310 /*---- Message is multipart ----*/
2311 else if(!(orig_body->subtype && !strucmp(orig_body->subtype,
2312 "alternative")
2313 && (body = forward_multi_alt(stream, env, orig_body, msgno,
2314 sect_prefix, msgtext,
2315 pc, flags)))){
2316 /*--- Copy the body and entire structure ---*/
2317 body = copy_body(NULL, orig_body);
2320 * whatever subtype it is, demote it
2321 * to plain old MIXED.
2323 if(body->subtype)
2324 fs_give((void **) &body->subtype);
2326 body->subtype = cpystr("Mixed");
2328 /*--- The text part of the message ---*/
2329 if(!body->nested.part){
2330 q_status_message(SM_ORDER | SM_DING, 3, 6,
2331 "Error referencing body part 1");
2332 mail_free_body(&body);
2334 else if(body->nested.part->body.type == TYPETEXT) {
2335 char *new_charset = NULL;
2337 /*--- The first part is text ----*/
2338 text_body = &body->nested.part->body;
2339 text_body->contents.text.data = msgtext;
2340 if(text_body->subtype && strucmp(text_body->subtype, "Plain")){
2341 /* this text is going to the composer, it should be Plain */
2342 fs_give((void **)&text_body->subtype);
2343 text_body->subtype = cpystr("PLAIN");
2345 if(!(flags & FWD_ANON)){
2346 forward_delimiter(pc);
2347 reply_forward_header(stream, msgno,
2348 sect_prefix, env, pc, "");
2351 if(!(get_body_part_text(stream, &orig_body->nested.part->body,
2352 msgno, section, 0L, pc,
2353 NULL, &new_charset, GBPT_NONE)
2354 && fetch_contents(stream, msgno, sect_prefix, body)))
2355 mail_free_body(&body);
2356 else if(new_charset)
2357 set_parameter(&text_body->parameter, "charset", new_charset);
2359 /* BUG: ? matter that we're not setting body.size.bytes */
2361 else if(body->nested.part->body.type == TYPEMULTIPART
2362 && body->nested.part->body.subtype
2363 && !strucmp(body->nested.part->body.subtype, "alternative")
2364 && (tmp_body = forward_multi_alt(stream, env,
2365 &body->nested.part->body,
2366 msgno, sect_prefix,
2367 msgtext, pc,
2368 flags | FWD_NESTED))){
2369 /* for the forward_multi_alt call above, we want to pass
2370 * sect_prefix instead of section so we can obtain the header.
2371 * Set the FWD_NESTED flag so we fetch the right body_part.
2373 int partnum;
2375 part = body->nested.part->next;
2376 body->nested.part->next = NULL;
2377 mail_free_body_part(&body->nested.part);
2378 body->nested.part = mail_newbody_part();
2379 body->nested.part->body = *tmp_body;
2380 body->nested.part->next = part;
2382 for(partnum = 2; part != NULL; part = part->next){
2383 snprintf(sect_buf, sizeof(sect_buf), "%s%s%d",
2384 sect_prefix ? sect_prefix : "",
2385 sect_prefix ? "." : "", partnum++);
2386 sect_buf[sizeof(sect_buf)-1] = '\0';
2388 if(!fetch_contents(stream, msgno, sect_buf, &part->body)){
2389 mail_free_body(&body);
2390 break;
2394 else {
2395 if(fetch_contents(stream, msgno, sect_prefix, body)){
2396 /*--- Create a new blank text part ---*/
2397 part = mail_newbody_part();
2398 part->next = body->nested.part;
2399 body->nested.part = part;
2400 part->body.contents.text.data = msgtext;
2402 else
2403 mail_free_body(&body);
2407 else {
2408 /*---- A single part message, not of type text ----*/
2409 body = mail_newbody();
2410 body->type = TYPEMULTIPART;
2411 part = mail_newbody_part();
2412 body->nested.part = part;
2414 /*--- The first part, a blank text part to be edited ---*/
2415 part->body.type = TYPETEXT;
2416 part->body.contents.text.data = msgtext;
2418 /*--- The second part, what ever it is ---*/
2419 part->next = mail_newbody_part();
2420 part = part->next;
2421 part->body.id = generate_message_id();
2422 copy_body(&(part->body), orig_body);
2425 * the idea here is to fetch part into storage object
2427 if((part->body.contents.text.data = (void *) so_get(PART_SO_TYPE, NULL,
2428 EDIT_ACCESS)) != NULL){
2429 if((tmp_text = pine_mail_fetch_body(stream, msgno, section,
2430 &part->body.size.bytes, NIL)) != NULL)
2431 so_nputs((STORE_S *)part->body.contents.text.data, tmp_text,
2432 part->body.size.bytes);
2433 else
2434 mail_free_body(&body);
2436 else
2437 mail_free_body(&body);
2440 gf_clear_so_writec((STORE_S *) msgtext);
2442 return(body);
2448 * bounce_msg_body - build body from specified message suitable
2449 * for sending as bounced message
2451 char *
2452 bounce_msg_body(MAILSTREAM *stream,
2453 long int rawno,
2454 char *part,
2455 char **to,
2456 char *subject,
2457 ENVELOPE **outgoingp,
2458 BODY **bodyp,
2459 int *seenp)
2461 char *h, *p, *errstr = NULL;
2462 int i;
2463 STORE_S *msgtext;
2464 gf_io_t pc;
2466 *outgoingp = mail_newenvelope();
2467 (*outgoingp)->message_id = generate_message_id();
2468 (*outgoingp)->subject = cpystr(subject ? subject : "Resent mail....");
2471 * Fill in destination if we were given one. If so, note that we
2472 * call p_s_s() below such that it won't prompt...
2474 if(to && *to){
2475 static char *fakedomain = "@";
2476 char *tmp_a_string;
2478 /* rfc822_parse_adrlist feels free to destroy input so copy */
2479 tmp_a_string = cpystr(*to);
2480 rfc822_parse_adrlist(&(*outgoingp)->to, tmp_a_string,
2481 (F_ON(F_COMPOSE_REJECTS_UNQUAL, ps_global))
2482 ? fakedomain : ps_global->maildomain);
2483 fs_give((void **) &tmp_a_string);
2486 /* build remail'd header */
2487 if((h = mail_fetch_header(stream, rawno, part, NULL, 0, FT_PEEK)) != NULL){
2488 for(p = h, i = 0; (p = strchr(p, ':')) != NULL; p++)
2489 i++;
2491 /* allocate it */
2492 (*outgoingp)->remail = (char *) fs_get(strlen(h) + (2 * i) + 1);
2495 * copy it, "X-"ing out transport headers bothersome to
2496 * software but potentially useful to the human recipient...
2498 p = (*outgoingp)->remail;
2499 bounce_mask_header(&p, h);
2501 if(*h == '\015' && *(h+1) == '\012'){
2502 *p++ = *h++; /* copy CR LF */
2503 *p++ = *h++;
2504 bounce_mask_header(&p, h);
2506 while((*p++ = *h++) != '\0');
2508 /* BUG: else complain? */
2510 /* NOT bound for the composer, so no need for PicoText */
2511 if(!(msgtext = so_get(CharStar, NULL, EDIT_ACCESS))){
2512 mail_free_envelope(outgoingp);
2513 return(_("Error allocating message text"));
2516 /* mark object for special handling */
2517 so_attr(msgtext, "rawbody", "1");
2520 * Build a fake body description. It's ignored by pine_rfc822_header,
2521 * but we need to set it to something that makes set_mime_types
2522 * not sniff it and pine_rfc822_output_body not re-encode it.
2523 * Setting the encoding to (ENCMAX + 1) will work and shouldn't cause
2524 * problems unless something tries to access body_encodings[] using
2525 * it without proper precautions. We don't want to use ENCOTHER
2526 * cause that tells set_mime_types to sniff it, and we don't want to
2527 * use ENC8BIT since that tells pine_rfc822_output_body to qp-encode
2528 * it. When there's time, it'd be nice to clean this interaction
2529 * up...
2531 *bodyp = mail_newbody();
2532 (*bodyp)->type = TYPETEXT;
2533 (*bodyp)->encoding = ENCMAX + 1;
2534 (*bodyp)->subtype = cpystr("Plain");
2535 (*bodyp)->contents.text.data = (void *) msgtext;
2536 gf_set_so_writec(&pc, msgtext);
2538 if(seenp && rawno > 0L && stream && rawno <= stream->nmsgs){
2539 MESSAGECACHE *mc;
2541 if((mc = mail_elt(stream, rawno)) != NULL)
2542 *seenp = mc->seen;
2545 /* pass NULL body to force mail_fetchtext */
2546 if(!get_body_part_text(stream, NULL, rawno, part, 0L, pc, NULL, NULL, GBPT_NONE))
2547 errstr = _("Error fetching message contents. Can't Bounce message");
2549 gf_clear_so_writec(msgtext);
2551 return(errstr);
2556 /*----------------------------------------------------------------------
2557 Mask off any header entries we don't want xport software to see
2559 Args: d -- destination string pointer pointer
2560 s -- source string pointer pointer
2562 Postfix uses Delivered-To to detect loops.
2563 Received line counting is also used to detect loops in places.
2565 ----*/
2566 void
2567 bounce_mask_header(char **d, char *s)
2569 if(((*s == 'R' || *s == 'r')
2570 && (!struncmp(s+1, "esent-", 6) || !struncmp(s+1, "eceived:", 8)
2571 || !struncmp(s+1, "eturn-Path", 10)))
2572 || !struncmp(s, "Delivered-To:", 13)){
2573 *(*d)++ = 'X'; /* write mask */
2574 *(*d)++ = '-';
2579 /*----------------------------------------------------------------------
2580 Fetch and format text for forwarding
2582 Args: stream -- Mail stream to fetch text from
2583 body -- Body structure of message being forwarded
2584 msg_no -- Message number of text for forward
2585 part_no -- Part number of text to forward
2586 partial -- If this is > 0 a partial fetch will be done and it will
2587 be done using FT_PEEK so the message will remain unseen.
2588 pc -- Function to write to
2589 prefix -- Prefix for each line
2590 ret_charset -- If we translate to another charset return that
2591 new charset here
2593 Returns: true if OK, false if problem occured while filtering
2595 If the text is richtext, it will be converted to plain text, since there's
2596 no rich text editing capabilities in Pine (yet).
2598 It's up to calling routines to plug in signature appropriately
2600 As with all internal text, NVT end-of-line conventions are observed.
2601 DOESN'T sanity check the prefix given!!!
2602 ----*/
2604 get_body_part_text(MAILSTREAM *stream, struct mail_bodystruct *body,
2605 long int msg_no, char *part_no, long partial, gf_io_t pc,
2606 char *prefix, char **ret_charset, unsigned flags)
2608 int we_cancel = 0, dashdata, wrapflags = GFW_FORCOMPOSE, flow_res = 0;
2609 FILTLIST_S filters[12];
2610 long len;
2611 char *err, *charset, *prefix_p = NULL;
2612 int filtcnt = 0;
2613 char *free_this = NULL;
2614 DELQ_S dq;
2616 memset(filters, 0, sizeof(filters));
2617 if(ret_charset)
2618 *ret_charset = NULL;
2620 if(!pc_is_picotext(pc))
2621 we_cancel = busy_cue(NULL, NULL, 1);
2623 /* if null body, we must be talking to a non-IMAP2bis server.
2624 * No MIME parsing provided, so we just grab the message text...
2626 if(body == NULL){
2627 char *text, *decode_error;
2628 gf_io_t gc;
2629 SourceType src = CharStar;
2630 int rv = 0;
2632 (void) pine_mail_fetchstructure(stream, msg_no, NULL);
2634 if((text = pine_mail_fetch_text(stream, msg_no, part_no, NULL, 0)) != NULL){
2635 gf_set_readc(&gc, text, (unsigned long)strlen(text), src, 0);
2637 gf_filter_init(); /* no filters needed */
2638 if(prefix)
2639 gf_link_filter(gf_prefix, gf_prefix_opt(prefix));
2640 if((decode_error = gf_pipe(gc, pc)) != NULL){
2641 snprintf(tmp_20k_buf, SIZEOF_20KBUF, "%s%s [Formatting error: %s]%s",
2642 NEWLINE, NEWLINE,
2643 decode_error, NEWLINE);
2644 tmp_20k_buf[SIZEOF_20KBUF-1] = '\0';
2645 gf_puts(tmp_20k_buf, pc);
2646 rv++;
2649 else{
2650 gf_puts(NEWLINE, pc);
2651 gf_puts(_(" [ERROR fetching text of message]"), pc);
2652 gf_puts(NEWLINE, pc);
2653 gf_puts(NEWLINE, pc);
2654 rv++;
2657 if(we_cancel)
2658 cancel_busy_cue(-1);
2660 return(rv == 0);
2663 charset = parameter_val(body->parameter, "charset");
2665 if(charset && strucmp(charset, "utf-8") && strucmp(charset, "us-ascii")){
2666 if(ret_charset)
2667 *ret_charset = "UTF-8";
2671 * just use detach, but add an auxiliary filter to insert prefix,
2672 * and, perhaps, digest richtext
2674 if(ps_global->full_header != 2
2675 && !ps_global->postpone_no_flow
2676 && (!body->subtype || !strucmp(body->subtype, "plain"))){
2677 char *parmval;
2679 flow_res = (F_OFF(F_QUELL_FLOWED_TEXT, ps_global)
2680 && F_OFF(F_STRIP_WS_BEFORE_SEND, ps_global)
2681 && (!prefix || (strucmp(prefix,"> ") == 0)
2682 || strucmp(prefix, ">") == 0));
2683 if((parmval = parameter_val(body->parameter,
2684 "format")) != NULL){
2685 if(!strucmp(parmval, "flowed")){
2686 wrapflags |= GFW_FLOWED;
2688 fs_give((void **) &parmval);
2689 if((parmval = parameter_val(body->parameter, "delsp")) != NULL){
2690 if(!strucmp(parmval, "yes")){
2691 filters[filtcnt++].filter = gf_preflow;
2692 wrapflags |= GFW_DELSP;
2695 fs_give((void **) &parmval);
2699 * if there's no prefix we're forwarding text
2700 * otherwise it's reply text. unless the user's
2701 * tied our hands, alter the prefix to continue flowed
2702 * formatting...
2704 if(flow_res)
2705 wrapflags |= GFW_FLOW_RESULT;
2707 filters[filtcnt].filter = gf_wrap;
2709 * The 80 will cause longer lines than what is likely
2710 * set by composer_fillcol, so we'll have longer
2711 * quoted and forwarded lines than the lines we type.
2712 * We're fine with that since the alternative is the
2713 * possible wrapping of lines we shouldn't have, which
2714 * is mitigated by this higher 80 limit.
2716 * If we were to go back to using composer_fillcol,
2717 * the correct value is composer_fillcol + 1, pine
2718 * is off-by-one from pico.
2720 filters[filtcnt++].data = gf_wrap_filter_opt(
2721 MAX(MIN(ps_global->ttyo->screen_cols
2722 - (prefix ? strlen(prefix) : 0),
2723 80 - (prefix ? strlen(prefix) : 0)),
2724 30), /* doesn't have to be 30 */
2725 990, /* 998 is the SMTP limit */
2726 NULL, 0, wrapflags);
2731 * if not flowed, remove trailing whitespace to reduce
2732 * confusion, since we're sending out as flowed if we
2733 * can. At some future point, we might try
2734 * plugging in a user-option-controlled heuristic
2735 * flowing filter
2737 * We also want to fold "> " quotes so we get the
2738 * attributions correct.
2740 if(flow_res && prefix && !strucmp(prefix, "> "))
2741 *(prefix_p = prefix + 1) = '\0';
2743 if(!(wrapflags & GFW_FLOWED)
2744 && flow_res){
2745 filters[filtcnt].filter = gf_line_test;
2746 filters[filtcnt++].data = gf_line_test_opt(twsp_strip, NULL);
2748 filters[filtcnt].filter = gf_line_test;
2749 filters[filtcnt++].data = gf_line_test_opt(quote_fold, NULL);
2752 else if(body->subtype){
2753 int plain_opt = 1;
2755 if(strucmp(body->subtype,"richtext") == 0){
2756 filters[filtcnt].filter = gf_rich2plain;
2757 filters[filtcnt++].data = gf_rich2plain_opt(&plain_opt);
2759 else if(strucmp(body->subtype,"enriched") == 0){
2760 filters[filtcnt].filter = gf_enriched2plain;
2761 filters[filtcnt++].data = gf_enriched2plain_opt(&plain_opt);
2763 else if(strucmp(body->subtype,"html") == 0){
2764 if((flags & GBPT_HTML_OK) != GBPT_HTML_OK){
2765 filters[filtcnt].filter = gf_html2plain;
2766 filters[filtcnt++].data = gf_html2plain_opt(NULL,
2767 ps_global->ttyo->screen_cols,
2768 non_messageview_margin(),
2769 NULL, NULL, GFHP_STRIPPED);
2774 if(prefix){
2775 if(ps_global->full_header != 2
2776 && (F_ON(F_ENABLE_SIGDASHES, ps_global)
2777 || F_ON(F_ENABLE_STRIP_SIGDASHES, ps_global))){
2778 dashdata = 0;
2779 filters[filtcnt].filter = gf_line_test;
2780 filters[filtcnt++].data = gf_line_test_opt(sigdash_strip, &dashdata);
2783 filters[filtcnt].filter = gf_prefix;
2784 filters[filtcnt++].data = gf_prefix_opt(prefix);
2786 if(wrapflags & GFW_FLOWED || flow_res){
2787 filters[filtcnt].filter = gf_line_test;
2788 filters[filtcnt++].data = gf_line_test_opt(post_quote_space, NULL);
2792 if(flags & GBPT_DELQUOTES){
2793 memset(&dq, 0, sizeof(dq));
2794 dq.lines = Q_DEL_ALL;
2795 dq.is_flowed = 0;
2796 dq.indent_length = 0;
2797 dq.saved_line = &free_this;
2798 dq.handlesp = NULL;
2799 dq.do_color = 0;
2800 dq.delete_all = 1;
2802 filters[filtcnt].filter = gf_line_test;
2803 filters[filtcnt++].data = gf_line_test_opt(delete_quotes, &dq);
2806 err = detach(stream, msg_no, part_no, partial, &len, pc,
2807 filters[0].filter ? filters : NULL,
2808 ((flags & GBPT_PEEK) ? FT_PEEK : 0)
2809 | ((flags & GBPT_NOINTR) ? DT_NOINTR : 0));
2811 if(free_this)
2812 fs_give((void **) &free_this);
2814 if(prefix_p)
2815 *prefix_p = ' ';
2817 if (err != (char *) NULL)
2818 /* TRANSLATORS: The first arg is error text, the %ld is the message number */
2819 q_status_message2(SM_ORDER, 3, 4, "%s: message number %ld",
2820 err, (void *) msg_no);
2822 if(we_cancel)
2823 cancel_busy_cue(-1);
2825 return((int) len);
2830 quote_fold(long int linenum, char *line, LT_INS_S **ins, void *local)
2832 char *p;
2834 if(*line == '>'){
2835 for(p = line; *p; p++){
2836 if(isspace((unsigned char) *p)){
2837 if(*(p+1) == '>')
2838 ins = gf_line_test_new_ins(ins, p, "", -1);
2840 else if(*p != '>')
2841 break;
2845 return(0);
2850 twsp_strip(long int linenum, char *line, LT_INS_S **ins, void *local)
2852 char *p, *ws = NULL;
2854 for(p = line; *p; p++){
2855 /* don't strip trailing space on signature line */
2856 if(*line == '-' && *(line+1) == '-' && *(line+2) == ' ' && !*(line+3))
2857 break;
2859 if(isspace((unsigned char) *p)){
2860 if(!ws)
2861 ws = p;
2863 else
2864 ws = NULL;
2867 if(ws)
2868 ins = gf_line_test_new_ins(ins, ws, "", -(p - ws));
2870 return(0);
2874 post_quote_space(long int linenum, char *line, LT_INS_S **ins, void *local)
2876 char *p;
2878 for(p = line; *p; p++)
2879 if(*p != '>'){
2880 if(p != line && *p != ' ')
2881 ins = gf_line_test_new_ins(ins, p, " ", 1);
2883 break;
2886 return(0);
2891 sigdash_strip(long int linenum, char *line, LT_INS_S **ins, void *local)
2893 if(*((int *)local)
2894 || (*line == '-' && *(line+1) == '-'
2895 && *(line+2) == ' ' && !*(line+3))){
2896 *((int *) local) = 1;
2897 return(2); /* skip this line! */
2900 return(0);
2904 /*----------------------------------------------------------------------
2905 return the c-client reference name for the given end_body part
2906 ----*/
2907 char *
2908 body_partno(MAILSTREAM *stream, long int msgno, struct mail_bodystruct *end_body)
2910 BODY *body;
2912 (void) pine_mail_fetchstructure(stream, msgno, &body);
2913 return(partno(body, end_body));
2917 /*----------------------------------------------------------------------
2918 return the c-client reference name for the given end_body part
2919 ----*/
2920 char *
2921 partno(struct mail_bodystruct *body, struct mail_bodystruct *end_body)
2923 #define PARTTMPLEN 64
2924 PART *part;
2925 int num = 0;
2926 char tmp[PARTTMPLEN], *p = NULL;
2928 if(body && body->type == TYPEMULTIPART) {
2929 part = body->nested.part; /* first body part */
2931 do { /* for each part */
2932 num++; /* PARTTMPLEN = sizeof(tmp) */
2933 if(&part->body == end_body || (p = partno(&part->body, end_body))){
2934 snprintf(tmp, sizeof(tmp), "%d%s%.*s", num, (p) ? "." : "",
2935 PARTTMPLEN-10, (p) ? p : "");
2936 tmp[sizeof(tmp)-1] = '\0';
2937 if(p)
2938 fs_give((void **)&p);
2940 return(cpystr(tmp));
2942 } while ((part = part->next) != NULL); /* until done */
2944 return(NULL);
2946 else if(body && body->type == TYPEMESSAGE && body->subtype
2947 && !strucmp(body->subtype, "rfc822")){
2948 return(partno(body->nested.msg->body, end_body));
2951 return((body == end_body) ? cpystr("1") : NULL);
2955 /*----------------------------------------------------------------------
2956 Fill in the contents of each body part
2958 Args: stream -- Stream the message is on
2959 msgno -- Message number the body structure is for
2960 section -- body section associated with body pointer
2961 body -- Body pointer to fill in
2963 Result: 1 if all went OK, 0 if there was a problem
2965 This function copies the contents from an original message/body to
2966 a new message/body. It recurses down all multipart levels.
2968 If one or more part (but not all) can't be fetched, a status message
2969 will be queued.
2970 ----*/
2972 fetch_contents(MAILSTREAM *stream, long int msgno, char *section, struct mail_bodystruct *body)
2974 char *tp;
2975 int got_one = 0;
2977 if(!body->id)
2978 body->id = generate_message_id();
2980 if(body->type == TYPEMULTIPART){
2981 char subsection[256], *subp;
2982 int n, last_one = 10; /* remember worst case */
2983 PART *part = body->nested.part;
2985 if(!(part = body->nested.part))
2986 return(0);
2988 subp = subsection;
2989 if(section && *section){
2990 for(n = 0;
2991 n < sizeof(subsection)-20 && (*subp = section[n]); n++, subp++)
2994 *subp++ = '.';
2997 n = 1;
2998 do {
2999 snprintf(subp, sizeof(subsection)-(subp-subsection), "%d", n++);
3000 subsection[sizeof(subsection)-1] = '\0';
3001 got_one = fetch_contents(stream, msgno, subsection, &part->body);
3002 last_one = MIN(last_one, got_one);
3004 while((part = part->next) != NULL);
3006 return(last_one);
3009 if(body->contents.text.data)
3010 return(1); /* already taken care of... */
3012 if(body->type == TYPEMESSAGE){
3013 if(body->subtype && strucmp(body->subtype,"external-body")){
3015 * the idea here is to fetch everything into storage objects
3017 body->contents.text.data = (void *) so_get(PART_SO_TYPE, NULL,
3018 EDIT_ACCESS);
3019 if(body->contents.text.data
3020 && (tp = pine_mail_fetch_body(stream, msgno, section,
3021 &body->size.bytes, NIL))){
3022 so_truncate((STORE_S *)body->contents.text.data,
3023 body->size.bytes + 2048);
3024 so_nputs((STORE_S *)body->contents.text.data, tp,
3025 body->size.bytes);
3026 got_one = 1;
3028 else
3029 q_status_message1(SM_ORDER | SM_DING, 3, 3,
3030 _("Error fetching part %s"), section);
3031 } else {
3032 got_one = 1;
3034 } else {
3036 * the idea here is to fetch everything into storage objects
3037 * so, grab one, then fetch the body part
3039 body->contents.text.data = (void *)so_get(PART_SO_TYPE,NULL,EDIT_ACCESS);
3040 if(body->contents.text.data
3041 && (tp=pine_mail_fetch_body(stream, msgno, section,
3042 &body->size.bytes, NIL))){
3043 so_truncate((STORE_S *)body->contents.text.data,
3044 body->size.bytes + 2048);
3045 so_nputs((STORE_S *)body->contents.text.data, tp,
3046 body->size.bytes);
3047 got_one = 1;
3049 else
3050 q_status_message1(SM_ORDER | SM_DING, 3, 3,
3051 _("Error fetching part %s"), section);
3054 return(got_one);
3058 /*----------------------------------------------------------------------
3059 Copy the body structure
3061 Args: new_body -- Pointer to already allocated body, or NULL, if none
3062 old_body -- The Body to copy
3065 This is traverses the body structure recursively copying all elements.
3066 The new_body parameter can be NULL in which case a new body is
3067 allocated. Alternatively it can point to an already allocated body
3068 structure. This is used when copying body parts since a PART includes a
3069 BODY. The contents fields are *not* filled in.
3070 ----*/
3072 BODY *
3073 copy_body(struct mail_bodystruct *new_body, struct mail_bodystruct *old_body)
3075 if(old_body == NULL)
3076 return(NULL);
3078 if(new_body == NULL)
3079 new_body = mail_newbody();
3081 new_body->type = old_body->type;
3082 new_body->encoding = old_body->encoding;
3084 if(old_body->subtype)
3085 new_body->subtype = cpystr(old_body->subtype);
3087 new_body->parameter = copy_parameters(old_body->parameter);
3089 if(old_body->id)
3090 new_body->id = cpystr(old_body->id);
3092 if(old_body->description)
3093 new_body->description = cpystr(old_body->description);
3095 if(old_body->disposition.type)
3096 new_body->disposition.type = cpystr(old_body->disposition.type);
3098 new_body->disposition.parameter
3099 = copy_parameters(old_body->disposition.parameter);
3101 new_body->size = old_body->size;
3103 if(new_body->type == TYPEMESSAGE
3104 && new_body->subtype && !strucmp(new_body->subtype, "rfc822")){
3105 new_body->nested.msg = mail_newmsg();
3106 new_body->nested.msg->body
3107 = copy_body(NULL, old_body->nested.msg->body);
3109 else if(new_body->type == TYPEMULTIPART) {
3110 PART **new_partp, *old_part;
3112 new_partp = &new_body->nested.part;
3113 for(old_part = old_body->nested.part;
3114 old_part != NULL;
3115 old_part = old_part->next){
3116 *new_partp = mail_newbody_part();
3117 copy_body(&(*new_partp)->body, &old_part->body);
3118 new_partp = &(*new_partp)->next;
3122 return(new_body);
3126 /*----------------------------------------------------------------------
3127 Copy the MIME parameter list
3129 Allocates storage for new part, and returns pointer to new paramter
3130 list. If old_p is NULL, NULL is returned.
3131 ----*/
3132 PARAMETER *
3133 copy_parameters(PARAMETER *old_p)
3135 PARAMETER *new_p, *p1, *p2;
3137 if(old_p == NULL)
3138 return((PARAMETER *)NULL);
3140 new_p = p2 = NULL;
3141 for(p1 = old_p; p1 != NULL; p1 = p1->next){
3142 set_parameter(&p2, p1->attribute, p1->value);
3143 if(new_p == NULL)
3144 new_p = p2;
3147 return(new_p);
3151 /*----------------------------------------------------------------------
3152 Make a complete copy of an envelope and all it's fields
3154 Args: e -- the envelope to copy
3156 Result: returns the new envelope, or NULL, if the given envelope was NULL
3158 ----*/
3160 ENVELOPE *
3161 copy_envelope(register ENVELOPE *e)
3163 register ENVELOPE *e2;
3165 if(!e)
3166 return(NULL);
3168 e2 = mail_newenvelope();
3169 e2->remail = e->remail ? cpystr(e->remail) : NULL;
3170 e2->return_path = e->return_path ? rfc822_cpy_adr(e->return_path) : NULL;
3171 e2->date = e->date ? (unsigned char *)cpystr((char *) e->date)
3172 : NULL;
3173 e2->from = e->from ? rfc822_cpy_adr(e->from) : NULL;
3174 e2->sender = e->sender ? rfc822_cpy_adr(e->sender) : NULL;
3175 e2->reply_to = e->reply_to ? rfc822_cpy_adr(e->reply_to) : NULL;
3176 e2->subject = e->subject ? cpystr(e->subject) : NULL;
3177 e2->to = e->to ? rfc822_cpy_adr(e->to) : NULL;
3178 e2->cc = e->cc ? rfc822_cpy_adr(e->cc) : NULL;
3179 e2->bcc = e->bcc ? rfc822_cpy_adr(e->bcc) : NULL;
3180 e2->in_reply_to = e->in_reply_to ? cpystr(e->in_reply_to) : NULL;
3181 e2->newsgroups = e->newsgroups ? cpystr(e->newsgroups) : NULL;
3182 e2->message_id = e->message_id ? cpystr(e->message_id) : NULL;
3183 e2->references = e->references ? cpystr(e->references) : NULL;
3184 e2->followup_to = e->followup_to ? cpystr(e->references) : NULL;
3185 return(e2);
3189 /*----------------------------------------------------------------------
3190 Generate the "In-reply-to" text from message header
3192 Args: message -- Envelope of original message
3194 Result: returns an alloc'd string or NULL if there is a problem
3195 ----*/
3196 char *
3197 reply_in_reply_to(ENVELOPE *env)
3199 return((env && env->message_id) ? cpystr(env->message_id) : NULL);
3203 /*----------------------------------------------------------------------
3204 Generate a unique message id string.
3206 Args: ps -- The usual pine structure
3208 Result: Alloc'd unique string is returned
3210 Uniqueness is gaurenteed by using the host name, process id, date to the
3211 second and a single unique character
3212 *----------------------------------------------------------------------*/
3213 char *
3214 generate_message_id(void)
3216 static short osec = 0, cnt = 0;
3217 char idbuf[128];
3218 char *id;
3219 time_t now;
3220 struct tm *now_x;
3221 char *hostpart = NULL;
3222 char *alpine_name = NULL;
3223 char *alpine_version = NULL;
3224 char *system_os = NULL;
3226 now = time((time_t *)0);
3227 now_x = localtime(&now);
3229 if(now_x->tm_sec == osec)
3230 cnt++;
3231 else{
3232 cnt = 0;
3233 osec = now_x->tm_sec;
3236 if(F_ON(F_ROT13_MESSAGE_ID, ps_global)){
3237 hostpart = rot13(ps_global->hostname);
3238 alpine_name = rot13("alpine");
3239 alpine_version = rot5n(ALPINE_VERSION);
3240 system_os = rot13(SYSTYPE);
3241 } else {
3242 hostpart = cpystr(ps_global->hostname);
3243 alpine_name = cpystr("alpine");
3244 alpine_version = cpystr(ALPINE_VERSION);
3245 system_os = cpystr(SYSTYPE);
3248 if(!hostpart)
3249 hostpart = cpystr("huh");
3251 snprintf(idbuf, sizeof(idbuf), "<%.6s.%.4s.%.20s.%02d%02d%02d%02d%02d%02d%X.%d@%.50s>",
3252 alpine_name, system_os, alpine_version, (now_x->tm_year) % 100, now_x->tm_mon + 1,
3253 now_x->tm_mday, now_x->tm_hour, now_x->tm_min, now_x->tm_sec,
3254 cnt, getpid(), hostpart);
3255 idbuf[sizeof(idbuf)-1] = '\0';
3257 id = cpystr(idbuf);
3259 if(hostpart) fs_give((void **) &hostpart);
3260 if(alpine_name) fs_give((void **) & alpine_name);
3261 if(alpine_version) fs_give((void **)&alpine_version);
3262 if(system_os) fs_give((void **)&system_os);
3264 return(id);
3268 char *
3269 generate_user_agent(void)
3271 char buf[128];
3272 char rev[128];
3274 if(F_ON(F_QUELL_USERAGENT, ps_global))
3275 return(NULL);
3277 snprintf(buf, sizeof(buf),
3278 "%sAlpine %s (%s %s)",
3279 (pith_opt_user_agent_prefix) ? (*pith_opt_user_agent_prefix)() : "",
3280 ALPINE_VERSION, SYSTYPE,
3281 get_alpine_revision_string(rev, sizeof(rev)));
3283 return(cpystr(buf));
3287 char *
3288 rot13(char *src)
3290 char byte, cap, *p, *ret = NULL;
3292 if(src && *src){
3293 ret = (char *) fs_get((strlen(src)+1) * sizeof(char));
3294 p = ret;
3295 while((byte = *src++) != '\0'){
3296 cap = byte & 32;
3297 byte &= ~cap;
3298 *p++ = ((byte >= 'A') && (byte <= 'Z')
3299 ? ((byte - 'A' + 13) % 26 + 'A') : byte) | cap;
3302 *p = '\0';
3305 return(ret);
3308 char *
3309 rot5n(char *src)
3311 char byte, *p, *ret = NULL;
3313 if(src && *src){
3314 ret = (char *) fs_get((strlen(src)+1) * sizeof(char));
3315 p = ret;
3316 while((byte = *src++) != '\0')
3317 *p++ = ((byte >= '0') && (byte <= '9')
3318 ? ((byte - '0' + 5) % 10 + '0') : byte);
3319 *p = '\0';
3322 return(ret);
3326 /*----------------------------------------------------------------------
3327 Return the first true address pointer (modulo group syntax allowance)
3329 Args: addr -- Address list
3331 Result: First real address pointer, or NULL
3332 ----------------------------------------------------------------------*/
3333 ADDRESS *
3334 first_addr(struct mail_address *addr)
3336 while(addr && !addr->host)
3337 addr = addr->next;
3339 return(addr);
3343 /*----------------------------------------------------------------------
3344 lit -- this is the source
3345 prenewlines -- prefix the file contents with this many newlines
3346 postnewlines -- postfix the file contents with this many newlines
3347 is_sig -- this is a signature (not a template)
3348 decode_constants -- change C-style constants into their values
3349 ----*/
3350 char *
3351 get_signature_lit(char *lit, int prenewlines, int postnewlines, int is_sig, int decode_constants)
3353 char *sig = NULL;
3356 * Should make this smart enough not to do the copying and double
3357 * allocation of space.
3359 if(lit){
3360 char *tmplit = NULL, *p, *q, *d, save;
3361 size_t len;
3363 if(decode_constants){
3364 tmplit = (char *) fs_get((strlen(lit)+1) * sizeof(char));
3365 tmplit[0] = '\0';
3366 cstring_to_string(lit, tmplit);
3368 else
3369 tmplit = cpystr(lit);
3371 len = strlen(tmplit) + 5 + (prenewlines+postnewlines) * strlen(NEWLINE);
3372 sig = (char *) fs_get((len+1) * sizeof(char));
3373 memset(sig, 0, len+1);
3374 d = sig;
3375 while(prenewlines--)
3376 sstrncpy(&d, NEWLINE, len-(d-sig));
3378 if(is_sig && F_ON(F_ENABLE_SIGDASHES, ps_global) &&
3379 !sigdashes_are_present(tmplit)){
3380 sstrncpy(&d, SIGDASHES, len-(d-sig));
3381 sstrncpy(&d, NEWLINE, len-(d-sig));
3384 sig[len] = '\0';
3386 p = tmplit;
3387 while(*p){
3388 /* get a line */
3389 q = strpbrk(p, "\n\r");
3390 if(q){
3391 save = *q;
3392 *q = '\0';
3396 * Strip trailing space if we are doing a signature and
3397 * this line is not sigdashes.
3399 if(is_sig && strcmp(p, SIGDASHES))
3400 removing_trailing_white_space(p);
3402 while((d-sig) <= len && (*d = *p++) != '\0')
3403 d++;
3405 if(q){
3406 if((d-sig) <= len)
3407 *d++ = save;
3409 p = q+1;
3411 else
3412 break;
3415 while(postnewlines--)
3416 sstrncpy(&d, NEWLINE, len-(d-sig));
3418 sig[len] = '\0';
3420 if((d-sig) <= len)
3421 *d = '\0';
3423 if(tmplit)
3424 fs_give((void **) &tmplit);
3427 return(sig);
3432 sigdashes_are_present(char *sig)
3434 char *p;
3436 p = srchstr(sig, SIGDASHES);
3437 while(p && !((p == sig || (p[-1] == '\n' || p[-1] == '\r')) &&
3438 (p[3] == '\0' || p[3] == '\n' || p[3] == '\r')))
3439 p = srchstr(p+1, SIGDASHES);
3441 return(p ? 1 : 0);
3445 /*----------------------------------------------------------------------
3446 Acquire the pinerc defined signature file pathname
3448 ----*/
3449 char *
3450 signature_path(char *sname, char *sbuf, size_t len)
3452 *sbuf = '\0';
3453 if(sname && *sname){
3454 size_t spl = strlen(sname);
3455 if(IS_REMOTE(sname)){
3456 if(spl < len - 1)
3457 strncpy(sbuf, sname, len-1);
3459 else if(is_absolute_path(sname)){
3460 strncpy(sbuf, sname, len-1);
3461 sbuf[len-1] = '\0';
3462 fnexpand(sbuf, len);
3464 else if(ps_global->VAR_OPER_DIR){
3465 if(strlen(ps_global->VAR_OPER_DIR) + spl < len - 1)
3466 build_path(sbuf, ps_global->VAR_OPER_DIR, sname, len);
3468 else{
3469 char *lc = last_cmpnt(ps_global->pinerc);
3471 sbuf[0] = '\0';
3472 if(lc != NULL){
3473 strncpy(sbuf,ps_global->pinerc,MIN(len-1,lc-ps_global->pinerc));
3474 sbuf[MIN(len-1,lc-ps_global->pinerc)] = '\0';
3477 strncat(sbuf, sname, MAX(len-1-strlen(sbuf), 0));
3478 sbuf[len-1] = '\0';
3482 return(*sbuf ? sbuf : NULL);
3486 char *
3487 simple_read_remote_file(char *name, char *subtype)
3489 int try_cache;
3490 REMDATA_S *rd;
3491 char *file = NULL;
3494 dprint((7, "simple_read_remote_file(%s, %s)\n", name ? name : "?", subtype ? subtype : "?"));
3497 * We could parse the name here to find what type it is. So far we
3498 * only have type RemImap.
3500 rd = rd_create_remote(RemImap, name, subtype,
3501 NULL, _("Error: "), _("Can't fetch remote configuration."));
3502 if(!rd)
3503 goto bail_out;
3505 try_cache = rd_read_metadata(rd);
3507 if(rd->access == MaybeRorW){
3508 if(rd->read_status == 'R')
3509 rd->access = ReadOnly;
3510 else
3511 rd->access = ReadWrite;
3514 if(rd->access != NoExists){
3516 rd_check_remvalid(rd, 1L);
3519 * If the cached info says it is readonly but
3520 * it looks like it's been fixed now, change it to readwrite.
3522 if(rd->read_status == 'R'){
3524 * We go to this trouble since readonly sigfiles
3525 * are likely a mistake. They are usually supposed to be
3526 * readwrite so we open it and check if it's been fixed.
3528 rd_check_readonly_access(rd);
3529 if(rd->read_status == 'W'){
3530 rd->access = ReadWrite;
3531 rd->flags |= REM_OUTOFDATE;
3533 else
3534 rd->access = ReadOnly;
3537 if(rd->flags & REM_OUTOFDATE){
3538 if(rd_update_local(rd) != 0){
3540 dprint((1,
3541 "simple_read_remote_file: rd_update_local failed\n"));
3543 * Don't give up altogether. We still may be
3544 * able to use a cached copy.
3547 else{
3548 dprint((7,
3549 "%s: copied remote to local (%ld)\n",
3550 rd->rn ? rd->rn : "?", (long)rd->last_use));
3554 if(rd->access == ReadWrite)
3555 rd->flags |= DO_REMTRIM;
3558 /* If we couldn't get to remote folder, try using the cached copy */
3559 if(rd->access == NoExists || rd->flags & REM_OUTOFDATE){
3560 if(try_cache){
3561 rd->access = ReadOnly;
3562 rd->flags |= USE_OLD_CACHE;
3563 q_status_message(SM_ORDER, 3, 4,
3564 "Can't contact remote server, using cached copy");
3565 dprint((2,
3566 "Can't open remote file %s, using local cached copy %s readonly\n",
3567 rd->rn ? rd->rn : "?",
3568 rd->lf ? rd->lf : "?"));
3570 else{
3571 rd->flags &= ~DO_REMTRIM;
3572 goto bail_out;
3576 file = read_file(rd->lf, READ_FROM_LOCALE);
3578 bail_out:
3579 if(rd)
3580 rd_close_remdata(&rd);
3582 return(file);
3586 /*----------------------------------------------------------------------
3587 Build the body for the multipart/alternative part
3589 Args:
3591 Result:
3593 ----------------------------------------------------------------------*/
3594 BODY *
3595 forward_multi_alt(MAILSTREAM *stream, ENVELOPE *env, struct mail_bodystruct *orig_body,
3596 long int msgno, char *sect_prefix, void *msgtext, gf_io_t pc, int flags)
3598 #define FWDTMPLEN 256
3599 BODY *body = NULL;
3600 PART *part = NULL, *bestpart = NULL;
3601 char tmp_buf[FWDTMPLEN];
3602 char *new_charset = NULL;
3603 int partnum, bestpartnum;
3605 if(ps_global->force_prefer_plain
3606 || (!ps_global->force_no_prefer_plain
3607 && F_ON(F_PREFER_PLAIN_TEXT, ps_global))){
3608 for(part = orig_body->nested.part, partnum = 1;
3609 part;
3610 part = part->next, partnum++)
3611 if((!part->body.type || part->body.type == TYPETEXT)
3612 && (!part->body.subtype
3613 || !strucmp(part->body.subtype, "plain")))
3614 break;
3618 * Else choose last alternative among plain or html parts.
3619 * Perhaps we should really be using mime_show() to make this
3620 * potentially more general than just plain or html.
3622 if(!part){
3623 for(part = orig_body->nested.part, partnum = 1;
3624 part;
3625 part = part->next, partnum++){
3626 if((!part->body.type || part->body.type == TYPETEXT)
3627 && ((!part->body.subtype || !strucmp(part->body.subtype, "plain"))
3629 (part->body.subtype && !strucmp(part->body.subtype, "html")))){
3630 bestpart = part;
3631 bestpartnum = partnum;
3635 part = bestpart;
3636 partnum = bestpartnum;
3640 * IF something's interesting insert it
3641 * AND forget the rest of the multipart
3643 if(part){
3644 body = mail_newbody();
3645 body->type = TYPETEXT;
3646 body->contents.text.data = msgtext;
3648 /* record character set, flowing, etc */
3649 body->parameter = copy_parameters(part->body.parameter);
3650 body->size.bytes = part->body.size.bytes;
3652 if(!(flags & FWD_ANON)){
3653 forward_delimiter(pc);
3654 reply_forward_header(stream, msgno, sect_prefix, env, pc, "");
3656 /* FWDTMPLEN = sizeof(tmp_buf) */
3657 snprintf(tmp_buf, sizeof(tmp_buf), "%.*s%s%s%d",
3658 FWDTMPLEN/2, sect_prefix ? sect_prefix : "",
3659 sect_prefix ? "." : "", flags & FWD_NESTED ? "1." : "",
3660 partnum);
3661 tmp_buf[sizeof(tmp_buf)-1] = '\0';
3662 get_body_part_text(stream, &part->body, msgno, tmp_buf, 0L, pc,
3663 NULL, &new_charset, GBPT_NONE);
3666 * get_body_part_text translated the data to a new charset.
3667 * We need to record that fact in body.
3669 if(new_charset)
3670 set_parameter(&body->parameter, "charset", new_charset);
3672 else
3673 q_status_message(SM_ORDER | SM_DING, 3, 3,
3674 "No suitable part found. Forwarding as attachment");
3676 return(body);
3680 void
3681 reply_append_addr(struct mail_address **dest, struct mail_address *src)
3683 for( ; *dest; dest = &(*dest)->next)
3686 *dest = src;