1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Termination processing.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #ifndef HAVE_AMALGAMATION
47 QUITFLAG_KEEPSAVE
= 1<<2,
48 QUITFLAG_APPEND
= 1<<3
56 static struct quitnames
const _quitnames
[] = {
57 {QUITFLAG_HOLD
, ok_b_hold
},
58 {QUITFLAG_KEEP
, ok_b_keep
},
59 {QUITFLAG_KEEPSAVE
, ok_b_keepsave
},
60 {QUITFLAG_APPEND
, ok_b_append
}
63 static char _mboxname
[PATH_MAX
]; /* Name of mbox */
65 /* Touch the indicated file */
66 static void _alter(char const *name
);
68 /* Preserve all the appropriate messages back in the system mailbox, and print
69 * a nice message indicated how many were saved. On any error, just return -1.
70 * Else return 0. Incorporate the any new mail that we found */
71 static int writeback(FILE *res
, FILE *obuf
);
73 /* Terminate an editing session by attempting to write out the user's file from
74 * the temporary. Save any new stuff appended to the file */
75 static bool_t
edstop(void);
78 _alter(char const *name
) /* TODO error handling */
81 struct timespec tsa
[2];
89 tsa
[0].tv_sec
= n_time_epoch() + 1;
91 tsa
[1].tv_nsec
= UTIME_OMIT
;
92 utimensat(AT_FDCWD
, name
, tsa
, 0);
94 if (!stat(name
, &sb
)) {
95 utb
.actime
= n_time_epoch() + 1;
96 utb
.modtime
= sb
.st_mtime
;
104 writeback(FILE *res
, FILE *obuf
)
110 if (fseek(obuf
, 0L, SEEK_SET
) == -1)
115 while ((c
= getc(res
)) != EOF
)
119 for (p
= 0, mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
120 if ((mp
->m_flag
& MPRESERVE
) || !(mp
->m_flag
& MTOUCH
)) {
122 if (sendmp(mp
, obuf
, NULL
, NULL
, SEND_MBOX
, NULL
) < 0) {
132 while ((c
= getc(res
)) != EOF
)
140 fseek(obuf
, 0L, SEEK_SET
);
143 if (fseek(obuf
, 0L, SEEK_SET
) == -1)
148 fprintf(n_stdout
, _("Held 1 message in %s\n"), displayname
);
150 fprintf(n_stdout
, _("Held %d messages in %s\n"), p
, displayname
);
160 edstop(void) /* TODO oh my god */
164 FILE *obuf
= NULL
, *ibuf
= NULL
;
174 for (mp
= message
, gotcha
= 0; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
175 if (mp
->m_flag
& MNEW
) {
177 mp
->m_flag
|= MSTATUS
;
179 if (mp
->m_flag
& (MODIFY
| MDELETED
| MSTATUS
| MFLAG
| MUNFLAG
|
180 MANSWER
| MUNANSWER
| MDRAFT
| MUNDRAFT
))
188 /* TODO This is too simple minded? We should regenerate an index file
189 * TODO to be able to truly tell whether *anything* has changed!
190 * TODO (Or better: only come here.. then! It is an *object method!* */
191 /* TODO Ignoring stat error is easy, huh? */
192 if (!stat(mailname
, &statb
) && statb
.st_size
> mailsize
) {
193 if ((obuf
= Ftmp(NULL
, "edstop", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
195 n_perr(_("tmpfile"), 0);
198 if ((ibuf
= Zopen(mailname
, "r")) == NULL
) {
203 n_file_lock(fileno(ibuf
), FLT_READ
, 0,0, UIZ_MAX
); /* TODO ign. lock err*/
204 fseek(ibuf
, (long)mailsize
, SEEK_SET
);
205 while ((c
= getc(ibuf
)) != EOF
) /* xxx bytewise??? TODO ... I/O error? */
213 fprintf(n_stdout
, _("%s "), n_shexp_quote_cp(displayname
, FAL0
));
216 if ((obuf
= Zopen(mailname
, "r+")) == NULL
) {
218 n_perr(n_shexp_quote_cp(mailname
, FAL0
), e
);
221 n_file_lock(fileno(obuf
), FLT_WRITE
, 0,0, UIZ_MAX
); /* TODO ign. lock err! */
226 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
227 if (mp
->m_flag
& MDELETED
)
230 if (sendmp(mp
, obuf
, NULL
, NULL
, SEND_MBOX
, NULL
) < 0) {
232 n_err(_("Failed to finalize %s\n"), n_shexp_quote_cp(mailname
, FAL0
));
239 gotcha
= (c
== 0 && ibuf
== NULL
);
241 while ((c
= getc(ibuf
)) != EOF
)
246 n_err(_("Failed to finalize %s\n"), n_shexp_quote_cp(mailname
, FAL0
));
251 /* Non-system boxes are never removed except forced via POSIX mode */
252 #ifdef HAVE_FTRUNCATE
253 ftruncate(fileno(obuf
), 0);
257 if((fd
= open(mailname
, (O_WRONLY
| O_CREAT
| n_O_NOFOLLOW
| O_TRUNC
),
262 if(ok_blook(posix
) && !ok_blook(keep
) && n_path_rm(mailname
))
263 fputs(_("removed\n"), n_stdout
);
265 fputs(_("truncated\n"), n_stdout
);
267 fputs((ok_blook(bsdcompat
) || ok_blook(bsdmsgs
))
268 ? _("complete\n") : _("updated.\n"), n_stdout
);
278 /* TODO The codebase aborted by jumping to the main loop here.
279 * TODO The OpenBSD mailx simply ignores this error.
280 * TODO For now we follow the latter unless we are interactive,
281 * TODO in which case we ask the user whether the error is to be
282 * TODO ignored or not. More of this around here in this file! */
283 rv
= getapproval(_("Continue, possibly loosing changes"), TRU1
);
291 quit(bool_t hold_sigs_on
)
293 int p
, modify
, anystat
, c
;
294 FILE *fbuf
= NULL
, *lckfp
= NULL
, *rbuf
, *abuf
;
304 temporary_folder_hook_unroll();
306 /* If we are read only, we can't do anything, so just return quickly */
307 /* TODO yet we cannot return quickly if resources have to be released!
308 * TODO somewhen it'll be mailbox->quit() anyway, for now do it by hand
309 *if (mb.mb_perm == 0)
311 p
= (mb
.mb_perm
== 0);
313 switch (mb
.mb_type
) {
317 rv
= maildir_quit(TRU1
);
321 rv
= pop3_quit(TRU1
);
332 goto jleave
; /* TODO */
335 /* If editing (not reading system mail box), then do the work in edstop() */
336 if (n_pstate
& n_PS_EDIT
) {
341 /* See if there any messages to save in mbox. If no, we
342 * can save copying mbox to /tmp and back.
344 * Check also to see if any files need to be preserved.
345 * Delete all untouched messages to keep them out of mbox.
346 * If all the messages are to be preserved, just exit with
348 fbuf
= Zopen(mailname
, "r+");
352 fprintf(n_stdout
, _("Thou hast new mail.\n"));
357 if ((lckfp
= n_dotlock(mailname
, fileno(fbuf
), FLT_WRITE
, 0,0, UIZ_MAX
)
359 n_perr(_("Unable to (dot) lock mailbox"), 0);
362 rv
= getapproval(_("Continue, possibly loosing changes"), TRU1
);
367 if (!fstat(fileno(fbuf
), &minfo
) && minfo
.st_size
> mailsize
) {
368 fprintf(n_stdout
, _("New mail has arrived.\n"));
369 rbuf
= Ftmp(NULL
, "quit", OF_RDWR
| OF_UNLINK
| OF_REGISTER
);
370 if (rbuf
== NULL
|| fbuf
== NULL
)
373 fseek(fbuf
, (long)mailsize
, SEEK_SET
);
374 while ((c
= getc(fbuf
)) != EOF
)
377 p
= minfo
.st_size
- mailsize
;
388 anystat
= holdbits();
390 for (c
= 0, p
= 0, mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
391 if (mp
->m_flag
& MBOX
)
393 if (mp
->m_flag
& MPRESERVE
)
395 if (mp
->m_flag
& MODIFY
)
398 if (p
== msgCount
&& !modify
&& !anystat
) {
401 fprintf(n_stdout
, _("Held 1 message in %s\n"), displayname
);
403 fprintf(n_stdout
, _("Held %d messages in %s\n"), p
, displayname
);
409 if (writeback(rbuf
, fbuf
) >= 0)
412 rv
= getapproval(_("Continue, possibly loosing changes"), TRU1
);
418 if (makembox() == STOP
) {
419 rv
= getapproval(_("Continue, possibly loosing changes"), TRU1
);
423 /* Now we are ready to copy back preserved files to the system mailbox, if
424 * any were requested */
426 if (writeback(rbuf
, fbuf
) < 0)
427 rv
= getapproval(_("Continue, possibly loosing changes"), TRU1
);
431 /* Finally, remove his file. If new mail has arrived, copy it back */
435 fseek(abuf
, 0L, SEEK_SET
);
436 while ((c
= getc(rbuf
)) != EOF
)
443 #ifdef HAVE_FTRUNCATE
444 ftruncate(fileno(fbuf
), 0);
448 if((fd
= open(mailname
, (O_WRONLY
| O_CREAT
| n_O_NOFOLLOW
| O_TRUNC
),
459 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1)
472 int anystat
, autohold
, holdbit
, nohold
;
476 autohold
= ok_blook(hold
);
477 holdbit
= autohold
? MPRESERVE
: MBOX
;
478 nohold
= MBOX
| MSAVED
| MDELETED
| MPRESERVE
;
479 if (ok_blook(keepsave
))
481 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
482 if (mp
->m_flag
& MNEW
) {
484 mp
->m_flag
|= MSTATUS
;
486 if (mp
->m_flag
& (MSTATUS
| MFLAG
| MUNFLAG
| MANSWER
| MUNANSWER
|
489 if (!(mp
->m_flag
& MTOUCH
))
490 mp
->m_flag
|= MPRESERVE
;
491 if (!(mp
->m_flag
& nohold
))
492 mp
->m_flag
|= holdbit
;
499 makembox(void) /* TODO oh my god */
502 char *mbox
, *tempQuit
;
504 FILE *ibuf
= NULL
, *obuf
, *abuf
;
510 if (!ok_blook(append
)) {
511 if ((obuf
= Ftmp(&tempQuit
, "makembox",
512 OF_WRONLY
| OF_HOLDSIGS
| OF_REGISTER
)) == NULL
) {
513 n_perr(_("temporary mail quit file"), 0);
516 if ((ibuf
= Fopen(tempQuit
, "r")) == NULL
)
518 Ftmp_release(&tempQuit
);
524 if ((abuf
= Zopen(mbox
, "r")) != NULL
) {
525 while ((c
= getc(abuf
)) != EOF
)
530 n_perr(_("temporary mail quit file"), 0);
537 if ((c
= open(mbox
, (O_WRONLY
| O_CREAT
| n_O_NOFOLLOW
| O_TRUNC
), 0666)
540 if ((obuf
= Zopen(mbox
, "r+")) == NULL
) {
546 if ((obuf
= Zopen(mbox
, "a")) == NULL
) {
553 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
554 if (mp
->m_flag
& MBOX
) {
556 if (sendmp(mp
, obuf
, n_IGNORE_SAVE
, NULL
, SEND_MBOX
, NULL
) < 0) {
564 mp
->m_flag
|= MBOXED
;
570 /* Copy the user's old mbox contents back to the end of the stuff we just
571 * saved. If we are appending, this is unnecessary */
572 if (!ok_blook(append
)) {
590 if (Fclose(obuf
) != 0) {
595 fprintf(n_stdout
, _("Saved 1 message in mbox\n"));
597 fprintf(n_stdout
, _("Saved %d messages in mbox\n"), mcount
);
605 save_mbox_for_possible_quitstuff(void) /* TODO try to get rid of that */
610 if ((cp
= expand("&")) == NULL
)
612 n_strscpy(_mboxname
, cp
, sizeof _mboxname
);
619 enum quitflags qf
= 0;
623 for (i
= 0; i
< n_NELEM(_quitnames
); ++i
)
624 if (n_var_oklook(_quitnames
[i
].okey
) != NULL
)
625 qf
|= _quitnames
[i
].flag
;
631 restorequitflags(int qf
)
636 for (i
= 0; i
< n_NELEM(_quitnames
); ++i
) {
637 char *x
= n_var_oklook(_quitnames
[i
].okey
);
638 if (qf
& _quitnames
[i
].flag
) {
640 n_var_okset(_quitnames
[i
].okey
, TRU1
);
641 } else if (x
!= NULL
)
642 n_var_okclear(_quitnames
[i
].okey
);