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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Dummy routines for DOS
  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 May 1993
  13.  * Last Edited: 4 September 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 <sysstat.h>
  41. #include <dos.h>
  42. #include "dummy.h"
  43. #include "misc.h"
  44. long dummy_badname (char *tmp,char *s);
  45. /* Dummy routines */
  46. /* Driver dispatch used by MAIL */
  47. DRIVER dummydriver = {
  48.   "dummy", /* driver name */
  49.   DR_LOCAL|DR_MAIL, /* driver flags */
  50.   (DRIVER *) NIL, /* next driver */
  51.   dummy_valid, /* mailbox is valid for us */
  52.   dummy_parameters, /* manipulate parameters */
  53.   dummy_scan, /* scan mailboxes */
  54.   dummy_list, /* list mailboxes */
  55.   dummy_lsub, /* list subscribed mailboxes */
  56.   dummy_subscribe, /* subscribe to mailbox */
  57.   NIL, /* unsubscribe from mailbox */
  58.   dummy_create, /* create mailbox */
  59.   dummy_delete, /* delete mailbox */
  60.   dummy_rename, /* rename mailbox */
  61.   NIL, /* status of mailbox */
  62.   dummy_open, /* open mailbox */
  63.   dummy_close, /* close mailbox */
  64.   NIL, /* fetch message "fast" attributes */
  65.   NIL, /* fetch message flags */
  66.   NIL, /* fetch overview */
  67.   NIL, /* fetch message structure */
  68.   NIL, /* fetch header */
  69.   NIL, /* fetch text */
  70.   NIL, /* fetch message data */
  71.   NIL, /* unique identifier */
  72.   NIL, /* message number from UID */
  73.   NIL, /* modify flags */
  74.   NIL, /* per-message modify flags */
  75.   NIL, /* search for message based on criteria */
  76.   NIL, /* sort messages */
  77.   NIL, /* thread messages */
  78.   dummy_ping, /* ping mailbox to see if still alive */
  79.   dummy_check, /* check for new messages */
  80.   dummy_expunge, /* expunge deleted messages */
  81.   dummy_copy, /* copy messages to another mailbox */
  82.   dummy_append, /* append string message to mailbox */
  83.   NIL /* garbage collect stream */
  84. };
  85. /* prototype stream */
  86. MAILSTREAM dummyproto = {&dummydriver};
  87. /* driver parameters */
  88. static char *file_extension = NIL;
  89. /* Dummy validate mailbox
  90.  * Accepts: mailbox name
  91.  * Returns: our driver if name is valid, NIL otherwise
  92.  */
  93. DRIVER *dummy_valid (char *name)
  94. {
  95.   char *s,tmp[MAILTMPLEN];
  96.   struct stat sbuf;
  97. /* must be valid local mailbox */
  98.   return (name && *name && (*name != '{') &&
  99.   (s = mailboxfile (tmp,name)) && (!*s || !stat (s,&sbuf))) ?
  100.     &dummydriver : NIL;
  101. }
  102. /* Dummy manipulate driver parameters
  103.  * Accepts: function code
  104.  *     function-dependent value
  105.  * Returns: function-dependent return value
  106.  */
  107. void *dummy_parameters (long function,void *value)
  108. {
  109.   switch ((int) function) {
  110.   case SET_EXTENSION:
  111.     if (file_extension) fs_give ((void **) &file_extension);
  112.     if (*(char *) value) file_extension = cpystr ((char *) value);
  113.     break;
  114.   case GET_EXTENSION:
  115.     value = (void *) file_extension;
  116.     break;
  117.   default:
  118.     value = NIL; /* error case */
  119.     break;
  120.   }
  121.   return value;
  122. }
  123. /* Dummy scan mailboxes
  124.  * Accepts: mail stream
  125.  *     reference
  126.  *     pattern to search
  127.  *     string to scan
  128.  */
  129. #define LISTTMPLEN 128
  130. void dummy_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents)
  131. {
  132.   char *s,test[LISTTMPLEN],file[LISTTMPLEN];
  133.   long i = 0;
  134.   if (!pat || !*pat) { /* empty pattern? */
  135.     if (dummy_canonicalize (test,ref,"*")) {
  136. /* tie off name at root */
  137.       if (s = strchr (test,'\')) *++s = '';
  138.       else test[0] = '';
  139.       dummy_listed (stream,'\',test,LATT_NOINFERIORS,NIL);
  140.     }
  141.   }
  142. /* get canonical form of name */
  143.   else if (dummy_canonicalize (test,ref,pat)) {
  144. /* found any wildcards? */
  145.     if (s = strpbrk (test,"%*")) {
  146. /* yes, copy name up to that point */
  147.       strncpy (file,test,(size_t) (i = s - test));
  148.       file[i] = ''; /* tie off */
  149.     }
  150.     else strcpy (file,test); /* use just that name then */
  151. /* find directory name */
  152.     if (s = strrchr (file,'\')) {
  153.       *++s = ''; /* found, tie off at that point */
  154.       s = file;
  155.     }
  156. /* silly case */
  157.     else if (file[0] == '#') s = file;
  158. /* do the work */
  159.     dummy_list_work (stream,s,test,contents,0);
  160.     if (pmatch ("INBOX",test)) /* always an INBOX */
  161.       dummy_listed (stream,NIL,"INBOX",LATT_NOINFERIORS,contents);
  162.   }
  163. }
  164. /* Dummy list mailboxes
  165.  * Accepts: mail stream
  166.  *     reference
  167.  *     pattern to search
  168.  */
  169. void dummy_list (MAILSTREAM *stream,char *ref,char *pat)
  170. {
  171.   dummy_scan (stream,ref,pat,NIL);
  172. }
  173. /* Dummy list subscribed mailboxes
  174.  * Accepts: mail stream
  175.  *     pattern to search
  176.  */
  177. void dummy_lsub (MAILSTREAM *stream,char *ref,char *pat)
  178. {
  179.   void *sdb = NIL;
  180.   char *s,*t,test[MAILTMPLEN],tmp[MAILTMPLEN];
  181.   int showuppers = pat[strlen (pat) - 1] == '%';
  182. /* get canonical form of name */
  183.   if (dummy_canonicalize (test,ref,pat) && (s = sm_read (&sdb))) do
  184.     if (*s != '{') {
  185.       if (pmatch_full (ucase (strcpy (tmp,s)),test,'\')) {
  186. if (pmatch (tmp,"INBOX")) mm_lsub (stream,NIL,s,LATT_NOINFERIORS);
  187. else mm_lsub (stream,'\',s,NIL);
  188.       }
  189.       else while (showuppers && (t = strrchr (s,'\'))) {
  190. *t = ''; /* tie off the name */
  191. if (pmatch_full (ucase (strcpy (tmp,s)),test,'\'))
  192.   mm_lsub (stream,'\',s,LATT_NOSELECT);
  193.       }
  194.     }
  195.   while (s = sm_read (&sdb)); /* until no more subscriptions */
  196. }
  197. /* Dummy subscribe to mailbox
  198.  * Accepts: mail stream
  199.  *     mailbox to add to subscription list
  200.  * Returns: T on success, NIL on failure
  201.  */
  202. long dummy_subscribe (MAILSTREAM *stream,char *mailbox)
  203. {
  204.   char *s,tmp[MAILTMPLEN];
  205.   struct stat sbuf;
  206. /* must be valid local mailbox */
  207.   if ((s = mailboxfile (tmp,mailbox)) && *s && !stat (s,&sbuf) &&
  208.       ((sbuf.st_mode & S_IFMT) == S_IFREG)) return sm_subscribe (mailbox);
  209.   sprintf (tmp,"Can't subscribe %s: not a mailbox",mailbox);
  210.   mm_log (tmp,ERROR);
  211.   return NIL;
  212. }
  213. /* Dummy list mailboxes worker routine
  214.  * Accepts: mail stream
  215.  *     directory name to search
  216.  *     search pattern
  217.  *     string to scan
  218.  *     search level
  219.  */
  220. void dummy_list_work (MAILSTREAM *stream,char *dir,char *pat,char *contents,
  221.       long level)
  222. {
  223.   struct find_t f;
  224.   struct stat sbuf;
  225.   char *s,tmp[LISTTMPLEN],tmpx[LISTTMPLEN],tmpy[LISTTMPLEN];
  226.   char *base = (dir && (dir[0] == '\')) ? NIL : myhomedir ();
  227. /* build name */
  228.   if (base) sprintf (tmpx,"%s\",base);
  229.   else tmpx[0] = '';
  230.   if (dir) strcat (tmpx,dir);
  231. /* punt if bogus name */
  232.   if (!mailboxfile (tmp,tmpx)) return;
  233. /* make directory wildcard */
  234.   strcat (tmp,(tmp[strlen (tmp) -1] == '\') ? "*." : "\*.");
  235.   strcat (tmp,file_extension ? file_extension : "*");
  236. /* do nothing if can't open directory */
  237.   if (!_dos_findfirst (tmp,_A_NORMAL|_A_SUBDIR,&f)) {
  238. /* list it if not at top-level */
  239.     if (!level && dir && pmatch_full (ucase (strcpy (tmpy,dir)),pat,'\'))
  240.       dummy_listed (stream,'\',dir,LATT_NOSELECT,contents);
  241. /* scan directory */
  242.     if (tmpx[strlen (tmpx) - 1] == '\') do if (*f.name != '.') {
  243.       if (base) sprintf (tmpx,"%s\",base);
  244.       else tmpx[0] = '';
  245.       if (dir) sprintf (tmpx + strlen (tmpx),"%s%s",dir,f.name);
  246.       else strcat (tmpx,f.name);
  247.       if (!stat (mailboxfile (tmp,tmpx),&sbuf)) {
  248. /* suppress extension */
  249. if (file_extension && (s = strchr (f.name,'.'))) *s = '';
  250. /* now make name we'd return */
  251. if (dir) sprintf (tmp,"%s%s",dir,f.name);
  252. else strcpy (tmp,f.name);
  253. /* only interested in file type */
  254. switch (sbuf.st_mode &= S_IFMT) {
  255. case S_IFDIR: /* directory? */
  256.   if (pmatch_full (ucase (tmp),pat,'\')) {
  257.     dummy_listed (stream,'\',tmp,LATT_NOSELECT,contents);
  258.     strcat (tmp,"\"); /* set up for dmatch call */
  259.   }
  260. /* try again with trailing / */
  261.   else if (pmatch_full (strcat (tmp,"\"),pat,'\'))
  262.     dummy_listed (stream,'\',tmp,LATT_NOSELECT,contents);
  263.   if (dmatch (tmp,pat,'\') &&
  264.       (level < (long) mail_parameters (NIL,GET_LISTMAXLEVEL,NIL)))
  265.     dummy_list_work (stream,tmp,pat,contents,level+1);
  266.   break;
  267. case S_IFREG: /* ordinary name */
  268.   if (pmatch_full (ucase (tmp),pat,'\') && !pmatch ("INBOX",tmp))
  269.     dummy_listed (stream,'\',tmp,LATT_NOINFERIORS,contents);
  270.   break;
  271. }
  272.       }
  273.     }
  274.     while (!_dos_findnext (&f));
  275.   }
  276. }
  277. /* Mailbox found
  278.  * Accepts: hierarchy delimiter
  279.  *     mailbox name
  280.  *     attributes
  281.  *     contents to search before calling mm_list()
  282.  * Returns: T, always
  283.  */
  284. #define BUFSIZE MAILTMPLEN
  285. long dummy_listed (MAILSTREAM *stream,char delimiter,char *name,
  286.    long attributes,char *contents)
  287. {
  288.   struct stat sbuf;
  289.   int fd;
  290.   size_t csiz,ssiz,bsiz;
  291.   char *buf,tmp[MAILTMPLEN];
  292.   if (contents) { /* want to search contents? */
  293. /* forget it if can't select or open */
  294.     if ((attributes & LATT_NOSELECT) || !(csiz = strlen (contents)) ||
  295. stat (mailboxfile (tmp,name),&sbuf) || (csiz > sbuf.st_size) ||
  296. ((fd = open (tmp,O_RDONLY,NIL)) < 0)) return T;
  297. /* get buffer including slop */    
  298.     buf = (char *) fs_get (BUFSIZE + (ssiz = 4 * ((csiz / 4) + 1)) + 1);
  299.     memset (buf,'',ssiz); /* no slop area the first time */
  300.     while (sbuf.st_size) { /* until end of file */
  301.       read (fd,buf+ssiz,bsiz = min (sbuf.st_size,BUFSIZE));
  302.       if (search ((unsigned char *) buf,bsiz+ssiz,
  303.   (unsigned char *) contents,csiz)) break;
  304.       memcpy (buf,buf+BUFSIZE,ssiz);
  305.       sbuf.st_size -= bsiz; /* note that we read that much */
  306.     }
  307.     fs_give ((void **) &buf); /* flush buffer */
  308.     close (fd); /* finished with file */
  309.     if (!sbuf.st_size) return T;/* not found */
  310.   }
  311. /* notify main program */
  312.   mm_list (stream,delimiter,name,attributes);
  313.   return T;
  314. }
  315. /* Dummy create mailbox
  316.  * Accepts: mail stream
  317.  *     mailbox name to create
  318.  * Returns: T on success, NIL on failure
  319.  */
  320. long dummy_create (MAILSTREAM *stream,char *mailbox)
  321. {
  322.   char tmp[MAILTMPLEN];
  323.   return (strcmp (ucase (strcpy (tmp,mailbox)),"INBOX") &&
  324.   mailboxfile (tmp,mailbox)) ?
  325.     dummy_create_path (stream,tmp) : dummy_badname (tmp,mailbox);
  326. }
  327. /* Dummy create path
  328.  * Accepts: mail stream
  329.  *     path name name to create
  330.  * Returns: T on success, NIL on failure
  331.  */
  332. long dummy_create_path (MAILSTREAM *stream,char *path)
  333. {
  334.   struct stat sbuf;
  335.   char c,*s,tmp[MAILTMPLEN];
  336.   int fd;
  337.   long ret = NIL;
  338.   char *t = strrchr (path,'\');
  339.   char *pt = (path[1] == ':') ? path + 2 : path;
  340.   int wantdir = t && !t[1];
  341.   if (wantdir) *t = ''; /* flush trailing delimiter for directory */
  342. /* found superior to this name? */
  343.   if ((s = strrchr (pt,'\')) && (s != pt)) {
  344.     strncpy (tmp,path,(size_t) (s - path));
  345.     tmp[s - path] = ''; /* make directory name for stat */
  346.     c = *++s; /* tie off in case need to recurse */
  347.     *s = '';
  348. /* name doesn't exist, create it */
  349.     if ((stat (tmp,&sbuf) || ((sbuf.st_mode & S_IFMT) != S_IFDIR)) &&
  350. !dummy_create_path (stream,path)) return NIL;
  351.     *s = c; /* restore full name */
  352.   }
  353.   if (wantdir) { /* want to create directory? */
  354.     ret = !mkdir (path);
  355.     *t = '\'; /* restore directory delimiter */
  356.   }
  357. /* create file */
  358.   else if ((fd = open (path,O_WRONLY|O_CREAT|O_EXCL,S_IREAD|S_IWRITE)) >= 0)
  359.     ret = !close (fd); /* close file */
  360.   if (!ret) { /* error? */
  361.     sprintf (tmp,"Can't create mailbox node %s: %s",path,strerror (errno));
  362.     mm_log (tmp,ERROR);
  363.   }
  364.   return ret; /* return status */
  365. }
  366. /* Dummy delete mailbox
  367.  * Accepts: mail stream
  368.  *     mailbox name to delete
  369.  * Returns: T on success, NIL on failure
  370.  */
  371. long dummy_delete (MAILSTREAM *stream,char *mailbox)
  372. {
  373.   struct stat sbuf;
  374.   char *s,tmp[MAILTMPLEN];
  375.   if (!mailboxfile (tmp,mailbox)) return dummy_badname (tmp,mailbox);
  376. /* no trailing  */
  377.   if ((s = strrchr (tmp,'\')) && !s[1]) *s = '';
  378.   if (stat (tmp,&sbuf) || ((sbuf.st_mode & S_IFMT) == S_IFDIR) ?
  379.       rmdir (tmp) : unlink (tmp)) {
  380.     sprintf (tmp,"Can't delete mailbox %s: %s",mailbox,strerror (errno));
  381.     mm_log (tmp,ERROR);
  382.     return NIL;
  383.   }
  384.   return T; /* return success */
  385. }
  386. /* Mail rename mailbox
  387.  * Accepts: mail stream
  388.  *     old mailbox name
  389.  *     new mailbox name
  390.  * Returns: T on success, NIL on failure
  391.  */
  392. long dummy_rename (MAILSTREAM *stream,char *old,char *newname)
  393. {
  394.   struct stat sbuf;
  395.   char c,*s,tmp[MAILTMPLEN],file[MAILTMPLEN];
  396. /* make file name */
  397.   if (!mailboxfile (file,old)) return dummy_badname (tmp,old);
  398. /* no trailing  allowed */
  399.   if (!(s = mailboxfile (tmp,newname)) || ((s = strrchr (s,'\')) && !s[1]))
  400.     return dummy_badname (tmp,newname);
  401.   if (s) { /* found superior to destination name? */
  402.     c = *++s; /* remember first character of inferior */
  403.     *s = ''; /* tie off to get just superior */
  404. /* name doesn't exist, create it */
  405.     if ((stat (file,&sbuf) || ((sbuf.st_mode & S_IFMT) != S_IFDIR)) &&
  406. !dummy_create (stream,file)) return NIL;
  407.     *s = c; /* restore full name */
  408.   }
  409.   if (rename (file,tmp)) {
  410.     sprintf (tmp,"Can't rename mailbox %s to %s: %s",old,newname,
  411.      strerror (errno));
  412.     mm_log (tmp,ERROR);
  413.     return NIL;
  414.   }
  415.   return LONGT; /* return success */
  416. }
  417. /* Dummy open
  418.  * Accepts: stream to open
  419.  * Returns: stream on success, NIL on failure
  420.  */
  421. MAILSTREAM *dummy_open (MAILSTREAM *stream)
  422. {
  423.   char tmp[MAILTMPLEN];
  424.   struct stat sbuf;
  425.   int fd = -1;
  426. /* OP_PROTOTYPE call or silence */
  427.   if (!stream || stream->silent) return NIL;
  428.   if (strcmp (ucase (strcpy (tmp,stream->mailbox)),"INBOX") &&
  429.       ((fd = open (mailboxfile (tmp,stream->mailbox),O_RDONLY,NIL)) < 0))
  430.     sprintf (tmp,"%s: %s",strerror (errno),stream->mailbox);
  431.   else {
  432.     if (fd >= 0) { /* if got a file */
  433.       fstat (fd,&sbuf); /* sniff at its size */
  434.       close (fd);
  435.       if (sbuf.st_size) sprintf (tmp,"Not a mailbox: %s",stream->mailbox);
  436.       else fd = -1; /* a-OK */
  437.     }
  438.     if (fd < 0) { /* no file, right? */
  439.       if (!stream->silent) { /* only if silence not requested */
  440. /* say there are 0 messages */
  441. mail_exists (stream,(long) 0);
  442. mail_recent (stream,(long) 0);
  443. stream->uid_validity = 1;
  444.       }
  445.       stream->inbox = T; /* note that it's an INBOX */
  446.       return stream; /* return success */
  447.     }
  448.   }
  449.   mm_log (tmp,stream->silent ? WARN: ERROR);
  450.   return NIL; /* always fails */
  451. }
  452. /* Dummy close
  453.  * Accepts: MAIL stream
  454.  *     options
  455.  */
  456. void dummy_close (MAILSTREAM *stream,long options)
  457. {
  458. /* return silently */
  459. }
  460. /* Dummy ping mailbox
  461.  * Accepts: MAIL stream
  462.  * Returns: T if stream alive, else NIL
  463.  * No-op for readonly files, since read/writer can expunge it from under us!
  464.  */
  465. long dummy_ping (MAILSTREAM *stream)
  466. {
  467. /* time to do another test? */
  468.   if (time (0) >= (stream->gensym + 30)) {
  469.     MAILSTREAM *test = mail_open (NIL,stream->mailbox,OP_PROTOTYPE);
  470.     if (!test) return NIL; /* can't get a prototype?? */
  471.     if (test->dtb == stream->dtb) {
  472.       stream->gensym = time (0);/* still hasn't changed */
  473.       return T; /* try again later */
  474.     }
  475. /* looks like a new driver? */
  476.     if (!(test = mail_open (NIL,stream->mailbox,NIL))) return NIL;
  477.     mail_close ((MAILSTREAM *) /* flush resources used by dummy stream */
  478. memcpy (fs_get (sizeof (MAILSTREAM)),stream,
  479. sizeof (MAILSTREAM)));
  480. /* swap the streams */
  481.     memcpy (stream,test,sizeof (MAILSTREAM));
  482.     fs_give ((void **) &test); /* flush test now that copied */
  483.   }
  484.   return T;
  485. }
  486. /* Dummy check mailbox
  487.  * Accepts: MAIL stream
  488.  * No-op for readonly files, since read/writer can expunge it from under us!
  489.  */
  490. void dummy_check (MAILSTREAM *stream)
  491. {
  492.   dummy_ping (stream); /* invoke ping */
  493. }
  494. /* Dummy expunge mailbox
  495.  * Accepts: MAIL stream
  496.  */
  497. void dummy_expunge (MAILSTREAM *stream)
  498. {
  499. /* return silently */
  500. }
  501. /* Dummy copy message(s)
  502.  * Accepts: MAIL stream
  503.  *     sequence
  504.  *     destination mailbox
  505.  *     options
  506.  * Returns: T if copy successful, else NIL
  507.  */
  508. long dummy_copy (MAILSTREAM *stream,char *sequence,char *mailbox,long options)
  509. {
  510.   if ((options & CP_UID) ? mail_uid_sequence (stream,sequence) :
  511.       mail_sequence (stream,sequence)) fatal ("Impossible dummy_copy");
  512.   return NIL;
  513. }
  514. /* Dummy append message string
  515.  * Accepts: mail stream
  516.  *     destination mailbox
  517.  *     stringstruct of message to append
  518.  * Returns: T on success, NIL on failure
  519.  */
  520. long dummy_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  521.    STRING *message)
  522. {
  523.   struct stat sbuf;
  524.   int fd = -1;
  525.   int e;
  526.   char tmp[MAILTMPLEN];
  527.   MAILSTREAM *ts = default_proto (T);
  528.   if ((strcmp (ucase (strcpy (tmp,mailbox)),"INBOX")) &&
  529.    ((fd = open (mailboxfile (tmp,mailbox),O_RDONLY,NIL)) < 0)) {
  530.     if ((e = errno) == ENOENT) /* failed, was it no such file? */
  531.       mm_notify (stream,"[TRYCREATE] Must create mailbox before append",
  532.  (long) NIL);
  533.     sprintf (tmp,"%s: %s",strerror (e),mailbox);
  534.     mm_log (tmp,ERROR); /* pass up error */
  535.     return NIL; /* always fails */
  536.   }
  537.   if (fd >= 0) { /* found file? */
  538.     fstat (fd,&sbuf); /* get its size */
  539.     close (fd); /* toss out the fd */
  540.     if (sbuf.st_size) ts = NIL; /* non-empty file? */
  541.   }
  542.   if (ts) return (*ts->dtb->append) (stream,mailbox,flags,date,message);
  543.   sprintf (tmp,"Indeterminate mailbox format: %s",mailbox);
  544.   mm_log (tmp,ERROR);
  545.   return NIL;
  546. }
  547. /* Return bad file name error message
  548.  * Accepts: temporary buffer
  549.  *     file name
  550.  * Returns: long NIL always
  551.  */
  552. long dummy_badname (char *tmp,char *s)
  553. {
  554.   sprintf (tmp,"Invalid mailbox name: %s",s);
  555.   mm_log (tmp,ERROR);
  556.   return (long) NIL;
  557. }
  558. /* Dummy canonicalize name
  559.  * Accepts: buffer to write name
  560.  *     reference
  561.  *     pattern
  562.  * Returns: T if success, NIL if failure
  563.  */
  564. long dummy_canonicalize (char *tmp,char *ref,char *pat)
  565. {
  566.   char dev[4];
  567. /* initially no device */
  568.   dev[0] = dev[1] = dev[2] = dev[3] = '';
  569.   if (ref) switch (*ref) { /* preliminary reference check */
  570.   case '{': /* remote names not allowed */
  571.     return NIL; /* disallowed */
  572.   case '': /* empty reference string */
  573.     break;
  574.   default: /* all other names */
  575.     if (ref[1] == ':') { /* start with device name? */
  576.       dev[0] = *ref++; dev[1] = *ref++;
  577.     }
  578.     break;
  579.   }
  580.   if (pat[1] == ':') { /* device name in pattern? */
  581.     dev[0] = *pat++; dev[1] = *pat++;
  582.     ref = NIL; /* ignore reference */
  583.   }
  584.   switch (*pat) {
  585.   case '#': /* namespace names */
  586.     if (mailboxfile (tmp,pat)) strcpy (tmp,pat);
  587.     else return NIL; /* unknown namespace */
  588.     break;
  589.   case '{': /* remote names not allowed */
  590.     return NIL;
  591.   case '\': /* rooted name */
  592.     ref = NIL; /* ignore reference */
  593.     break;
  594.   }
  595. /* make sure device names are rooted */
  596.   if (dev[0] && (*(ref ? ref : pat) != '\')) dev[2] = '\';
  597. /* build name */
  598.   sprintf (tmp,"%s%s%s",dev,ref ? ref : "",pat);
  599.   ucase (tmp); /* force upper case */
  600.   return T;
  601. }