folder: Never display column headers (removed -header).
[mmh] / uip / refile.c
1 /*
2 ** refile.c -- move or link message(s) from a source folder
3 **          -- into one or more destination folders
4 **
5 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
6 ** COPYRIGHT file in the root directory of the nmh distribution for
7 ** complete copyright information.
8 */
9
10 #include <h/mh.h>
11 #include <h/utils.h>
12 #include <fcntl.h>
13 #include <errno.h>
14
15 static struct swit switches[] = {
16 #define LINKSW  0
17         { "link", 0 },
18 #define NLINKSW  1
19         { "nolink", 0 },
20 #define SRCSW  2
21         { "src +folder", 0 },
22 #define FILESW  3
23         { "file file", 0 },
24 #define VERSIONSW  4
25         { "version", 0 },
26 #define HELPSW  5
27         { "help", 0 },
28         { NULL, 0 }
29 };
30
31 static char maildir[BUFSIZ];
32
33 struct st_fold {
34         char *f_name;
35         struct msgs *f_mp;
36 };
37
38 /*
39 ** static prototypes
40 */
41 static void opnfolds(struct st_fold *, int);
42 static void clsfolds(struct st_fold *, int);
43 static int m_file(char *, struct st_fold *, int, int);
44
45
46 int
47 main(int argc, char **argv)
48 {
49         int linkf = 0, filep = 0;
50         int foldp = 0;
51         int i, msgnum;
52         char *cp, *folder = NULL, buf[BUFSIZ];
53         char **argp, **arguments;
54         char *filevec[NFOLDERS + 1];
55         char **files = filevec;
56         struct st_fold folders[NFOLDERS + 1];
57         struct msgs_array msgs = { 0, 0, NULL };
58         struct msgs *mp;
59
60 #ifdef LOCALE
61         setlocale(LC_ALL, "");
62 #endif
63         invo_name = mhbasename(argv[0]);
64
65         context_read();
66
67         arguments = getarguments(invo_name, argc, argv, 1);
68         argp = arguments;
69
70         /*
71         ** Parse arguments
72         */
73         while ((cp = *argp++)) {
74                 if (*cp == '-') {
75                         switch (smatch(++cp, switches)) {
76                         case AMBIGSW:
77                                 ambigsw(cp, switches);
78                                 done(1);
79                         case UNKWNSW:
80                                 adios(NULL, "-%s unknown\n", cp);
81
82                         case HELPSW:
83                                 snprintf(buf, sizeof(buf), "%s [msgs] [switches] +folder ...", invo_name);
84                                 print_help(buf, switches, 1);
85                                 done(1);
86                         case VERSIONSW:
87                                 print_version(invo_name);
88                                 done(1);
89
90                         case LINKSW:
91                                 linkf++;
92                                 continue;
93                         case NLINKSW:
94                                 linkf = 0;
95                                 continue;
96
97                         case SRCSW:
98                                 if (folder)
99                                         adios(NULL, "only one source folder at a time!");
100                                 if (!(cp = *argp++) || *cp == '-')
101                                         adios(NULL, "missing argument to %s",
102                                                         argp[-2]);
103                                 folder = getcpy(expandfol(cp));
104                                 continue;
105                         case FILESW:
106                                 if (filep > NFOLDERS)
107                                         adios(NULL, "only %d files allowed!",
108                                                         NFOLDERS);
109                                 if (!(cp = *argp++) || *cp == '-')
110                                         adios(NULL, "missing argument to %s",
111                                                         argp[-2]);
112                                 files[filep++] = getcpy(expanddir(cp));
113                                 continue;
114                         }
115                 }
116                 if (*cp == '+' || *cp == '@') {
117                         if (foldp > NFOLDERS)
118                                 adios(NULL, "only %d folders allowed!",
119                                                 NFOLDERS);
120                         folders[foldp++].f_name = getcpy(expandfol(cp));
121                 } else
122                         app_msgarg(&msgs, cp);
123         }
124
125         if (foldp == 0)
126                 adios(NULL, "no folder specified");
127
128         /*
129         ** We are refiling a file to the folders
130         */
131         if (filep > 0) {
132                 if (folder || msgs.size)
133                         adios(NULL, "use -file or some messages, not both");
134                 opnfolds(folders, foldp);
135                 for (i = 0; i < filep; i++)
136                         if (m_file(files[i], folders, foldp, 0))
137                                 done(1);
138                 /* If -nolink, then unlink files */
139                 if (!linkf) {
140                         int i;
141                         char **files = filevec;
142
143                         /* just unlink the files */
144                         for (i = 0; i < filep; i++) {
145                                 if (unlink(files[i]) == NOTOK)
146                                         admonish(files[i], "unable to unlink");
147                         }
148                 }
149                 done(0);
150         }
151
152         if (!msgs.size)
153                 app_msgarg(&msgs, seq_cur);
154         if (!folder)
155                 folder = getcurfol();
156         strncpy(maildir, toabsdir(folder), sizeof(maildir));
157
158         if (chdir(maildir) == NOTOK)
159                 adios(maildir, "unable to change directory to");
160
161         /* read source folder and create message structure */
162         if (!(mp = folder_read(folder)))
163                 adios(NULL, "unable to read folder %s", folder);
164
165         /* check for empty folder */
166         if (mp->nummsg == 0)
167                 adios(NULL, "no messages in %s", folder);
168
169         /* parse the message range/sequence/name and set SELECTED */
170         for (msgnum = 0; msgnum < msgs.size; msgnum++)
171                 if (!m_convert(mp, msgs.msgs[msgnum]))
172                         done(1);
173         seq_setprev(mp);  /* set the previous-sequence */
174
175         /* create folder structures for each destination folder */
176         opnfolds(folders, foldp);
177
178         /* Link all the selected messages into destination folders.
179         **
180         ** This causes the add hook to be run for messages that are
181         ** linked into another folder.  The refile hook is run for
182         ** messages that are moved to another folder.
183         */
184         for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
185                 if (is_selected(mp, msgnum)) {
186                         cp = getcpy(m_name(msgnum));
187                         if (m_file(cp, folders, foldp, !linkf))
188                                 done(1);
189                         free(cp);
190                 }
191         }
192
193         /*
194         ** If -nolink, then remove (= unlink) messages from source folder.
195         **
196         ** Note that folder_delmsgs does not call the delete hook
197         ** because the message has already been handled above.
198         */
199         if (!linkf) {
200                 folder_delmsgs(mp, 0);
201         }
202
203         clsfolds(folders, foldp);
204
205         if (linkf) {
206                 seq_setcur(mp, mp->hghsel);
207         }
208         seq_save(mp);  /* synchronize message sequences */
209
210         context_replace(curfolder, folder);
211         context_save();
212         folder_free(mp);
213         done(0);
214         return 1;
215 }
216
217
218 /*
219 ** Read all the destination folders and
220 ** create folder structures for all of them.
221 */
222 static void
223 opnfolds(struct st_fold *folders, int nfolders)
224 {
225         char nmaildir[BUFSIZ];
226         register struct st_fold *fp, *ep;
227         register struct msgs *mp;
228
229         for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
230                 chdir(toabsdir("+"));
231                 strncpy(nmaildir, toabsdir(fp->f_name), sizeof(nmaildir));
232
233                 create_folder(nmaildir, 0, done);
234
235                 if (chdir(nmaildir) == NOTOK)
236                         adios(nmaildir, "unable to change directory to");
237                 if (!(mp = folder_read(fp->f_name)))
238                         adios(NULL, "unable to read folder %s", fp->f_name);
239                 mp->curmsg = 0;
240
241                 fp->f_mp = mp;
242
243                 chdir(maildir);
244         }
245 }
246
247
248 /*
249 ** Set the Previous-Sequence and then sychronize the
250 ** sequence file, for each destination folder.
251 */
252 static void
253 clsfolds(struct st_fold *folders, int nfolders)
254 {
255         register struct st_fold *fp, *ep;
256         register struct msgs *mp;
257
258         for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
259                 mp = fp->f_mp;
260                 seq_setprev(mp);
261                 seq_save(mp);
262         }
263 }
264
265
266 /*
267 ** Link (or copy) the message into each of
268 ** the destination folders.
269 */
270 static int
271 m_file(char *msgfile, struct st_fold *folders, int nfolders, int refile)
272 {
273         int msgnum;
274         struct st_fold *fp, *ep;
275
276         for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
277                 if ((msgnum = folder_addmsg(&fp->f_mp, msgfile, 1, 0,
278                                 0, nfolders == 1 && refile, maildir)) == -1)
279                         return 1;
280         }
281         return 0;
282 }