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

网络编程

开发平台:

Unix_Linux

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