mtxdos.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:24k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: MTX mail routines
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 24 June 1992
  13.  * Last Edited: 10 June 1999
  14.  *
  15.  * Copyright 1999 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made
  24.  * available "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. #include <ctype.h>
  36. #include <errno.h>
  37. #include <fcntl.h>
  38. #include "mail.h"
  39. #include "osdep.h"
  40. #include <time.h>
  41. #include <sysstat.h>
  42. #include <dos.h>
  43. #include "mtxdos.h"
  44. #include "rfc822.h"
  45. #include "dummy.h"
  46. #include "misc.h"
  47. #include "fdstring.h"
  48. /* MTX mail routines */
  49. /* Driver dispatch used by MAIL */
  50. DRIVER mtxdriver = {
  51.   "mtx", /* driver name */
  52. /* driver flags */
  53.   DR_LOCAL|DR_MAIL|DR_LOWMEM|DR_CRLF|DR_NOSTICKY,
  54.   (DRIVER *) NIL, /* next driver */
  55.   mtx_valid, /* mailbox is valid for us */
  56.   mtx_parameters, /* manipulate parameters */
  57.   mtx_scan, /* scan mailboxes */
  58.   mtx_list, /* list mailboxes */
  59.   mtx_lsub, /* list subscribed mailboxes */
  60.   NIL, /* subscribe to mailbox */
  61.   NIL, /* unsubscribe from mailbox */
  62.   mtx_create, /* create mailbox */
  63.   mtx_delete, /* delete mailbox */
  64.   mtx_rename, /* rename mailbox */
  65.   NIL, /* status of mailbox */
  66.   mtx_open, /* open mailbox */
  67.   mtx_close, /* close mailbox */
  68.   NIL, /* fetch message "fast" attributes */
  69.   NIL, /* fetch message flags */
  70.   NIL, /* fetch overview */
  71.   NIL, /* fetch message envelopes */
  72.   mtx_header, /* fetch message header */
  73.   mtx_text, /* fetch message body */
  74.   NIL, /* fetch partial message text */
  75.   NIL, /* unique identifier */
  76.   NIL, /* message number */
  77.   NIL, /* modify flags */
  78.   mtx_flagmsg, /* per-message modify flags */
  79.   NIL, /* search for message based on criteria */
  80.   NIL, /* sort messages */
  81.   NIL, /* thread messages */
  82.   mtx_ping, /* ping mailbox to see if still alive */
  83.   mtx_check, /* check for new messages */
  84.   mtx_expunge, /* expunge deleted messages */
  85.   mtx_copy, /* copy messages to another mailbox */
  86.   mtx_append, /* append string message to mailbox */
  87.   NIL /* garbage collect stream */
  88. };
  89. /* prototype stream */
  90. MAILSTREAM mtxproto = {&mtxdriver};
  91. /* MTX mail validate mailbox
  92.  * Accepts: mailbox name
  93.  * Returns: our driver if name is valid, NIL otherwise
  94.  */
  95. DRIVER *mtx_valid (char *name)
  96. {
  97.   char tmp[MAILTMPLEN];
  98.   return mtx_isvalid (name,tmp) ? &mtxdriver : (DRIVER *) NIL;
  99. }
  100. /* MTX mail test for valid mailbox
  101.  * Accepts: mailbox name
  102.  * Returns: T if valid, NIL otherwise
  103.  */
  104. long mtx_isvalid (char *name,char *tmp)
  105. {
  106.   int fd;
  107.   long ret = NIL;
  108.   char *s;
  109.   struct stat sbuf;
  110.   errno = EINVAL; /* assume invalid argument */
  111. /* if file, get its status */
  112.   if ((*name != '{') && mailboxfile (tmp,name) && !stat (tmp,&sbuf)) {
  113.     if (!sbuf.st_size)errno = 0;/* empty file */
  114.     else if ((fd = open (tmp,O_BINARY|O_RDONLY,NIL)) >= 0) {
  115.       memset (tmp,'',MAILTMPLEN);
  116.       if ((read (fd,tmp,64) >= 0) && (s = strchr (tmp,'15')) &&
  117.   (s[1] == '12')) { /* valid format? */
  118. *s = ''; /* tie off header */
  119. /* must begin with dd-mmm-yy" */
  120. ret = (((tmp[2] == '-' && tmp[6] == '-') ||
  121. (tmp[1] == '-' && tmp[5] == '-')) &&
  122.        (s = strchr (tmp+20,',')) && strchr (s+2,';')) ? T : NIL;
  123.       }
  124.       else errno = -1; /* bogus format */
  125.       close (fd); /* close the file */
  126.     }
  127.   }
  128. /* in case INBOX but not mtx format */
  129.   else if ((errno == ENOENT) && ((name[0] == 'I') || (name[0] == 'i')) &&
  130.    ((name[1] == 'N') || (name[1] == 'n')) &&
  131.    ((name[2] == 'B') || (name[2] == 'b')) &&
  132.    ((name[3] == 'O') || (name[3] == 'o')) &&
  133.    ((name[4] == 'X') || (name[4] == 'x')) && !name[5]) errno = -1;
  134.   return ret; /* return what we should */
  135. }
  136. /* MTX manipulate driver parameters
  137.  * Accepts: function code
  138.  *     function-dependent value
  139.  * Returns: function-dependent return value
  140.  */
  141. void *mtx_parameters (long function,void *value)
  142. {
  143.   return NIL;
  144. }
  145. /* MTX mail scan mailboxes
  146.  * Accepts: mail stream
  147.  *     reference
  148.  *     pattern to search
  149.  *     string to scan
  150.  */
  151. void mtx_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents)
  152. {
  153.   if (stream) dummy_scan (NIL,ref,pat,contents);
  154. }
  155. /* MTX mail list mailboxes
  156.  * Accepts: mail stream
  157.  *     reference
  158.  *     pattern to search
  159.  */
  160. void mtx_list (MAILSTREAM *stream,char *ref,char *pat)
  161. {
  162.   if (stream) dummy_list (stream,ref,pat);
  163. }
  164. /* MTX mail list subscribed mailboxes
  165.  * Accepts: mail stream
  166.  *     reference
  167.  *     pattern to search
  168.  */
  169. void mtx_lsub (MAILSTREAM *stream,char *ref,char *pat)
  170. {
  171.   if (stream) dummy_lsub (stream,ref,pat);
  172. }
  173. /* MTX mail create mailbox
  174.  * Accepts: MAIL stream
  175.  *     mailbox name to create
  176.  * Returns: T on success, NIL on failure
  177.  */
  178. long mtx_create (MAILSTREAM *stream,char *mailbox)
  179. {
  180.   return dummy_create (stream,mailbox);
  181. }
  182. /* MTX mail delete mailbox
  183.  * Accepts: MAIL stream
  184.  *     mailbox name to delete
  185.  * Returns: T on success, NIL on failure
  186.  */
  187. long mtx_delete (MAILSTREAM *stream,char *mailbox)
  188. {
  189.   return dummy_delete (stream,mailbox);
  190. }
  191. /* MTX mail rename mailbox
  192.  * Accepts: MAIL stream
  193.  *     old mailbox name
  194.  *     new mailbox name (or NIL for delete)
  195.  * Returns: T on success, NIL on failure
  196.  */
  197. long mtx_rename (MAILSTREAM *stream,char *old,char *newname)
  198. {
  199.   return dummy_rename (stream,old,newname);
  200. }
  201. /* MTX mail open
  202.  * Accepts: stream to open
  203.  * Returns: stream on success, NIL on failure
  204.  */
  205. MAILSTREAM *mtx_open (MAILSTREAM *stream)
  206. {
  207.   long i;
  208.   int fd;
  209.   char *s;
  210.   char tmp[MAILTMPLEN];
  211. /* return prototype for OP_PROTOTYPE call */
  212.   if (!stream) return &mtxproto;
  213.   if (stream->local) fatal ("mtx recycle stream");
  214.   if (!mailboxfile (tmp,stream->mailbox))
  215.     return (MAILSTREAM *) mtx_badname (tmp,stream->mailbox);
  216.   if (((fd = open (tmp,O_BINARY|(stream->rdonly ? O_RDONLY:O_RDWR),NIL)) < 0)
  217.       && (strcmp (ucase (stream->mailbox),"INBOX") ||
  218.   ((fd = open (tmp,O_BINARY|O_RDWR|O_CREAT|O_EXCL,S_IREAD|S_IWRITE))
  219.    < 0))) { /* open, possibly creating INBOX */
  220.     sprintf (tmp,"Can't open mailbox: %s",strerror (errno));
  221.     mm_log (tmp,ERROR);
  222.     return NIL;
  223.   }
  224.   stream->local = fs_get (sizeof (MTXLOCAL));
  225. /* canonicalize the stream mailbox name */
  226.   fs_give ((void **) &stream->mailbox);
  227.   if (s = strchr ((s = strrchr (tmp,'\')) ? s : tmp,'.')) *s = '';
  228.   stream->mailbox = cpystr (tmp);
  229.   LOCAL->fd = fd; /* note the file */
  230.   LOCAL->filesize = 0; /* initialize parsed file size */
  231.   LOCAL->buf = NIL; /* initially no local buffer */
  232.   stream->sequence++; /* bump sequence number */
  233.   stream->uid_validity = time (0);
  234. /* parse mailbox */
  235.   stream->nmsgs = stream->recent = 0;
  236.   if (!mtx_ping (stream)) return NIL;
  237.   if (!stream->nmsgs) mm_log ("Mailbox is empty",(long) NIL);
  238.   stream->perm_seen = stream->perm_deleted =
  239.     stream->perm_flagged = stream->perm_answered = stream->perm_draft =
  240.       stream->rdonly ? NIL : T;
  241.   stream->perm_user_flags = stream->rdonly ? NIL : 0xffffffff;
  242.   return stream; /* return stream to caller */
  243. }
  244. /* MTX mail close
  245.  * Accepts: MAIL stream
  246.  *     close options
  247.  */
  248. void mtx_close (MAILSTREAM *stream,long options)
  249. {
  250.   if (stream && LOCAL) { /* only if a file is open */
  251.     int silent = stream->silent;
  252.     stream->silent = T;
  253.     if (options & CL_EXPUNGE) mtx_expunge (stream);
  254.     close (LOCAL->fd); /* close the local file */
  255.     if (LOCAL->buf) fs_give ((void **) &LOCAL->buf);
  256. /* nuke the local data */
  257.     fs_give ((void **) &stream->local);
  258.     stream->dtb = NIL; /* log out the DTB */
  259.   }
  260. }
  261. /* MTX mail fetch message header
  262.  * Accepts: MAIL stream
  263.  *     message # to fetch
  264.  *     pointer to returned header text length
  265.  *     option flags
  266.  * Returns: message header in RFC822 format
  267.  */
  268. char *mtx_header (MAILSTREAM *stream,unsigned long msgno,unsigned long *length,
  269.   long flags)
  270. {
  271.   *length = 0; /* default to empty */
  272.   if (flags & FT_UID) return "";/* UID call "impossible" */
  273. /* get to header position */
  274.   lseek (LOCAL->fd,mtx_hdrpos (stream,msgno,length),L_SET);
  275. /* is buffer big enough? */
  276.   if (LOCAL->buf) fs_give ((void **) &LOCAL->buf);
  277.   LOCAL->buf = (char *) fs_get ((size_t) *length + 1);
  278.   LOCAL->buf[*length] = ''; /* tie off string */
  279. /* slurp the data */
  280.   read (LOCAL->fd,LOCAL->buf,(size_t) *length);
  281.   return LOCAL->buf;
  282. }
  283. /* MTX mail fetch message text (body only)
  284.  * Accepts: MAIL stream
  285.  *     message # to fetch
  286.  *     pointer to returned header text length
  287.  *     option flags
  288.  * Returns: T, always
  289.  */
  290. long mtx_text (MAILSTREAM *stream,unsigned long msgno,STRING *bs,long flags)
  291. {
  292.   MESSAGECACHE *elt;
  293.   FDDATA d;
  294.   unsigned long hdrsize,hdrpos;
  295. /* UID call "impossible" */
  296.   if (flags & FT_UID) return NIL;
  297.   elt = mail_elt (stream,msgno);/* if message not seen */
  298.   if (elt->seen && !(flags & FT_PEEK)) {
  299.     elt->seen = T; /* mark message as seen */
  300. /* recalculate status */
  301.     mtx_update_status (stream,msgno);
  302.     mm_flags (stream,msgno);
  303.   }
  304. /* get location of text data */
  305.   hdrpos = mtx_hdrpos (stream,msgno,&hdrsize);
  306.   d.fd = LOCAL->fd; /* set initial stringstruct */
  307.   d.pos = hdrpos + hdrsize;
  308. /* flush old buffer */
  309.   if (LOCAL->buf) fs_give ((void **) &LOCAL->buf);
  310.   d.chunk = LOCAL->buf = (char *) fs_get ((size_t) d.chunksize = CHUNK);
  311.   INIT (bs,fd_string,(void *) &d,elt->rfc822_size - hdrsize);
  312.   return T; /* success */
  313. }
  314. /* MTX mail per-message modify flags
  315.  * Accepts: MAIL stream
  316.  *     message cache element
  317.  */
  318. void mtx_flagmsg (MAILSTREAM *stream,MESSAGECACHE *elt)
  319. {
  320. /* recalculate status */
  321.   mtx_update_status (stream,elt->msgno,NIL);
  322. }
  323. /* MTX mail ping mailbox
  324.  * Accepts: MAIL stream
  325.  * Returns: T if stream still alive, NIL if not
  326.  */
  327. long mtx_ping (MAILSTREAM *stream)
  328. {
  329. /* punt if stream no longer alive */
  330.   if (!(stream && LOCAL)) return NIL;
  331. /* parse mailbox, punt if parse dies */
  332.   return (mtx_parse (stream)) ? T : NIL;
  333. }
  334. /* MTX mail check mailbox (reparses status too)
  335.  * Accepts: MAIL stream
  336.  */
  337. void mtx_check (MAILSTREAM *stream)
  338. {
  339.   unsigned long i = 1;
  340.   if (mtx_ping (stream)) { /* ping mailbox */
  341. /* get new message status */
  342.     while (i <= stream->nmsgs) mail_elt (stream,i++);
  343.     mm_log ("Check completed",(long) NIL);
  344.   }
  345. }
  346. /* MTX mail expunge mailbox
  347.  * Accepts: MAIL stream
  348.  */
  349. void mtx_expunge (MAILSTREAM *stream)
  350. {
  351.   unsigned long i = 1;
  352.   unsigned long j,k,m,recent;
  353.   unsigned long n = 0;
  354.   unsigned long delta = 0;
  355.   MESSAGECACHE *elt;
  356.   char tmp[MAILTMPLEN];
  357. /* do nothing if stream dead */
  358.   if (!mtx_ping (stream)) return;
  359.   if (stream->rdonly) { /* won't do on readonly files! */
  360.     mm_log ("Expunge ignored on readonly mailbox",WARN);
  361.     return;
  362.   }
  363.   mm_critical (stream); /* go critical */
  364.   recent = stream->recent; /* get recent now that pinged */ 
  365.   while (i <= stream->nmsgs) { /* for each message */
  366.     elt = mail_elt (stream,i); /* get cache element */
  367. /* number of bytes to smash or preserve */
  368.     k = elt->private.special.text.size + elt->rfc822_size;
  369.     if (elt->deleted) { /* if deleted */
  370.       if (elt->recent) --recent;/* if recent, note one less recent message */
  371.       delta += k; /* number of bytes to delete */
  372.       mail_expunged (stream,i); /* notify upper levels */
  373.       n++; /* count up one more deleted message */
  374.     }
  375.     else if (i++ && delta) { /* preserved message */
  376. /* first byte to preserve */
  377.       j = elt->private.special.offset;
  378.       do { /* read from source position */
  379. m = min (k,(unsigned long) MAILTMPLEN);
  380. lseek (LOCAL->fd,j,SEEK_SET);
  381. read (LOCAL->fd,tmp,(size_t) m);
  382. /* write to destination position */
  383. lseek (LOCAL->fd,j - delta,SEEK_SET);
  384. write (LOCAL->fd,tmp,(size_t) m);
  385. j += m; /* next chunk, perhaps */
  386.       } while (k -= m); /* until done */
  387.       elt->private.special.offset -= delta;
  388.     }
  389.   }
  390.   if (n) { /* truncate file after last message */
  391.     chsize (LOCAL->fd,LOCAL->filesize -= delta);
  392.     sprintf (tmp,"Expunged %ld messages",n);
  393.     mm_log (tmp,(long) NIL); /* output the news */
  394.   }
  395.   else mm_log ("No messages deleted, so no update needed",(long) NIL);
  396.   mm_nocritical (stream); /* release critical */
  397. /* notify upper level of new mailbox size */
  398.   mail_exists (stream,stream->nmsgs);
  399.   mail_recent (stream,recent);
  400. }
  401. /* MTX mail copy message(s)
  402.  * Accepts: MAIL stream
  403.  *     sequence
  404.  *     destination mailbox
  405.  *     copy options
  406.  * Returns: T if success, NIL if failed
  407.  */
  408. long mtx_copy (MAILSTREAM *stream,char *sequence,char *mailbox,long options)
  409. {
  410.   char tmp[MAILTMPLEN];
  411.   struct stat sbuf;
  412.   MESSAGECACHE *elt;
  413.   unsigned long i,j,k;
  414.   long ret = LONGT;
  415.   int fd;
  416.   mailproxycopy_t pc =
  417.     (mailproxycopy_t) mail_parameters (stream,GET_MAILPROXYCOPY,NIL);
  418.   if (!((options & CP_UID) ? mail_uid_sequence (stream,sequence) :
  419. mail_sequence (stream,sequence))) return NIL;
  420.   if (!mtx_isvalid (mailbox,tmp)) switch (errno) {
  421.   case ENOENT: /* no such file? */
  422.     mm_notify (stream,"[TRYCREATE] Must create mailbox before append",
  423.        (long) NIL);
  424.     return NIL;
  425.   case 0: /* merely empty file? */
  426.     break;
  427.   case EINVAL: /* name is bogus */
  428.     if (pc) return (*pc) (stream,sequence,mailbox,options);
  429.     return mtx_badname (tmp,mailbox);
  430.   default: /* file exists, but not valid format */
  431.     if (pc) return (*pc) (stream,sequence,mailbox,options);
  432.     sprintf (tmp,"Not a MTX-format mailbox: %s",mailbox);
  433.     mm_log (tmp,ERROR);
  434.     return NIL;
  435.   }
  436. /* open the destination */
  437.   if ((fd = open (mailboxfile (tmp,mailbox),
  438.   O_BINARY|O_WRONLY|O_APPEND|O_CREAT,S_IREAD|S_IWRITE)) < 0) {
  439.     sprintf (tmp,"Unable to open copy mailbox: %s",strerror (errno));
  440.     mm_log (tmp,ERROR);
  441.     return NIL;
  442.   }
  443.   mm_critical (stream); /* go critical */
  444.   fstat (fd,&sbuf); /* get current file size */
  445. /* for each requested message */
  446.   for (i = 1; ret && (i <= stream->nmsgs); i++)
  447.     if ((elt = mail_elt (stream,i))->sequence) {
  448.       lseek (LOCAL->fd,elt->private.special.offset,SEEK_SET);
  449. /* number of bytes to copy */
  450.       k = elt->private.special.text.size + elt->rfc822_size;
  451.       do { /* read from source position */
  452. j = min (k,(long) MAILTMPLEN);
  453. read (LOCAL->fd,tmp,(size_t) j);
  454. if (write (fd,tmp,(size_t) j) < 0) {
  455.   sprintf (tmp,"Unable to write message: %s",strerror (errno));
  456.   mm_log (tmp,ERROR);
  457.   chsize (fd,sbuf.st_size);
  458.   j = k;
  459.   ret = NIL; /* note error */
  460.   break;
  461. }
  462.       } while (k -= j); /* until done */
  463.     }
  464.   close (fd); /* close the file */
  465.   mm_nocritical (stream); /* release critical */
  466. /* delete all requested messages */
  467.   if (ret && (options & CP_MOVE)) for (i = 1; i <= stream->nmsgs; i++)
  468.     if ((elt = mail_elt (stream,i))->sequence) {
  469.       elt->deleted = T; /* mark message deleted */
  470. /* recalculate status */
  471.       mtx_update_status (stream,i);
  472.     }
  473.   return ret;
  474. }
  475. /* MTX mail append message from stringstruct
  476.  * Accepts: MAIL stream
  477.  *     destination mailbox
  478.  *     stringstruct of messages to append
  479.  * Returns: T if append successful, else NIL
  480.  */
  481. long mtx_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  482.   STRING *message)
  483. {
  484.   struct stat sbuf;
  485.   int fd,zone;
  486.   char tmp[MAILTMPLEN];
  487.   MESSAGECACHE elt;
  488.   long i;
  489.   long size = SIZE (message);
  490.   unsigned long uf;
  491.   short f = (short) mail_parse_flags (stream,flags,&uf);
  492.   if (date) { /* want to preserve date? */
  493. /* yes, parse date into an elt */
  494.     if (!mail_parse_date (&elt,date)) {
  495.       sprintf (tmp,"Bad date in append: %.80s",date);
  496.       mm_log (tmp,ERROR);
  497.       return NIL;
  498.     }
  499.   }
  500.   if (!mtx_isvalid (mailbox,tmp)) switch (errno) {
  501.   case ENOENT: /* no such file? */
  502.     if (((mailbox[0] == 'I') || (mailbox[0] == 'i')) &&
  503. ((mailbox[1] == 'N') || (mailbox[1] == 'n')) &&
  504. ((mailbox[2] == 'B') || (mailbox[2] == 'b')) &&
  505. ((mailbox[3] == 'O') || (mailbox[3] == 'o')) &&
  506. ((mailbox[4] == 'X') || (mailbox[4] == 'x')) && !mailbox[5])
  507.       mtx_create (NIL,"INBOX");
  508.     else {
  509.       mm_notify (stream,"[TRYCREATE] Must create mailbox before append",NIL);
  510.       return NIL;
  511.     }
  512. /* falls through */
  513.   case 0: /* merely empty file? */
  514.     break;
  515.   case EINVAL: /* name is bogus */
  516.     return mtx_badname (tmp,mailbox);
  517.   default: /* file exists, but not valid format */
  518.     sprintf (tmp,"Not a Mtx-format mailbox: %.80s",mailbox);
  519.     mm_log (tmp,ERROR);
  520.     return NIL;
  521.   }
  522. /* open the destination */
  523.   if ((fd = open (mailboxfile (tmp,mailbox),
  524.   O_BINARY|O_WRONLY|O_APPEND|O_CREAT,S_IREAD|S_IWRITE)) < 0) {
  525.     sprintf (tmp,"Can't open append mailbox: %s",strerror (errno));
  526.     mm_log (tmp,ERROR);
  527.     return NIL;
  528.   }
  529.   mm_critical (stream); /* go critical */
  530.   fstat (fd,&sbuf); /* get current file size */
  531.   zone = -(((int)timezone)/ 60);/* get timezone from TZ environment stuff */
  532.   if (date) mail_date(tmp,&elt);/* use date if given */
  533.   else internal_date (tmp); /* else use time now */
  534. /* add remainder of header */
  535.   sprintf (tmp + strlen (tmp),",%ld;0000000000%02o1512",size,f);
  536. /* write header */
  537.   if (write (fd,tmp,strlen (tmp)) < 0) {
  538.     sprintf (tmp,"Header write failed: %s",strerror (errno));
  539.     mm_log (tmp,ERROR);
  540.     chsize (fd,sbuf.st_size);
  541.   }  
  542.   else while (size) { /* while there is more data to write */
  543.     if (write (fd,message->curpos,i = min (size,message->cursize)) < 0) {
  544.       sprintf (tmp,"Message append failed: %s",strerror (errno));
  545.       mm_log (tmp,ERROR);
  546.       chsize (fd,sbuf.st_size);
  547.       break;
  548.     }
  549.     size -= i; /* note that we wrote out this much */
  550.     message->curpos += i;
  551.     message->cursize -= i;
  552.     (message->dtb->next) (message);
  553.   }
  554.   close (fd); /* close the file */
  555.   mm_nocritical (stream); /* release critical */
  556.   return T; /* return success */
  557. }
  558. /* Return bad file name error message
  559.  * Accepts: temporary buffer
  560.  *     file name
  561.  * Returns: long NIL always
  562.  */
  563. long mtx_badname (char *tmp,char *s)
  564. {
  565.   sprintf (tmp,"Invalid mailbox name: %s",s);
  566.   mm_log (tmp,ERROR);
  567.   return (long) NIL;
  568. }
  569. /* Parse mailbox
  570.  * Accepts: MAIL stream
  571.  * Returns: T if parse OK
  572.  *     NIL if failure, stream aborted
  573.  */
  574. long mtx_parse (MAILSTREAM *stream)
  575. {
  576.   struct stat sbuf;
  577.   MESSAGECACHE *elt = NIL;
  578.   char *s,*t,*x;
  579.   char lbuf[65],tmp[MAILTMPLEN];
  580.   long i;
  581.   long curpos = LOCAL->filesize;
  582.   long nmsgs = stream->nmsgs;
  583.   long recent = stream->recent;
  584.   fstat (LOCAL->fd,&sbuf); /* get status */
  585.   if (sbuf.st_size < curpos) { /* sanity check */
  586.     sprintf (tmp,"Mailbox shrank from %ld to %ld!",curpos,sbuf.st_size);
  587.     mm_log (tmp,ERROR);
  588.     mtx_close (stream,NIL);
  589.     return NIL;
  590.   }
  591. /* while there is stuff to parse */
  592.   while (i = sbuf.st_size - curpos) {
  593. /* get to that position in the file */
  594.     lseek (LOCAL->fd,curpos,SEEK_SET);
  595.     if ((i = read (LOCAL->fd,lbuf,64)) <= 0) {
  596.       sprintf (tmp,"Unable to read internal header at %ld, size = %ld: %s",
  597.        curpos,sbuf.st_size,i ? strerror (errno) : "no data read");
  598.       mm_log (tmp,ERROR);
  599.       mtx_close (stream,NIL);
  600.       return NIL;
  601.     }
  602.     lbuf[i] = ''; /* tie off buffer just in case */
  603.     if (!((s = strchr (lbuf,'15')) && (s[1] == '12'))) {
  604.       sprintf (tmp,"Unable to find end of line at %ld in %ld bytes, text: %s",
  605.        curpos,i,lbuf);
  606.       mm_log (tmp,ERROR);
  607.       mtx_close (stream,NIL);
  608.       return NIL;
  609.     }
  610.     *s = ''; /* tie off header line */
  611.     i = (s + 2) - lbuf; /* note start of text offset */
  612.     if (!((s = strchr (lbuf,',')) && (t = strchr (s+1,';')))) {
  613.       sprintf (tmp,"Unable to parse internal header at %ld: %s",curpos,lbuf);
  614.       mm_log (tmp,ERROR);
  615.       mtx_close (stream,NIL);
  616.       return NIL;
  617.     }
  618.     *s++ = ''; *t++ = ''; /* tie off fields */
  619. /* intantiate an elt for this message */
  620.     (elt = mail_elt (stream,++nmsgs))->valid = T;
  621.     elt->private.uid = ++stream->uid_last;
  622. /* note file offset of header */
  623.     elt->private.special.offset = curpos;
  624. /* as well as offset from header of message */
  625.     elt->private.special.text.size = i;
  626. /* header size not known yet */
  627.     elt->private.msg.header.text.size = 0;
  628. /* parse the header components */
  629.     if (!(mail_parse_date (elt,lbuf) &&
  630.   (elt->rfc822_size = strtol (x = s,&s,10)) && (!(s && *s)) &&
  631.   isdigit (t[0]) && isdigit (t[1]) && isdigit (t[2]) &&
  632.   isdigit (t[3]) && isdigit (t[4]) && isdigit (t[5]) &&
  633.   isdigit (t[6]) && isdigit (t[7]) && isdigit (t[8]) &&
  634.   isdigit (t[9]) && isdigit (t[10]) && isdigit (t[11]) && !t[12])) {
  635.       sprintf (tmp,"Unable to parse internal header elements at %ld: %s,%s;%s",
  636.        curpos,lbuf,x,t);
  637.       mtx_close (stream,NIL);
  638.       return NIL;
  639.     }
  640. /* update current position to next header */
  641.     curpos += i + elt->rfc822_size;
  642. /* calculate system flags */
  643.     if ((i = ((t[10]-'0') * 8) + t[11]-'0') & fSEEN) elt->seen = T;
  644.     if (i & fDELETED) elt->deleted = T;
  645.     if (i & fFLAGGED) elt->flagged = T;
  646.     if (i & fANSWERED) elt->answered = T;
  647.     if (i & fDRAFT) elt->draft = T;
  648.     if (curpos > sbuf.st_size) {
  649.       sprintf (tmp,"Last message (at %lu) runs past end of file (%lu > %lu)",
  650.        elt->private.special.offset,curpos,sbuf.st_size);
  651.       mm_log (tmp,ERROR);
  652.       mtx_close (stream,NIL);
  653.       return NIL;
  654.     }
  655.   }
  656. /* update parsed file size */
  657.   LOCAL->filesize = sbuf.st_size;
  658.   mail_exists (stream,nmsgs); /* notify upper level of new mailbox size */
  659.   mail_recent (stream,recent); /* and of change in recent messages */
  660.   return T; /* return the winnage */
  661. }
  662. /* Update status string
  663.  * Accepts: MAIL stream
  664.  *     message number
  665.  */
  666. void mtx_update_status (MAILSTREAM *stream,unsigned long msgno)
  667. {
  668.   char tmp[MAILTMPLEN];
  669.   MESSAGECACHE *elt = mail_elt (stream,msgno);
  670.   unsigned long j,k = 0;
  671. /* not if readonly you don't */
  672.   if (stream->rdonly || !elt->valid) return;
  673.   j = elt->user_flags; /* get user flags */
  674. /* reverse bits (dontcha wish we had CIRC?) */
  675.   while (j) k |= 1 << 29 - find_rightmost_bit (&j);
  676.   sprintf (tmp,"%010lo%02o",k, /* print new flag string */
  677.    fOLD + (fSEEN * elt->seen) + (fDELETED * elt->deleted) +
  678.    (fFLAGGED * elt->flagged) + (fANSWERED * elt->answered) +
  679.    (fDRAFT * elt->draft));
  680. /* get to that place in the file */
  681.   lseek (LOCAL->fd,(off_t) elt->private.special.offset +
  682.  elt->private.special.text.size - 14,SEEK_SET);
  683.   write (LOCAL->fd,tmp,12); /* write new flags */
  684. }
  685. /* MTX locate header for a message
  686.  * Accepts: MAIL stream
  687.  *     message number
  688.  *     pointer to returned header size
  689.  * Returns: position of header in file
  690.  */
  691. unsigned long mtx_hdrpos (MAILSTREAM *stream,unsigned long msgno,
  692.   unsigned long *size)
  693. {
  694.   unsigned long siz;
  695.   size_t i = 0;
  696.   int q = 0;
  697.   char *s,tmp[MAILTMPLEN];
  698.   MESSAGECACHE *elt = mail_elt (stream,msgno);
  699.   long pos = elt->private.special.offset + elt->private.special.text.size;
  700. /* is header size known? */
  701.   if (!(*size = elt->private.msg.header.text.size)) {
  702. /* get to header position */
  703.     lseek (LOCAL->fd,pos,SEEK_SET);
  704. /* search message for CRLF CRLF */
  705.     for (siz = 1; siz <= elt->rfc822_size; siz++) {
  706.       if (!i && /* buffer empty? */
  707.   (read (LOCAL->fd,s = tmp,
  708.  i = (size_t) min(elt->rfc822_size-siz,(long)MAILTMPLEN))<= 0))
  709. return pos;
  710.       else i--;
  711.       switch (q) { /* sniff at buffer */
  712.       case 0: /* first character */
  713. q = (*s++ == '15') ? 1 : 0;
  714. break;
  715.       case 1: /* second character */
  716. q = (*s++ == '12') ? 2 : 0;
  717. break;
  718.       case 2: /* third character */
  719. q = (*s++ == '15') ? 3 : 0;
  720. break;
  721.       case 3: /* fourth character */
  722. if (*s++ == '12') { /* have the sequence? */
  723. /* yes, note for later */
  724.   elt->private.msg.header.text.size = (*size = siz);
  725.   return pos; /* return to caller */
  726. }
  727. q = 0; /* lost... */
  728. break;
  729.       }
  730.     }
  731.   }
  732.   return pos; /* have position */
  733. }