Andreas Krennmair:
[apps/madmutt.git] / headers.c
1 /* 
2  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 #if HAVE_CONFIG_H
20 # include "config.h"
21 #endif
22
23 #include "mutt.h"
24 #include "mutt_crypt.h"
25 #include "mutt_idna.h"
26
27 #include <sys/stat.h>
28 #include <string.h>
29 #include <ctype.h>
30
31 void mutt_edit_headers (const char *editor,
32                         const char *body,
33                         HEADER *msg,
34                         char *fcc,
35                         size_t fcclen)
36 {
37   char path[_POSIX_PATH_MAX];   /* tempfile used to edit headers + body */
38   char buffer[LONG_STRING];
39   char *p;
40   FILE *ifp, *ofp;
41   int i, keep;
42   ENVELOPE *n;
43   time_t mtime;
44   struct stat st;
45   LIST *cur, **last = NULL, *tmp;
46
47   mutt_mktemp (path);
48   if ((ofp = safe_fopen (path, "w")) == NULL)
49   {
50     mutt_perror (path);
51     return;
52   }
53   
54   mutt_env_to_local (msg->env);
55   mutt_write_rfc822_header (ofp, msg->env, NULL, 1, 0);
56   fputc ('\n', ofp);    /* tie off the header. */
57
58   /* now copy the body of the message. */
59   if ((ifp = fopen (body, "r")) == NULL)
60   {
61     mutt_perror (body);
62     return;
63   }
64
65   mutt_copy_stream (ifp, ofp);
66
67   fclose (ifp);
68   fclose (ofp);
69
70   if (stat (path, &st) == -1)
71   {
72     mutt_perror (path);
73     return;
74   }
75
76   mtime = mutt_decrease_mtime (path, &st);
77
78   mutt_edit_file (editor, path);
79   stat (path, &st);
80   if (mtime == st.st_mtime)
81   {
82     dprint (1, (debugfile, "ci_edit_headers(): temp file was not modified.\n"));
83     /* the file has not changed! */
84     mutt_unlink (path);
85     return;
86   }
87
88   mutt_unlink (body);
89   mutt_free_list (&msg->env->userhdrs);
90
91   /* Read the temp file back in */
92   if ((ifp = fopen (path, "r")) == NULL)
93   {
94     mutt_perror (path);
95     return;
96   }
97   
98   if ((ofp = safe_fopen (body, "w")) == NULL)
99   {
100     /* intentionally leak a possible temporary file here */
101     fclose (ifp);
102     mutt_perror (body);
103     return;
104   }
105   
106   n = mutt_read_rfc822_header (ifp, NULL, 1, 0);
107   while ((i = fread (buffer, 1, sizeof (buffer), ifp)) > 0)
108     fwrite (buffer, 1, i, ofp);
109   fclose (ofp);
110   fclose (ifp);
111   mutt_unlink (path);
112
113   /* restore old info. */
114   n->references = msg->env->references;
115   msg->env->references = NULL;
116
117   mutt_free_envelope (&msg->env);
118   msg->env = n; n = NULL;
119
120   if (!msg->env->in_reply_to)
121 #ifdef USE_NNTP
122   if (!option (OPTNEWSSEND))
123 #endif
124     mutt_free_list (&msg->env->references);
125
126   mutt_expand_aliases_env (msg->env);
127
128   /* search through the user defined headers added to see if either a 
129    * fcc: or attach-file: field was specified.  
130    */
131
132   cur = msg->env->userhdrs;
133   last = &msg->env->userhdrs;
134   while (cur)
135   {
136     keep = 1;
137
138     /* keep track of whether or not we see the in-reply-to field.  if we did
139      * not, remove the references: field later so that we can generate a new
140      * message based upon this one.
141      */
142     if (fcc && ascii_strncasecmp ("fcc:", cur->data, 4) == 0)
143     {
144       p = cur->data + 4;
145       SKIPWS (p);
146       if (*p)
147       {
148         strfcpy (fcc, p, fcclen);
149         mutt_pretty_mailbox (fcc);
150       }
151       keep = 0;
152     }
153     else if (ascii_strncasecmp ("attach:", cur->data, 7) == 0)
154     {
155       BODY *body;
156       BODY *parts;
157       char *q;
158
159       p = cur->data + 7;
160       SKIPWS (p);
161       if (*p)
162       {
163         if ((q = strpbrk (p, " \t")))
164         {
165           mutt_substrcpy (path, p, q, sizeof (path));
166           SKIPWS (q);
167         }
168         else
169           strfcpy (path, p, sizeof (path));
170         mutt_expand_path (path, sizeof (path));
171         if ((body = mutt_make_file_attach (path)))
172         {
173           body->description = safe_strdup (q);
174           for (parts = msg->content; parts->next; parts = parts->next) ;
175           parts->next = body;
176         }
177         else
178         {
179           mutt_pretty_mailbox (path);
180           mutt_error (_("%s: unable to attach file"), path);
181         }
182       }
183       keep = 0;
184     }
185
186
187     else if ((WithCrypto & APPLICATION_PGP)
188              &&ascii_strncasecmp ("pgp:", cur->data, 4) == 0)
189     {
190       msg->security = mutt_parse_crypt_hdr (cur->data + 4, 0);
191       if (msg->security)
192         msg->security |= APPLICATION_PGP;
193       keep = 0;
194     }
195
196     if (keep)
197     {
198       last = &cur->next;
199       cur  = cur->next;
200     }
201     else
202     {
203       tmp       = cur;
204       *last     = cur->next;
205       cur       = cur->next;
206       tmp->next = NULL;
207       mutt_free_list (&tmp);
208     }
209   }
210 }