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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: MH mail routines
  3.  *
  4.  * Author(s): 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: 23 February 1992
  13.  * Last Edited: 19 October 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 <stdio.h>
  36. #include <ctype.h>
  37. #include <errno.h>
  38. extern int errno; /* just in case */
  39. #include "mail.h"
  40. #include "osdep.h"
  41. #include <pwd.h>
  42. #include <sys/stat.h>
  43. #include <sys/time.h>
  44. #include "mh.h"
  45. #include "misc.h"
  46. #include "dummy.h"
  47. /* MH mail routines */
  48. /* Driver dispatch used by MAIL */
  49. DRIVER mhdriver = {
  50.   "mh", /* driver name */
  51. /* driver flags */
  52.   DR_MAIL|DR_LOCAL|DR_NOFAST|DR_NAMESPACE|DR_NOSTICKY,
  53.   (DRIVER *) NIL, /* next driver */
  54.   mh_valid, /* mailbox is valid for us */
  55.   mh_parameters, /* manipulate parameters */
  56.   mh_scan, /* scan mailboxes */
  57.   mh_list, /* find mailboxes */
  58.   mh_lsub, /* find subscribed mailboxes */
  59.   mh_subscribe, /* subscribe to mailbox */
  60.   mh_unsubscribe, /* unsubscribe from mailbox */
  61.   mh_create, /* create mailbox */
  62.   mh_delete, /* delete mailbox */
  63.   mh_rename, /* rename mailbox */
  64.   NIL, /* status of mailbox */
  65.   mh_open, /* open mailbox */
  66.   mh_close, /* close mailbox */
  67.   mh_fast, /* fetch message "fast" attributes */
  68.   NIL, /* fetch message flags */
  69.   NIL, /* fetch overview */
  70.   NIL, /* fetch message envelopes */
  71.   mh_header, /* fetch message header */
  72.   mh_text, /* fetch message body */
  73.   NIL, /* fetch partial message text */
  74.   NIL, /* unique identifier */
  75.   NIL, /* message number */
  76.   NIL, /* modify flags */
  77.   NIL, /* per-message modify flags */
  78.   NIL, /* search for message based on criteria */
  79.   NIL, /* sort messages */
  80.   NIL, /* thread messages */
  81.   mh_ping, /* ping mailbox to see if still alive */
  82.   mh_check, /* check for new messages */
  83.   mh_expunge, /* expunge deleted messages */
  84.   mh_copy, /* copy messages to another mailbox */
  85.   mh_append, /* append string message to mailbox */
  86.   NIL /* garbage collect stream */
  87. };
  88. /* prototype stream */
  89. MAILSTREAM mhproto = {&mhdriver};
  90. /* MH mail validate mailbox
  91.  * Accepts: mailbox name
  92.  * Returns: our driver if name is valid, NIL otherwise
  93.  */
  94. DRIVER *mh_valid (char *name)
  95. {
  96.   char tmp[MAILTMPLEN];
  97.   return mh_isvalid (name,tmp,T) ? &mhdriver : NIL;
  98. }
  99. /* MH mail test for valid mailbox
  100.  * Accepts: mailbox name
  101.  *     temporary buffer to use
  102.  *     syntax only test flag
  103.  * Returns: T if valid, NIL otherwise
  104.  */
  105. static char *mh_profile = NIL; /* holds MH profile */
  106. static char *mh_path = NIL; /* holds MH path name */
  107. static long mh_once = 0; /* already through this code */
  108. int mh_isvalid (char *name,char *tmp,long synonly)
  109. {
  110.   struct stat sbuf;
  111. /* name must be #MHINBOX or #mh/... */
  112.   if (strcmp (ucase (strcpy (tmp,name)),"#MHINBOX") &&
  113.       !(tmp[0] == '#' && tmp[1] == 'M' && tmp[2] == 'H' && tmp[3] == '/')) {
  114.     errno = EINVAL; /* bogus name */
  115.     return NIL;
  116.   }
  117.   if (!mh_path) { /* have MH path yet? */
  118.     char *s,*t,*v;
  119.     int fd;
  120.     if (mh_once++) return NIL; /* only do this code once */
  121.     if (!mh_profile) { /* have MH profile? */
  122.       sprintf (tmp,"%s/%s",myhomedir (),MHPROFILE);
  123.       mh_profile = cpystr (tmp);
  124.     }
  125.     if ((fd = open (tmp,O_RDONLY,NIL)) < 0) {
  126.       strcat (tmp," not found, mh format names disabled");
  127.       mm_log (tmp,WARN);
  128.       return NIL;
  129.     }
  130.     fstat (fd,&sbuf); /* yes, get size and read file */
  131.     read (fd,(t = (char *) fs_get (sbuf.st_size + 1)),sbuf.st_size);
  132.     close (fd); /* don't need the file any more */
  133.     t[sbuf.st_size] = ''; /* tie it off */
  134. /* parse profile file */
  135.     for (s = strtok (t,"rn"); s && *s; s = strtok (NIL,"rn")) {
  136. /* found space in line? */
  137.       if (v = strpbrk (s," t")) {
  138. *v++ = ''; /* tie off, is keyword "Path:"? */
  139. if (!strcmp (lcase (s),"path:")) {
  140. /* skip whitespace */
  141.   while ((*v == ' ') || (*v == 't')) ++v;
  142.   if (*v == '/') s = v; /* absolute path? */
  143.   else sprintf (s = tmp,"%s/%s",myhomedir (),v);
  144.   mh_path = cpystr (s); /* copy name */
  145.   break; /* don't need to look at rest of file */
  146. }
  147.       }
  148.     }
  149.     fs_give ((void **) &t); /* flush profile text */
  150.     if (!mh_path) { /* default path if not in the profile */
  151.       sprintf (tmp,"%s/%s",myhomedir (),MHPATH);
  152.       mh_path = cpystr (tmp);
  153.     }
  154.   }
  155.   if (synonly) return T; /* all done if syntax only check */
  156.   errno = NIL; /* zap error */
  157. /* validate name as directory */
  158.   return ((stat (mh_file (tmp,name),&sbuf) == 0) &&
  159.   (sbuf.st_mode & S_IFMT) == S_IFDIR);
  160. }
  161. /* MH manipulate driver parameters
  162.  * Accepts: function code
  163.  *     function-dependent value
  164.  * Returns: function-dependent return value
  165.  */
  166. void *mh_parameters (long function,void *value)
  167. {
  168.   switch ((int) function) {
  169.   case SET_MHPROFILE:
  170.     if (mh_profile) fs_give ((void **) &mh_profile);
  171.     mh_profile = cpystr ((char *) value);
  172.     break;
  173.   case GET_MHPROFILE:
  174.     value = (void *) mh_profile;
  175.     break;
  176.   case SET_MHPATH:
  177.     if (mh_path) fs_give ((void **) &mh_path);
  178.     mh_path = cpystr ((char *) value);
  179.     break;
  180.   case GET_MHPATH:
  181.     value = (void *) mh_path;
  182.     break;
  183.   default:
  184.     value = NIL; /* error case */
  185.     break;
  186.   }
  187.   return NIL;
  188. }
  189. /* MH scan mailboxes
  190.  * Accepts: mail stream
  191.  *     reference
  192.  *     pattern to search
  193.  *     string to scan
  194.  */
  195. void mh_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents)
  196. {
  197.   char tmp[MAILTMPLEN];
  198.   if (mh_canonicalize (tmp,ref,pat))
  199.     mm_log ("Scan not valid for mh mailboxes",ERROR);
  200. }
  201. /* MH list mailboxes
  202.  * Accepts: mail stream
  203.  *     reference
  204.  *     pattern to search
  205.  */
  206. void mh_list (MAILSTREAM *stream,char *ref,char *pat)
  207. {
  208.   char *s,test[MAILTMPLEN],file[MAILTMPLEN];
  209.   long i = 0;
  210.   if (!pat || !*pat) { /* empty pattern? */
  211.     if (mh_canonicalize (test,ref,"*")) {
  212. /* tie off name at root */
  213.       if (s = strchr (test,'/')) *++s = '';
  214.       else test[0] = '';
  215.       mm_list (stream,'/',test,LATT_NOSELECT);
  216.     }
  217.   }
  218. /* get canonical form of name */
  219.   else if (mh_canonicalize (test,ref,pat)) {
  220.     if (test[3] == '/') { /* looking down levels? */
  221. /* yes, found any wildcards? */
  222.       if (s = strpbrk (test,"%*")) {
  223. /* yes, copy name up to that point */
  224. strncpy (file,test+4,i = s - (test+4));
  225. file[i] = ''; /* tie off */
  226.       }
  227.       else strcpy (file,test+4);/* use just that name then */
  228. /* find directory name */
  229.       if (s = strrchr (file,'/')) {
  230. *s = ''; /* found, tie off at that point */
  231. s = file;
  232.       }
  233. /* do the work */
  234.       mh_list_work (stream,s,test,0);
  235.     }
  236. /* always an INBOX */
  237.     if (pmatch ("#MHINBOX",ucase (test)))
  238.       mm_list (stream,NIL,"#MHINBOX",LATT_NOINFERIORS);
  239.   }
  240. }
  241. /* MH list subscribed mailboxes
  242.  * Accepts: mail stream
  243.  *     reference
  244.  *     pattern to search
  245.  */
  246. void mh_lsub (MAILSTREAM *stream,char *ref,char *pat)
  247. {
  248.   void *sdb = NIL;
  249.   char *s,test[MAILTMPLEN];
  250. /* get canonical form of name */
  251.   if (mh_canonicalize (test,ref,pat) && (s = sm_read (&sdb))) {
  252.     do if (pmatch_full (s,test,'/')) mm_lsub (stream,'/',s,NIL);
  253.     while (s = sm_read (&sdb)); /* until no more subscriptions */
  254.   }
  255. }
  256. /* MH list mailboxes worker routine
  257.  * Accepts: mail stream
  258.  *     directory name to search
  259.  *     search pattern
  260.  *     search level
  261.  */
  262. void mh_list_work (MAILSTREAM *stream,char *dir,char *pat,long level)
  263. {
  264.   DIR *dp;
  265.   struct direct *d;
  266.   struct stat sbuf;
  267.   char *cp,*np,curdir[MAILTMPLEN],name[MAILTMPLEN];
  268. /* build MH name to search */
  269.   if (dir) sprintf (name,"#mh/%s/",dir);
  270.   else strcpy (name,"#mh/");
  271. /* make directory name, punt if bogus */
  272.   if (!mh_file (curdir,name)) return;
  273.   cp = curdir + strlen (curdir);/* end of directory name */
  274.   np = name + strlen (name); /* end of MH name */
  275.   if (dp = opendir (curdir)) { /* open directory */
  276.     while (d = readdir (dp)) /* scan, ignore . and numeric names */
  277.       if ((d->d_name[0] != '.') && !mh_select (d)) {
  278. strcpy (cp,d->d_name); /* make directory name */
  279. if (!stat (curdir,&sbuf) && ((sbuf.st_mode &= S_IFMT) == S_IFDIR)) {
  280.   strcpy (np,d->d_name);/* make mh name of directory name */
  281. /* yes, an MH name if full match */
  282.   if (pmatch_full (name,pat,'/')) mm_list (stream,'/',name,NIL);
  283. /* check if should recurse */
  284.   if (dmatch (name,pat,'/') &&
  285.       (level < (long) mail_parameters (NIL,GET_LISTMAXLEVEL,NIL)))
  286.     mh_list_work (stream,name+4,pat,level+1);
  287. }
  288.       }
  289.     closedir (dp); /* all done, flush directory */
  290.   }
  291. }
  292. /* MH mail subscribe to mailbox
  293.  * Accepts: mail stream
  294.  *     mailbox to add to subscription list
  295.  * Returns: T on success, NIL on failure
  296.  */
  297. long mh_subscribe (MAILSTREAM *stream,char *mailbox)
  298. {
  299.   return sm_subscribe (mailbox);
  300. }
  301. /* MH mail unsubscribe to mailbox
  302.  * Accepts: mail stream
  303.  *     mailbox to delete from subscription list
  304.  * Returns: T on success, NIL on failure
  305.  */
  306. long mh_unsubscribe (MAILSTREAM *stream,char *mailbox)
  307. {
  308.   return sm_unsubscribe (mailbox);
  309. }
  310. /* MH mail create mailbox
  311.  * Accepts: mail stream
  312.  *     mailbox name to create
  313.  * Returns: T on success, NIL on failure
  314.  */
  315. long mh_create (MAILSTREAM *stream,char *mailbox)
  316. {
  317.   char *s,tmp[MAILTMPLEN];
  318. /* assume error */
  319.   sprintf (tmp,"Can't create mailbox %.80s: invalid MH-format name",mailbox);
  320.   if (mailbox[0] == '#' && (mailbox[1] == 'm' || mailbox[1] == 'M') &&
  321.       (mailbox[2] == 'h' || mailbox[2] == 'H') && mailbox[3] == '/')
  322. /* make sure valid name */
  323.     for (s = mailbox + 4; s && *s;) {
  324.       if (isdigit (*s)) s++; /* digit, check this node further... */
  325. /* all digit node, barf */
  326.       else if (*s == '/') s = NIL;
  327. /* non-digit in node, skip to next node */
  328.       else if (s = strchr (s+1,'/')) s++;
  329.       else tmp[0] = NIL; /* no more nodes, good name */
  330.     }
  331.   if (tmp[0]) { /* was there an error in the name? */
  332.     mm_log (tmp,ERROR); /* yes, log it */
  333.     return NIL;
  334.   }
  335. /* must not already exist */
  336.   if (mh_isvalid (mailbox,tmp,NIL)) {
  337.     sprintf (tmp,"Can't create mailbox %.80s: mailbox already exists",mailbox);
  338.     mm_log (tmp,ERROR);
  339.     return NIL;
  340.   }
  341.   if (!mh_path) return NIL; /* sorry */
  342. /* try to make it */
  343.   if (!(mh_file (tmp,mailbox) && dummy_create_path (stream,strcat (tmp,"/")))){
  344.     sprintf (tmp,"Can't create mailbox %.80s: %s",mailbox,strerror (errno));
  345.     mm_log (tmp,ERROR);
  346.     return NIL;
  347.   }
  348.   return T; /* return success */
  349. }
  350. /* MH mail delete mailbox
  351.  *     mailbox name to delete
  352.  * Returns: T on success, NIL on failure
  353.  */
  354. long mh_delete (MAILSTREAM *stream,char *mailbox)
  355. {
  356.   DIR *dirp;
  357.   struct direct *d;
  358.   int i;
  359.   char tmp[MAILTMPLEN];
  360.   if (!(mailbox[0] == '#' && (mailbox[1] == 'm' || mailbox[1] == 'M') &&
  361. (mailbox[2] == 'h' || mailbox[2] == 'H') && mailbox[3] == '/')) {
  362.     sprintf (tmp,"Can't delete mailbox %.80s: invalid MH-format name",mailbox);
  363.     mm_log (tmp,ERROR);
  364.     return NIL;
  365.   }
  366. /* is mailbox valid? */
  367.   if (!mh_isvalid (mailbox,tmp,NIL)){
  368.     sprintf (tmp,"Can't delete mailbox %.80s: no such mailbox",mailbox);
  369.     mm_log (tmp,ERROR);
  370.     return NIL;
  371.   }
  372. /* get name of directory */
  373.   i = strlen (mh_file (tmp,mailbox));
  374.   if (dirp = opendir (tmp)) { /* open directory */
  375.     tmp[i++] = '/'; /* now apply trailing delimiter */
  376.     while (d = readdir (dirp)) /* massacre all numeric or comma files */
  377.       if (mh_select (d) || (*d->d_name == ',') ||
  378.   !strcmp (d->d_name,MHSEQUENCE)) {
  379. strcpy (tmp + i,d->d_name);
  380. unlink (tmp); /* sayonara */
  381.       }
  382.     closedir (dirp); /* flush directory */
  383.   }
  384. /* try to remove the directory */
  385.   if (rmdir (mh_file (tmp,mailbox))) {
  386.     sprintf (tmp,"Can't delete mailbox %.80s: %s",mailbox,strerror (errno));
  387.     mm_log (tmp,ERROR);
  388.     return NIL;
  389.   }
  390.   return T; /* return success */
  391. }
  392. /* MH mail rename mailbox
  393.  * Accepts: MH mail stream
  394.  *     old mailbox name
  395.  *     new mailbox name
  396.  * Returns: T on success, NIL on failure
  397.  */
  398. long mh_rename (MAILSTREAM *stream,char *old,char *newname)
  399. {
  400.   char c,*s,tmp[MAILTMPLEN],tmp1[MAILTMPLEN];
  401.   struct stat sbuf;
  402.   if (!(old[0] == '#' && (old[1] == 'm' || old[1] == 'M') &&
  403. (old[2] == 'h' || old[2] == 'H') && old[3] == '/'))
  404.     sprintf (tmp,"Can't delete mailbox %.80s: invalid MH-format name",old);
  405. /* old mailbox name must be valid */
  406.   else if (!mh_isvalid (old,tmp,NIL))
  407.     sprintf (tmp,"Can't rename mailbox %.80s: no such mailbox",old);
  408.   else if (!(newname[0] == '#' && (newname[1] == 'm' || newname[1] == 'M') &&
  409. (newname[2] == 'h' || newname[2] == 'H') && newname[3] == '/'))
  410.     sprintf (tmp,"Can't rename to mailbox %.80s: invalid MH-format name",
  411.      newname);
  412. /* new mailbox name must not be valid */
  413.   else if (mh_isvalid (newname,tmp,NIL))
  414.     sprintf (tmp,"Can't rename to mailbox %.80s: destination already exists",
  415.      newname);
  416. /* success if can rename the directory */
  417.   else { /* found superior to destination name? */
  418.     if (s = strrchr (mh_file (tmp1,newname),'/')) {
  419.       c = *++s; /* remember first character of inferior */
  420.       *s = ''; /* tie off to get just superior */
  421. /* name doesn't exist, create it */
  422.       if ((stat (tmp1,&sbuf) || ((sbuf.st_mode & S_IFMT) != S_IFDIR)) &&
  423.   !dummy_create (stream,tmp1)) return NIL;
  424.       *s = c; /* restore full name */
  425.     }
  426.     if (!rename (mh_file (tmp,old),tmp1)) return T;
  427.     sprintf (tmp,"Can't rename mailbox %.80s to %.80s: %s",
  428.      old,newname,strerror (errno));
  429.   }
  430.   mm_log (tmp,ERROR); /* something failed */
  431.   return NIL;
  432. }
  433. /* MH mail open
  434.  * Accepts: stream to open
  435.  * Returns: stream on success, NIL on failure
  436.  */
  437. MAILSTREAM *mh_open (MAILSTREAM *stream)
  438. {
  439.   char tmp[MAILTMPLEN];
  440.   if (!stream) return &mhproto; /* return prototype for OP_PROTOTYPE call */
  441.   if (stream->local) fatal ("mh recycle stream");
  442.   stream->local = fs_get (sizeof (MHLOCAL));
  443. /* note if an INBOX or not */
  444.   stream->inbox = !strcmp (ucase (strcpy (tmp,stream->mailbox)),"#MHINBOX");
  445.   mh_file (tmp,stream->mailbox);/* get directory name */
  446.   LOCAL->dir = cpystr (tmp); /* copy directory name for later */
  447. /* make temporary buffer */
  448.   LOCAL->buf = (char *) fs_get ((LOCAL->buflen = MAXMESSAGESIZE) + 1);
  449.   LOCAL->scantime = 0; /* not scanned yet */
  450.   LOCAL->cachedtexts = 0; /* no cached texts */
  451.   stream->sequence++; /* bump sequence number */
  452. /* parse mailbox */
  453.   stream->nmsgs = stream->recent = 0;
  454.   if (!mh_ping (stream)) return NIL;
  455.   if (!(stream->nmsgs || stream->silent))
  456.     mm_log ("Mailbox is empty",(long) NIL);
  457.   return stream; /* return stream to caller */
  458. }
  459. /* MH mail close
  460.  * Accepts: MAIL stream
  461.  *     close options
  462.  */
  463. void mh_close (MAILSTREAM *stream,long options)
  464. {
  465.   if (LOCAL) { /* only if a file is open */
  466.     int silent = stream->silent;
  467.     stream->silent = T; /* note this stream is dying */
  468.     if (options & CL_EXPUNGE) mh_expunge (stream);
  469.     if (LOCAL->dir) fs_give ((void **) &LOCAL->dir);
  470. /* free local scratch buffer */
  471.     if (LOCAL->buf) fs_give ((void **) &LOCAL->buf);
  472. /* nuke the local data */
  473.     fs_give ((void **) &stream->local);
  474.     stream->dtb = NIL; /* log out the DTB */
  475.     stream->silent = silent; /* reset silent state */
  476.   }
  477. }
  478. /* MH mail fetch fast information
  479.  * Accepts: MAIL stream
  480.  *     sequence
  481.  *     option flags
  482.  */
  483. void mh_fast (MAILSTREAM *stream,char *sequence,long flags)
  484. {
  485.   unsigned long i,j;
  486. /* ugly and slow */
  487.   if (stream && LOCAL && ((flags & FT_UID) ?
  488.   mail_uid_sequence (stream,sequence) :
  489.   mail_sequence (stream,sequence)))
  490.     for (i = 1; i <= stream->nmsgs; i++)
  491.       if (mail_elt (stream,i)->sequence) mh_header (stream,i,&j,NIL);
  492. }
  493. /* MH mail fetch message header
  494.  * Accepts: MAIL stream
  495.  *     message # to fetch
  496.  *     pointer to returned header text length
  497.  *     option flags
  498.  * Returns: message header in RFC822 format
  499.  */
  500. char *mh_header (MAILSTREAM *stream,unsigned long msgno,unsigned long *length,
  501.  long flags)
  502. {
  503.   unsigned long i,hdrsize;
  504.   int fd;
  505.   char *t;
  506.   struct stat sbuf;
  507.   struct tm *tm;
  508.   MESSAGECACHE *elt;
  509.   *length = 0; /* default to empty */
  510.   if (flags & FT_UID) return "";/* UID call "impossible" */
  511.   elt = mail_elt (stream,msgno);/* get elt */
  512.   if (!elt->private.msg.header.text.data) {
  513. /* purge cache if too big */
  514.     if (LOCAL->cachedtexts > max (stream->nmsgs * 4096,2097152)) {
  515.       mail_gc (stream,GC_TEXTS);/* just can't keep that much */
  516.       LOCAL->cachedtexts = 0;
  517.     }
  518. /* build message file name */
  519.     sprintf (LOCAL->buf,"%s/%lu",LOCAL->dir,elt->private.uid);
  520.     if ((fd = open (LOCAL->buf,O_RDONLY,NIL)) < 0) return "";
  521.     fstat (fd,&sbuf); /* get size of message */
  522. /* make plausible IMAPish date string */
  523.     tm = gmtime (&sbuf.st_mtime);
  524.     elt->day = tm->tm_mday; elt->month = tm->tm_mon + 1;
  525.     elt->year = tm->tm_year + 1900 - BASEYEAR;
  526.     elt->hours = tm->tm_hour; elt->minutes = tm->tm_min;
  527.     elt->seconds = tm->tm_sec;
  528.     elt->zhours = 0; elt->zminutes = 0;
  529. /* is buffer big enough? */
  530.     if (sbuf.st_size > LOCAL->buflen) {
  531.       fs_give ((void **) &LOCAL->buf);
  532.       LOCAL->buf = (char *) fs_get ((LOCAL->buflen = sbuf.st_size) + 1);
  533.     }
  534. /* slurp message */
  535.     read (fd,LOCAL->buf,sbuf.st_size);
  536. /* tie off file */
  537.     LOCAL->buf[sbuf.st_size] = '';
  538.     close (fd); /* flush message file */
  539. /* find end of header */
  540.     for (i = 0,t = LOCAL->buf; *t && !(i && (*t == 'n')); i = (*t++ == 'n'));
  541. /* number of header bytes */
  542.     hdrsize = (*t ? ++t : t) - LOCAL->buf;
  543.     elt->rfc822_size = /* size of entire message in CRLF form */
  544.       (elt->private.msg.header.text.size =
  545.        strcrlfcpy ((char **) &elt->private.msg.header.text.data,&i,LOCAL->buf,
  546.    hdrsize)) +
  547.  (elt->private.msg.text.text.size =
  548.   strcrlfcpy ((char **) &elt->private.msg.text.text.data,&i,t,
  549.       sbuf.st_size - hdrsize));
  550. /* add to cached size */
  551.     LOCAL->cachedtexts += elt->rfc822_size;
  552.   }
  553.   *length = elt->private.msg.header.text.size;
  554.   return (char *) elt->private.msg.header.text.data;
  555. }
  556. /* MH mail fetch message text (body only)
  557.  * Accepts: MAIL stream
  558.  *     message # to fetch
  559.  *     pointer to returned stringstruct
  560.  *     option flags
  561.  * Returns: T on success, NIL on failure
  562.  */
  563. long mh_text (MAILSTREAM *stream,unsigned long msgno,STRING *bs,long flags)
  564. {
  565.   unsigned long i;
  566.   MESSAGECACHE *elt;
  567. /* UID call "impossible" */
  568.   if (flags & FT_UID) return NIL;
  569.   elt = mail_elt (stream,msgno);/* get elt */
  570. /* snarf message if don't have it yet */
  571.   if (!elt->private.msg.text.text.data) {
  572.     mh_header (stream,msgno,&i,flags);
  573.     if (!elt->private.msg.text.text.data) return NIL;
  574.   }
  575.   if (!(flags & FT_PEEK)) { /* mark as seen */
  576.     mail_elt (stream,msgno)->seen = T;
  577.     mm_flags (stream,msgno);
  578.   }
  579.   if (!elt->private.msg.text.text.data) return NIL;
  580.   INIT (bs,mail_string,elt->private.msg.text.text.data,
  581. elt->private.msg.text.text.size);
  582.   return T;
  583. }
  584. /* MH mail ping mailbox
  585.  * Accepts: MAIL stream
  586.  * Returns: T if stream alive, else NIL
  587.  */
  588. long mh_ping (MAILSTREAM *stream)
  589. {
  590.   MAILSTREAM *sysibx = NIL;
  591.   MESSAGECACHE *elt,*selt;
  592.   struct stat sbuf;
  593.   char *s,tmp[MAILTMPLEN];
  594.   int fd;
  595.   unsigned long i,j,r,old;
  596.   long nmsgs = stream->nmsgs;
  597.   long recent = stream->recent;
  598.   int silent = stream->silent;
  599.   if (stat (LOCAL->dir,&sbuf)) { /* directory exists? */
  600.     if (stream->inbox) return T;
  601.     sprintf (tmp,"Can't open mailbox %.80s: no such mailbox",stream->mailbox);
  602.     mm_log (tmp,ERROR);
  603.     return NIL;
  604.   }
  605.   stream->silent = T; /* don't pass up mm_exists() events yet */
  606.   if (sbuf.st_ctime != LOCAL->scantime) {
  607.     struct direct **names = NIL;
  608.     long nfiles = scandir (LOCAL->dir,&names,mh_select,mh_numsort);
  609.     if (nfiles < 0) nfiles = 0; /* in case error */
  610.     old = stream->uid_last;
  611. /* note scanned now */
  612.     LOCAL->scantime = sbuf.st_ctime;
  613. /* scan directory */
  614.     for (i = 0; i < nfiles; ++i) {
  615. /* if newly seen, add to list */
  616.       if ((j = atoi (names[i]->d_name)) > old) {
  617. mail_exists (stream,++nmsgs);
  618. stream->uid_last = (elt = mail_elt (stream,nmsgs))->private.uid = j;
  619. elt->valid = T; /* note valid flags */
  620. if (old) { /* other than the first pass? */
  621.   elt->recent = T; /* yup, mark as recent */
  622.   recent++; /* bump recent count */
  623. }
  624. else { /* see if already read */
  625.   sprintf (tmp,"%s/%s",LOCAL->dir,names[i]->d_name);
  626.   stat (tmp,&sbuf); /* get inode poop */
  627.   if (sbuf.st_atime > sbuf.st_mtime) elt->seen = T;
  628. }
  629.       }
  630.       fs_give ((void **) &names[i]);
  631.     }
  632. /* free directory */
  633.     if (s = (void *) names) fs_give ((void **) &s);
  634.   }
  635. /* if INBOX, snarf from system INBOX  */
  636.   if (stream->inbox && strcmp (sysinbox (),stream->mailbox)) {
  637.     old = stream->uid_last;
  638.     mm_critical (stream); /* go critical */
  639.     stat (sysinbox (),&sbuf); /* see if anything there */
  640. /* can get sysinbox mailbox? */
  641.     if (sbuf.st_size && (sysibx = mail_open (sysibx,sysinbox (),OP_SILENT))
  642. && (!sysibx->rdonly) && (r = sysibx->nmsgs)) {
  643.       for (i = 1; i <= r; ++i) {/* for each message in sysinbox mailbox */
  644. /* build file name we will use */
  645. sprintf (LOCAL->buf,"%s/%lu",LOCAL->dir,++old);
  646. /* snarf message from Berkeley mailbox */
  647. selt = mail_elt (sysibx,i);
  648. if (((fd = open (LOCAL->buf,O_WRONLY|O_CREAT|O_EXCL,
  649.  S_IREAD|S_IWRITE)) >= 0) &&
  650.     (s = mail_fetchheader_full (sysibx,i,NIL,&j,FT_INTERNAL)) &&
  651.     (write (fd,s,j) == j) &&
  652.     (s = mail_fetchtext_full (sysibx,i,&j,FT_INTERNAL|FT_PEEK)) &&
  653.     (write (fd,s,j) == j) && !fsync (fd) && !close (fd)) {
  654. /* swell the cache */
  655.   mail_exists (stream,++nmsgs);
  656.   stream->uid_last = /* create new elt, note its file number */
  657.     (elt = mail_elt (stream,nmsgs))->private.uid = old;
  658.   recent++; /* bump recent count */
  659. /* set up initial flags and date */
  660.   elt->valid = elt->recent = T;
  661.   elt->seen = selt->seen;
  662.   elt->deleted = selt->deleted;
  663.   elt->flagged = selt->flagged;
  664.   elt->answered = selt->answered;
  665.   elt->draft = selt->draft;
  666.   elt->day = selt->day;elt->month = selt->month;elt->year = selt->year;
  667.   elt->hours = selt->hours;elt->minutes = selt->minutes;
  668.   elt->seconds = selt->seconds;
  669.   elt->zhours = selt->zhours; elt->zminutes = selt->zminutes;
  670.   mh_setdate (LOCAL->buf,elt);
  671. }
  672. else { /* failed to snarf */
  673.   if (fd) { /* did it ever get opened? */
  674.     mm_log ("Message copy to MH mailbox failed",ERROR);
  675.     close (fd); /* close descriptor */
  676.     unlink (LOCAL->buf);/* flush this file */
  677.   }
  678.   else {
  679.     sprintf (tmp,"Can't add message: %s",strerror (errno));
  680.     mm_log (tmp,ERROR);
  681.   }
  682.   stream->silent = silent;
  683.   return NIL; /* note that something is badly wrong */
  684. }
  685. sprintf (tmp,"%lu",i); /* delete it from the sysinbox */
  686. mail_flag (sysibx,tmp,"\Deleted",ST_SET);
  687.       }
  688.       stat (LOCAL->dir,&sbuf); /* update scan time */
  689.       LOCAL->scantime = sbuf.st_ctime;      
  690.       mail_expunge (sysibx); /* now expunge all those messages */
  691.     }
  692.     if (sysibx) mail_close (sysibx);
  693.     mm_nocritical (stream); /* release critical */
  694.   }
  695.   stream->silent = silent; /* can pass up events now */
  696.   mail_exists (stream,nmsgs); /* notify upper level of mailbox size */
  697.   mail_recent (stream,recent);
  698.   return T; /* return that we are alive */
  699. }
  700. /* MH mail check mailbox
  701.  * Accepts: MAIL stream
  702.  */
  703. void mh_check (MAILSTREAM *stream)
  704. {
  705.   /* Perhaps in the future this will preserve flags */
  706.   if (mh_ping (stream)) mm_log ("Check completed",(long) NIL);
  707. }
  708. /* MH mail expunge mailbox
  709.  * Accepts: MAIL stream
  710.  */
  711. void mh_expunge (MAILSTREAM *stream)
  712. {
  713.   MESSAGECACHE *elt;
  714.   unsigned long i = 1;
  715.   unsigned long n = 0;
  716.   unsigned long recent = stream->recent;
  717.   mm_critical (stream); /* go critical */
  718.   while (i <= stream->nmsgs) { /* for each message */
  719. /* if deleted, need to trash it */
  720.     if ((elt = mail_elt (stream,i))->deleted) {
  721.       sprintf (LOCAL->buf,"%s/%lu",LOCAL->dir,elt->private.uid);
  722.       if (unlink (LOCAL->buf)) {/* try to delete the message */
  723. sprintf (LOCAL->buf,"Expunge of message %lu failed, aborted: %s",i,
  724.  strerror (errno));
  725. mm_log (LOCAL->buf,(long) NIL);
  726. break;
  727.       }
  728. /* note uncached */
  729.       LOCAL->cachedtexts -= ((elt->private.msg.header.text.data ?
  730.       elt->private.msg.header.text.size : 0) +
  731.      (elt->private.msg.text.text.data ?
  732.       elt->private.msg.text.text.size : 0));
  733.       mail_gc_msg (&elt->private.msg,GC_ENV | GC_TEXTS);
  734.       if (elt->recent) --recent;/* if recent, note one less recent message */
  735.       mail_expunged (stream,i); /* notify upper levels */
  736.       n++; /* count up one more expunged message */
  737.     }
  738.     else i++; /* otherwise try next message */
  739.   }
  740.   if (n) { /* output the news if any expunged */
  741.     sprintf (LOCAL->buf,"Expunged %lu messages",n);
  742.     mm_log (LOCAL->buf,(long) NIL);
  743.   }
  744.   else mm_log ("No messages deleted, so no update needed",(long) NIL);
  745.   mm_nocritical (stream); /* release critical */
  746. /* notify upper level of new mailbox size */
  747.   mail_exists (stream,stream->nmsgs);
  748.   mail_recent (stream,recent);
  749. }
  750. /* MH mail copy message(s)
  751.  * Accepts: MAIL stream
  752.  *     sequence
  753.  *     destination mailbox
  754.  *     copy options
  755.  * Returns: T if copy successful, else NIL
  756.  */
  757. long mh_copy (MAILSTREAM *stream,char *sequence,char *mailbox,long options)
  758. {
  759.   STRING st;
  760.   MESSAGECACHE *elt;
  761.   struct stat sbuf;
  762.   int fd;
  763.   unsigned long i;
  764.   char flags[MAILTMPLEN],date[MAILTMPLEN];
  765. /* copy the messages */
  766.   if ((options & CP_UID) ? mail_uid_sequence (stream,sequence) :
  767.       mail_sequence (stream,sequence))
  768.     for (i = 1; i <= stream->nmsgs; i++) 
  769.       if ((elt = mail_elt (stream,i))->sequence) {
  770. sprintf (LOCAL->buf,"%s/%lu",LOCAL->dir,elt->private.uid);
  771. if ((fd = open (LOCAL->buf,O_RDONLY,NIL)) < 0) return NIL;
  772. fstat (fd,&sbuf); /* get size of message */
  773. if (!elt->day) { /* make plausible IMAPish date string */
  774.   struct tm *tm = gmtime (&sbuf.st_mtime);
  775.   elt->day = tm->tm_mday; elt->month = tm->tm_mon + 1;
  776.   elt->year = tm->tm_year + 1900 - BASEYEAR;
  777.   elt->hours = tm->tm_hour; elt->minutes = tm->tm_min;
  778.   elt->seconds = tm->tm_sec;
  779.   elt->zhours = 0; elt->zminutes = 0;
  780. }
  781. /* is buffer big enough? */
  782. if (sbuf.st_size > LOCAL->buflen) {
  783.   fs_give ((void **) &LOCAL->buf);
  784.   LOCAL->buf = (char *) fs_get ((LOCAL->buflen = sbuf.st_size) + 1);
  785. }
  786. /* slurp message */
  787. read (fd,LOCAL->buf,sbuf.st_size);
  788. /* tie off file */
  789. LOCAL->buf[sbuf.st_size] = '';
  790. close (fd); /* flush message file */
  791. INIT (&st,mail_string,(void *) LOCAL->buf,sbuf.st_size);
  792. /* init flag string */
  793. flags[0] = flags[1] = '';
  794. if (elt->seen) strcat (flags," \Seen");
  795. if (elt->deleted) strcat (flags," \Deleted");
  796. if (elt->flagged) strcat (flags," \Flagged");
  797. if (elt->answered) strcat (flags," \Answered");
  798. if (elt->draft) strcat (flags," \Draft");
  799. flags[0] = '('; /* open list */
  800. strcat (flags,")"); /* close list */
  801. mail_date (date,elt); /* generate internal date */
  802. if (!mail_append_full (NIL,mailbox,flags,date,&st)) return NIL;
  803. if (options & CP_MOVE) elt->deleted = T;
  804.       }
  805.   return T; /* return success */
  806. }
  807. /* MH mail append message from stringstruct
  808.  * Accepts: MAIL stream
  809.  *     destination mailbox
  810.  *     stringstruct of messages to append
  811.  * Returns: T if append successful, else NIL
  812.  */
  813. long mh_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  814. STRING *message)
  815. {
  816.   struct direct **names;
  817.   int fd;
  818.   char c,*s,tmp[MAILTMPLEN];
  819.   MESSAGECACHE elt;
  820.   long i,last,nfiles;
  821.   long size = 0;
  822.   long ret = LONGT;
  823.   unsigned long uf;
  824.   /* short f = */ mail_parse_flags (stream ? stream : &mhproto,flags,&uf);
  825.   if (date) { /* want to preserve date? */
  826. /* yes, parse date into an elt */
  827.     if (!mail_parse_date (&elt,date)) {
  828.       sprintf (tmp,"Bad date in append: %.80s",date);
  829.       mm_log (tmp,ERROR);
  830.       return NIL;
  831.     }
  832.   }
  833. /* N.B.: can't use LOCAL->buf for tmp */
  834. /* make sure valid mailbox */
  835.   if (!mh_isvalid (mailbox,tmp,NIL)) switch (errno) {
  836.   case ENOENT: /* no such file? */
  837.     if ((mailbox[0] == '#') && ((mailbox[1] == 'M') || (mailbox[1] == 'm')) &&
  838. ((mailbox[2] == 'H') || (mailbox[2] == 'h')) &&
  839. ((mailbox[3] == 'I') || (mailbox[3] == 'i')) &&
  840. ((mailbox[4] == 'N') || (mailbox[4] == 'n')) &&
  841. ((mailbox[5] == 'B') || (mailbox[5] == 'b')) &&
  842. ((mailbox[6] == 'O') || (mailbox[6] == 'o')) &&
  843. ((mailbox[7] == 'X') || (mailbox[7] == 'x')) && !mailbox[8])
  844.       mh_create (NIL,"INBOX");
  845.     else {
  846.       mm_notify (stream,"[TRYCREATE] Must create mailbox before append",NIL);
  847.       return NIL;
  848.     }
  849. /* falls through */
  850.   case 0: /* merely empty file? */
  851.     break;
  852.   case EINVAL:
  853.     sprintf (tmp,"Invalid MH-format mailbox name: %.80s",mailbox);
  854.     mm_log (tmp,ERROR);
  855.     return NIL;
  856.   default:
  857.     sprintf (tmp,"Not a MH-format mailbox: %.80s",mailbox);
  858.     mm_log (tmp,ERROR);
  859.     return NIL;
  860.   }
  861.   mh_file (tmp,mailbox); /* build file name we will use */
  862.   if ((nfiles = scandir (tmp,&names,mh_select,mh_numsort)) > 0) {
  863. /* largest number */
  864.     last = atoi (names[nfiles-1]->d_name);    
  865.     for (i = 0; i < nfiles; ++i) /* free directory */
  866.       fs_give ((void **) &names[i]);
  867.   }
  868.   else last = 0; /* no messages here yet */
  869.   if (s = (void *) names) fs_give ((void **) &s);
  870.   sprintf (tmp + strlen (tmp),"/%ld",++last);
  871.   if ((fd = open (tmp,O_WRONLY|O_CREAT|O_EXCL,S_IREAD|S_IWRITE)) < 0) {
  872.     sprintf (tmp,"Can't open append message: %s",strerror (errno));
  873.     mm_log (tmp,ERROR);
  874.     return NIL;
  875.   }
  876.   i = SIZE (message); /* get size of message */
  877.   s = (char *) fs_get (i + 1); /* get space for the data */
  878. /* copy the data w/o CR's */
  879.   while (i--) if ((c = SNX (message)) != '15') s[size++] = c;
  880.   mm_critical (stream); /* go critical */
  881. /* write the data */
  882.   if ((write (fd,s,size) < 0) || fsync (fd)) {
  883.     unlink (tmp); /* delete message */
  884.     sprintf (tmp,"Message append failed: %s",strerror (errno));
  885.     mm_log (tmp,ERROR);
  886.     ret = NIL;
  887.   }
  888.   close (fd); /* close the file */
  889. /* set the date for this message */
  890.   if (date) mh_setdate (tmp,&elt);
  891.   mm_nocritical (stream); /* release critical */
  892.   fs_give ((void **) &s); /* flush the buffer */
  893.   return ret;
  894. }
  895. /* Internal routines */
  896. /* MH file name selection test
  897.  * Accepts: candidate directory entry
  898.  * Returns: T to use file name, NIL to skip it
  899.  */
  900. int mh_select (struct direct *name)
  901. {
  902.   char c;
  903.   char *s = name->d_name;
  904.   while (c = *s++) if (!isdigit (c)) return NIL;
  905.   return T;
  906. }
  907. /* MH file name comparision
  908.  * Accepts: first candidate directory entry
  909.  *     second candidate directory entry
  910.  * Returns: negative if d1 < d2, 0 if d1 == d2, postive if d1 > d2
  911.  */
  912. int mh_numsort (const void *d1,const void *d2)
  913. {
  914.   return atoi ((*(struct direct **) d1)->d_name) -
  915.     atoi ((*(struct direct **) d2)->d_name);
  916. }
  917. /* MH mail build file name
  918.  * Accepts: destination string
  919.  *          source
  920.  * Returns: destination
  921.  */
  922. char *mh_file (char *dst,char *name)
  923. {
  924.   char *s,tmp[MAILTMPLEN];
  925. /* build composite name */
  926.   sprintf (dst,"%s/%.900s",mh_path,
  927.    strcmp (ucase (strcpy (tmp,name)),"#MHINBOX") ? name + 4 : "inbox");
  928. /* tie off unnecessary trailing / */
  929.   if ((s = strrchr (dst,'/')) && !s[1] && (s[-1] == '/')) *s = '';
  930.   return dst;
  931. }
  932. /* MH canonicalize name
  933.  * Accepts: buffer to write name
  934.  *     reference
  935.  *     pattern
  936.  * Returns: T if success, NIL if failure
  937.  */
  938. long mh_canonicalize (char *pattern,char *ref,char *pat)
  939. {
  940.   char tmp[MAILTMPLEN];
  941.   if (ref && *ref) { /* have a reference */
  942.     strcpy (pattern,ref); /* copy reference to pattern */
  943. /* # overrides mailbox field in reference */
  944.     if (*pat == '#') strcpy (pattern,pat);
  945. /* pattern starts, reference ends, with / */
  946.     else if ((*pat == '/') && (pattern[strlen (pattern) - 1] == '/'))
  947.       strcat (pattern,pat + 1); /* append, omitting one of the period */
  948.     else strcat (pattern,pat); /* anything else is just appended */
  949.   }
  950.   else strcpy (pattern,pat); /* just have basic name */
  951.   return (mh_isvalid (pattern,tmp,T));
  952. }
  953. /* Set date for message
  954.  * Accepts: file name
  955.  *     elt containing date
  956.  */
  957. void mh_setdate (char *file,MESSAGECACHE *elt)
  958. {
  959.   time_t tp[2];
  960.   tp[0] = time (0); /* atime is now */
  961.   tp[1] = mail_longdate (elt); /* modification time */
  962.   utime (file,tp); /* set the times */
  963. }