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

网络编程

开发平台:

Unix_Linux

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