home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC15B78.ZIP / EXP.CPP < prev    next >
Text File  |  1997-12-29  |  56KB  |  1,969 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <dos.h>
  6. #include <fcntl.h>
  7. #include <sys/stat.h>
  8. #include <ctype.h>
  9. #include <mem.h>
  10. #include <conio.h>
  11. #include <io.h>
  12. #include <share.h>
  13. #include <errno.h>
  14. #include <dir.h>
  15. #include <time.h>
  16. #include <malloc.h>
  17. #include <process.h>
  18. #include <direct.h>
  19. #include "vardec.h"
  20. #include "net.h"
  21. #include "retcode.h"
  22.  
  23. #include "version.h"
  24.  
  25. #define WAIT_TIME 10
  26. #define TRIES 100
  27. #define SHARE_LEVEL 10
  28. #define MT_DESQVIEW 0x01
  29. #define MT_WINDOWS  0x02
  30. #define MT_OS2      0x04
  31. #define MT_NB       0x40
  32.  
  33.  
  34. struct msghdr {
  35.   char fromUserName[205];
  36.   char toUserName[81];
  37.   char subject[81];
  38.   char dateTime[81];
  39. };
  40.  
  41. typedef struct {
  42.   char ownername[60];
  43.   char subtype[8];
  44.   char opttext[30];
  45. } MAILLISTREC;
  46.  
  47. MAILLISTREC *maillist;
  48. configrec syscfg;
  49.  
  50. char net_name[31], postmaster[31], net_data[MAXPATH];
  51. char POPNAME[21], REPLYTO[81], DOMAIN[81], tagfile[MAXPATH], maindir[MAXPATH], spamname[81];
  52. unsigned short net_sysnum, defuser, use_alias, usermail, instance, spam;
  53. unsigned curuser, num_users, replyaddr;
  54. int multitasker = 0;
  55. int nlists = 0;
  56. char alphasubtype[8];
  57. unsigned long cur_daten;
  58.  
  59. void dv_pause(void)
  60. {
  61.   __emit__(0xb8, 0x1a, 0x10, 0xcd, 0x15);
  62.   __emit__(0xb8, 0x00, 0x10, 0xcd, 0x15);
  63.   __emit__(0xb8, 0x25, 0x10, 0xcd, 0x15);
  64. }
  65.  
  66. void win_pause(void)
  67. {
  68.   __emit__(0x55, 0xb8, 0x80, 0x16, 0xcd, 0x2f, 0x5d);
  69. }
  70.  
  71. int get_dos_version(void)
  72. {
  73.   _AX = 0x3000;
  74.   geninterrupt(0x21);
  75.   if (_AX % 256 >= 10) {
  76.     multitasker |= MT_OS2;
  77.   }
  78.   return (_AX);
  79. }
  80.  
  81. int get_dv_version(void)
  82. {
  83.   int v;
  84.  
  85.   if (multitasker & MT_OS2)
  86.     return 0;
  87.   _AX = 0x2b01;
  88.   _CX = 0x4445;
  89.   _DX = 0x5351;
  90.   geninterrupt(0x21);
  91.   if (_AL == 0xff) {
  92.     return 0;
  93.   } else {
  94.     v = _BX;
  95.     multitasker |= MT_DESQVIEW;
  96.     return v;
  97.   }
  98. }
  99.  
  100. int get_win_version(void)
  101. {
  102.   int v = 0;
  103.  
  104.   __emit__(0x55, 0x06, 0x53);
  105.   _AX = 0x352f;
  106.   geninterrupt(0x21);
  107.   _AX = _ES;
  108.   if (_AX | _BX) {
  109.     _AX = 0x1600;
  110.     geninterrupt(0x2f);
  111.     v = _AX;
  112.     if (v % 256 <= 1)
  113.       v = 0;
  114.   }
  115.   __emit__(0x5b, 0x07, 0x5d);
  116.   if (v != 0)
  117.     multitasker |= MT_WINDOWS;
  118.   return (v);
  119. }
  120.  
  121. int get_nb_version(void)
  122. {
  123.   _AX = 0;
  124.   geninterrupt(0x2A);
  125.   return (_AH);
  126. }
  127.  
  128. void detect_multitask(void)
  129. {
  130.   get_dos_version();
  131.   get_win_version();
  132.   get_dv_version();
  133.   if (multitasker < 2)
  134.     if (get_nb_version())
  135.       multitasker = MT_NB;
  136. }
  137.  
  138. void giveup_timeslice(void)
  139. {
  140.   if (multitasker) {
  141.     switch (multitasker) {
  142.  case 1: 
  143.  case 3: 
  144.         dv_pause();
  145.         break;
  146.       case 2:
  147.       case 4:
  148.       case 5:
  149.       case 6:
  150.       case 7:
  151.         win_pause();
  152.         break;
  153.       default:
  154.         break;
  155.     }
  156.   }
  157. }
  158.  
  159. int sh_write(int handle, void *buffer, unsigned long len)
  160. {
  161.   if (handle == -1) {
  162.     return (-1);
  163.   }
  164.   return (write(handle, buffer, (unsigned) len));
  165. }
  166.  
  167. int sh_open(char *path, int file_access, unsigned fmode)
  168. {
  169.   int handle, count, share;
  170.   char drive[MAXDRIVE], dir[MAXDIR], file[MAXFILE], ext[MAXEXT];
  171.  
  172.   if ((file_access & O_RDWR) || (file_access & O_WRONLY) || (fmode & S_IWRITE)) {
  173.     share = SH_DENYRW;
  174.   } else {
  175.     share = SH_DENYWR;
  176.   }
  177.   handle = open(path, file_access | share, fmode);
  178.   if (handle < 0) {
  179.     count = 1;
  180.     fnsplit(path, drive, dir, file, ext);
  181.     if (access(path, 0) != -1) {
  182.       delay(WAIT_TIME);
  183.       handle = open(path, file_access | share, fmode);
  184.       while (((handle < 0) && (errno == EACCES)) && (count < TRIES)) {
  185.         if (count % 2)
  186.           delay(WAIT_TIME);
  187.         else
  188.           giveup_timeslice();
  189.         count++;
  190.         handle = open(path, file_access | share, fmode);
  191.       }
  192.     }
  193.   }
  194.   return (handle);
  195. }
  196.  
  197. int sh_open1(char *path, int access)
  198. {
  199.   unsigned fmode;
  200.  
  201.   fmode = 0;
  202.   if ((access & O_RDWR) || (access & O_WRONLY))
  203.     fmode |= S_IWRITE;
  204.   if ((access & O_RDWR) || (access & O_RDONLY))
  205.     fmode |= S_IREAD;
  206.   return (sh_open(path, access, fmode));
  207. }
  208.  
  209. int sh_close(int f)
  210. {
  211.   if (f != -1)
  212.     close(f);
  213.   return (-1);
  214. }
  215.  
  216. int sh_read(int handle, void *buf, unsigned len)
  217. {
  218.   if (handle == -1) {
  219.     return (-1);
  220.   }
  221.   return (read(handle, buf, len));
  222. }
  223.  
  224. long sh_lseek(int handle, long offset, int fromwhere)
  225. {
  226.   if (handle == -1) {
  227.     return (-1L);
  228.   }
  229.   return (lseek(handle, offset, fromwhere));
  230. }
  231.  
  232. FILE *fsh_open(char *path, char *fmode)
  233. {
  234.   FILE *f;
  235.   int count, share, md, fd;
  236.   char drive[MAXDRIVE], dir[MAXDIR], file[MAXFILE], ext[MAXEXT];
  237.  
  238.   share = SH_DENYWR;
  239.   md = 0;
  240.   if (((char *) _fstrchr(fmode, 'w')) != NULL) {
  241.     share = SH_DENYRD;
  242.     md = O_RDWR | O_CREAT | O_TRUNC;
  243.   } else
  244.     if (((char *) _fstrchr(fmode, 'a')) != NULL) {
  245.     share = SH_DENYRD;
  246.     md = O_RDWR | O_CREAT;
  247.   } else {
  248.     md = O_RDONLY;
  249.   }
  250.   if (((char *) _fstrchr(fmode, 'b')) != NULL) {
  251.     md |= O_BINARY;
  252.   }
  253.   if (((char *) _fstrchr(fmode, '+')) != NULL) {
  254.     md &= ~O_RDONLY;
  255.     md |= O_RDWR;
  256.     share = SH_DENYRD;
  257.   }
  258.   fd = open(path, md | share, S_IREAD | S_IWRITE);
  259.   if (fd < 0) {
  260.     count = 1;
  261.     fnsplit(path, drive, dir, file, ext);
  262.     if ((access(path, 0)) != -1) {
  263.       delay(WAIT_TIME);
  264.       fd = open(path, md | share, S_IREAD | S_IWRITE);
  265.       while (((fd < 0) && (errno == EACCES)) && (count < TRIES)) {
  266.         delay(WAIT_TIME);
  267.         count++;
  268.         fd = open(path, md | share, S_IREAD | S_IWRITE);
  269.       }
  270.     }
  271.   }
  272.   if (fd > 0) {
  273.     if (((char *) _fstrchr(fmode, 'a')) != NULL)
  274.       sh_lseek(fd, 0L, SEEK_END);
  275.     f = fdopen(fd, fmode);
  276.     if (!f) {
  277.       close(fd);
  278.     }
  279.   } else
  280.     f = 0;
  281.   return (f);
  282. }
  283.  
  284. size_t fsh_write(void *ptr, size_t size, size_t n, FILE * stream)
  285. {
  286.  
  287.   if (stream == NULL) {
  288.     return (0);
  289.   }
  290.   return (fwrite(ptr, size, n, stream));
  291. }
  292.  
  293.  
  294. int exist(char *s)
  295. {
  296.   int i;
  297.   struct ffblk ff;
  298.  
  299.   i = findfirst(s, &ff, 0);
  300.   if (i)
  301.     return (0);
  302.   else
  303.     return (1);
  304. }
  305.  
  306. char *stripspace(char *str)
  307. {
  308.   char *obuf, *nbuf;
  309.  
  310.   if (str) {
  311.     for (obuf = str, nbuf = str; *obuf; ++obuf) {
  312.       if (!isspace(*obuf))
  313.         *nbuf++ = *obuf;
  314.     }
  315.     *nbuf = NULL;
  316.   }
  317.   return (str);
  318. }
  319.  
  320. static unsigned char *trimstr1(unsigned char *s)
  321. {
  322.   int i;
  323.   static char *whitespace = " \r\n\t";
  324.  
  325.   i = (int) strlen(s);
  326.   while ((i > 0) && ((char *) _fstrchr(whitespace, s[i - 1]) != NULL))
  327.     --i;
  328.   while ((i > 0) && ((char *) _fstrchr(whitespace, *s) != NULL)) {
  329.     memmove(s, s + 1, --i);
  330.   }
  331.   s[i] = 0;
  332.   return (s);
  333. }
  334.  
  335. void output(char *fmt,...)
  336. {
  337.   va_list v;
  338.   char s[255];
  339.  
  340.   va_start(v, fmt);
  341.   vsprintf(s, fmt, v);
  342.   va_end(v);
  343.   fputs(s, stderr);
  344. }
  345.  
  346. int log_it(int display, char *fmt,...)
  347. {
  348.   va_list v;
  349.   char s[255], fn[MAXPATH];
  350.   FILE *fp;
  351.  
  352.   sprintf(fn, "%sNEWS.LOG", net_data);
  353.   if ((fp = fsh_open(fn, "at")) == NULL) {
  354.     output("\n ! Error accessing %s.", fn);
  355.     return 1;
  356.   }
  357.   va_start(v, fmt);
  358.   vsprintf(s, fmt, v);
  359.   va_end(v);
  360.   fputs(s, fp);
  361.   fclose(fp);
  362.   if (display)
  363.     fputs(s, stderr);
  364.   return 0;
  365. }
  366.  
  367.  
  368. int num_to_name(int out, char *where, int whichuser, int alias)
  369. {
  370.   char *ss, fn[MAXPATH], s[101], buf[60];
  371.   int i, userfile, num_users, found;
  372.   long pos;
  373.   FILE *fp;
  374.   userrec ur;
  375.  
  376.   found = 0;
  377.   if (out) {
  378.     sprintf(fn, "%sNET.INI", maindir);
  379.     if ((fp = fsh_open(fn, "rt")) != NULL) {
  380.       while ((fgets(s, 100, fp)) && (!found)) {
  381.         if (strnicmp(s, "USER", 4) == 0) {
  382.           ss = strtok(s, "=");
  383.           strcpy(buf, &s[4]);
  384.           if (isdigit(buf[0])) {
  385.             i = atoi(buf);
  386.             if (i == whichuser) {
  387.               ss = strtok(NULL, "\r\n");
  388.               if (ss) {
  389.                 trimstr1(ss);
  390.                 strcpy(where, ss);
  391.                 found = 1;
  392.                 replyaddr = 1;
  393.               }
  394.             }
  395.           }
  396.         }
  397.       }
  398.       if (fp != NULL)
  399.         fclose(fp);
  400.       if (found)
  401.         return (found);
  402.     }
  403.   }
  404.   sprintf(fn, "%sUSER.LST", syscfg.datadir);
  405.   userfile = sh_open1(fn, O_RDONLY | O_BINARY);
  406.   if (userfile < 0) {
  407.     log_it(1, "\n ■ Cannot open %s.", fn);
  408.     return (found);
  409.   }
  410.   num_users = ((int) (filelength(userfile) / sizeof(userrec)));
  411.  
  412.   if (whichuser > num_users) {
  413.     log_it(1, "\n ■ User #%d out of range.", whichuser);
  414.     return (found);
  415.   }
  416.   pos = ((long) sizeof(userrec) * ((long) whichuser));
  417.   lseek(userfile, pos, SEEK_SET);
  418.   sh_read(userfile, &ur, sizeof(userrec));
  419.   if (ur.realname[0] == 0)
  420.     log_it(1, "\n ■ User #%d has blank real name field!", whichuser);
  421.   else {
  422.     if (ur.inact == inact_deleted)
  423.       log_it(1, "\n ■ User #%d is marked as deleted!", whichuser);
  424.     else {
  425.       if (!alias)
  426.         strcpy(where, ur.realname);
  427.       else {
  428.         strcpy(where, ur.name);
  429.         strlwr(where);
  430.       }
  431.       found = 1;
  432.     }
  433.   }
  434.   sh_close(userfile);
  435.   return (found);
  436. }
  437.  
  438.  
  439. void parse_net_ini(void)
  440. {
  441.   char s[MAXPATH], origline[121], line[121], *ss, inlist = 0;
  442.   FILE *fp;
  443.   long fptr;
  444.  
  445.   defuser = 1;
  446.   use_alias = 1;
  447.   usermail = 1;
  448.   nlists = 0;
  449.   maillist = NULL;
  450.   *REPLYTO = 0;
  451.   sprintf(s, "%sNET.INI", maindir);
  452.   if ((fp = fsh_open(s, "rt")) == NULL) {
  453.     log_it(1, "\n ■ Unable to open %s.", s);
  454.     return;
  455.   }
  456.   while (fgets(line, 80, fp)) {
  457.     ss = NULL;
  458.     strcpy(origline, line);
  459.     stripspace(line);
  460.     if ((line[0] == ';') || (line[0] == '\n') || (line[0] == 0))
  461.       continue;
  462.     if (strnicmp(line, "[MAILLIST]", 10) == 0) {
  463.       fptr = ftell(fp);
  464.       while ((fgets(line, 80, fp)) && (line[0] != '[')) {
  465.         if ((line[0] != '[') && (line[0] != ';') && (line[0] != 0))
  466.           ++nlists;
  467.       }
  468.       fseek(fp, fptr, SEEK_SET);
  469.       maillist = (MAILLISTREC *) malloc((nlists + 1) * sizeof(MAILLISTREC));
  470.       if (maillist == NULL)
  471.         log_it(1, "\n ■ Not enough memory to process %d mailing lists.", nlists);
  472.       else
  473.         inlist = 1;
  474.       nlists = 0;
  475.       continue;
  476.     } else if (line[0] == '[') {
  477.       inlist = 0;
  478.       continue;
  479.     }
  480.     if (inlist) {
  481.       if ((line[0] != ';') && (line[0] != 0)) {
  482.         ss = strtok(line, "\"");
  483.         trimstr1(ss);
  484.         if (*ss) {
  485.           ss = strtok(NULL, "\"");
  486.           if (*ss) {
  487.             strncpy(maillist[nlists].opttext, ss, 29);
  488.             maillist[nlists].opttext[30] = '\0';
  489.           } else
  490.             maillist[nlists].opttext[0] = '\0';
  491.         }
  492.         ss = strtok(line, "*\n");
  493.         trimstr1(ss);
  494.         strcpy(maillist[nlists].ownername, ss);
  495.         ss = strtok(NULL, "\"\n");
  496.         trimstr1(ss);
  497.         if (*ss) {
  498.           strlwr(maillist[nlists].ownername);
  499.           strcpy(maillist[nlists++].subtype, ss);
  500.         } else
  501.           log_it(1, "\n ■ Missing *subtype in maillist for %s.",
  502.                  maillist[nlists].ownername);
  503.       }
  504.       continue;
  505.     }
  506.     if (strnicmp(line, "POSTMASTER", 10) == 0) {
  507.       ss = strtok(line, "=");
  508.       if (ss) {
  509.         ss = strtok(NULL, "\n");
  510.         if (ss)
  511.           defuser = atoi(ss);
  512.       }
  513.       continue;
  514.     }
  515.     if (strnicmp(line, "SPAMCONTROL", 11) == 0) {
  516.       ss = strtok(line, "=");
  517.       if (ss) {
  518.         ss = strtok(NULL, "\n");
  519.         if ((ss[0] == 'y') || (ss[0] == 'Y'))
  520.           spam = 1;
  521.       }
  522.       continue;
  523.     }
  524.     if (strnicmp(line, "USERMAIL", 8) == 0) {
  525.       ss = strtok(line, "=");
  526.       if (ss) {
  527.         ss = strtok(NULL, "\n");
  528.         if ((ss[0] == 'n') || (ss[0] == 'N'))
  529.           usermail = 0;
  530.       }
  531.       continue;
  532.     }
  533.     if (strnicmp(line, "SPAMADDRESS", 9) == 0) {
  534.       ss = strtok(line, "=");
  535.       if (ss) {
  536.         ss = strtok(NULL, "\n");
  537.         trimstr1(ss);
  538.         strcpy(spamname, ss);
  539.         if (stricmp(spamname, "DEFAULT") == 0)
  540.           strcpy(spamname, "WWIV_BBS@nospam.net");
  541.       }
  542.       continue;
  543.     }
  544.     if (strnicmp(line, "REPLYTO", 7) == 0) {
  545.       ss = strtok(origline, "=");
  546.       if (ss) {
  547.         ss = strtok(NULL, "\n");
  548.         trimstr1(ss);
  549.         strcpy(REPLYTO, ss);
  550.       }
  551.       continue;
  552.     }
  553.     if (strnicmp(line, "SIGNATURE", 9) == 0) {
  554.       ss = strtok(line, "=");
  555.       if (ss) {
  556.         ss = strtok(NULL, "\n");
  557.         trimstr1(ss);
  558.         strcpy(tagfile, ss);
  559.         if (!exist(tagfile)) {
  560.           log_it(1, "\n ■ Default signature file %s not found!", tagfile);
  561.           tagfile[0] = 0;
  562.         }
  563.       }
  564.       continue;
  565.     }
  566.     if (strnicmp(line, "REALNAME", 8) == 0) {
  567.       ss = strtok(line, "=");
  568.       if (ss) {
  569.         ss = strtok(NULL, "\n");
  570.         if ((ss[0] == 'y') || (ss[0] == 'Y'))
  571.           use_alias = 0;
  572.       }
  573.     }
  574.   }
  575.   num_to_name(0, postmaster, defuser, 1);
  576.   if (fp != NULL)
  577.     fclose(fp);
  578.   return;
  579. }
  580.  
  581. unsigned char *strrep(char *str, char old, char New)
  582. {
  583.   int i;
  584.  
  585.   for (i = 0; str[i]; i++)
  586.     if (str[i] == old)
  587.       str[i] = New;
  588.   return (str);
  589. }
  590.  
  591.  
  592. char *stristr(char *String, char *Pattern)
  593. {
  594.   char *pptr, *sptr, *start;
  595.   unsigned int slen, plen;
  596.  
  597.   for (start = String, pptr = Pattern, slen = strlen(String),
  598.        plen = strlen(Pattern); slen >= plen; start++, slen--) {
  599.     while (toupper(*start) != toupper(*Pattern)) {
  600.       start++;
  601.       slen--;
  602.       if (slen < plen)
  603.         return (NULL);
  604.     }
  605.     sptr = start;
  606.     pptr = Pattern;
  607.     while (toupper(*sptr) == toupper(*pptr)) {
  608.       sptr++;
  609.       pptr++;
  610.       if ('\0' == *pptr)
  611.         return (start);
  612.     }
  613.   }
  614.   return (NULL);
  615. }
  616.  
  617. int name_to_acct(char *name)
  618. {
  619.   char *ss, s[101], fn[MAXPATH], buf[61], hold[10];
  620.   int found, usernum;
  621.   FILE *fp;
  622.  
  623.   sprintf(fn, "%sNET.INI", maindir);
  624.   if ((fp = fsh_open(fn, "rt")) == NULL) {
  625.     log_it(1, "\n ! Unable to open %s.", fn);
  626.     return 0;
  627.   }
  628.  
  629.   found = usernum = 0;
  630.   while ((fgets(s, 100, fp)) && (!found)) {
  631.     if (strnicmp(s, "USER", 4) == 0) {
  632.       ss = strtok(s, "=");
  633.       strcpy(hold, ss);
  634.       ss = strtok(NULL, "\r\n");
  635.       if (ss) {
  636.         trimstr1(ss);
  637.         if (stristr(name, ss) != NULL) {
  638.           strcpy(buf, &hold[4]);
  639.           usernum = atoi(buf);
  640.           found = 1;
  641.         }
  642.       }
  643.     }
  644.   }
  645.   if (fp != NULL)
  646.     fclose(fp);
  647.   if (usernum > 0)
  648.     log_it(1, "\n ■ Matched %s to NET.INI user #%d.", name, usernum);
  649.   return usernum;
  650. }
  651.  
  652. unsigned int name_to_num(char *name)
  653. {
  654.   int userfile, usernum;
  655.   userrec ur;
  656.   long pos;
  657.   char fn[MAXPATH], ur_name[60], ur_realname[60];
  658.  
  659.   if ((stristr(name, "Multiple recipients of") != NULL) || (strlen(name) == 0))
  660.     return 0;
  661.   sprintf(fn, "%sM%s.NET", net_data, name);
  662.   if (exist(fn)) {
  663.     log_it(1, "\n ■ Matched \"%s\" mailing list.", name);
  664.     strcpy(alphasubtype, name);
  665.     return (unsigned) (65535L);
  666.   }
  667.  
  668.   if ((usernum = name_to_acct(name)) > 0)
  669.     return usernum;
  670.  
  671.   sprintf(fn, "%sUSER.LST", syscfg.datadir);
  672.   userfile = sh_open1(fn, O_RDONLY | O_BINARY);
  673.   if (userfile < 0) {
  674.     log_it(1, "\n ■ Cannot open %s", fn);
  675.     return (0);
  676.   } else
  677.     log_it(1, "\n ■ Searching for user \"%s\"...", name);
  678.   num_users = ((int) (filelength(userfile) / sizeof(userrec)));
  679.  
  680.   for (usernum = 1; usernum < num_users; usernum++) {
  681.     pos = ((long) sizeof(userrec) * ((long) usernum));
  682.     lseek(userfile, pos, SEEK_SET);
  683.     sh_read(userfile, &ur, sizeof(userrec));
  684.     strcpy(ur_realname, ur.realname);
  685.     strrep(ur_realname, ' ', '_');
  686.     strcpy(ur_name, ur.name);
  687.     strrep(ur_name, ' ', '_');
  688.     if ((strcmpi(ur.realname, name) == 0) || (strcmpi(ur_realname, name) == 0) ||
  689.         (strcmpi(ur.name, name) == 0) || (strcmpi(ur_name, name) == 0)) {
  690.       if (ur.inact == inact_deleted) {
  691.         log_it(1, " user #%d is deleted account.", usernum);
  692.         usernum = 0;
  693.         break;
  694.       } else {
  695.         log_it(1, " matched to user #%d.", usernum);
  696.         break;
  697.       }
  698.     }
  699.   }
  700.   userfile = sh_close(userfile);
  701.  
  702.   if (usernum >= num_users) {
  703.     log_it(1, "... no match found.");
  704.     return 0;
  705.   }
  706.   return (usernum);
  707. }
  708.  
  709. char *find_name(char *name)
  710. {
  711.   char *ss, *ss1, hold[81];
  712.   int focus = 0;
  713.  
  714.   curuser = 0;
  715.   strcpy(hold, name);
  716.   ss1 = NULL;
  717.   if ((ss = strchr(name, '(')) != NULL) {
  718.     ss1 = strtok(name, "(");
  719.     ss1 = strtok(NULL, ")");
  720.   } else if ((ss = strchr(name, '\"')) != NULL) {
  721.     ss1 = strtok(ss, "\"");
  722.   } else if ((ss = strchr(name, '<')) != NULL) {
  723.     ss1 = strtok(name, "<");
  724.   } else
  725.     focus = 1;
  726.   trimstr1(ss1);
  727.   if (focus) {
  728.     stripspace(hold);
  729.     curuser = name_to_num(hold);
  730.   } else
  731.     curuser = name_to_num(ss1);
  732.   if (curuser == 0)
  733.     return ('\0');
  734.   else if (curuser == ((unsigned) 65535L))
  735.     return (alphasubtype);
  736.   else
  737.     return (ss1);
  738. }
  739.  
  740. void name_packet(char *pktname)
  741. {
  742.   int ok;
  743.   struct stat info;
  744.   unsigned i;
  745.  
  746.   ok = 0;
  747.   for (i = 0; ((i < 1000) && (!ok)); i++) {
  748.     sprintf(pktname, "%sP0-%u.%3.3hu", net_data, i, instance);
  749.     if (stat(pktname, &info) == -1)
  750.       ok = 1;
  751.   }
  752. }
  753.  
  754. #define FROM_RETURN 0x01
  755. #define FROM_FROM   0x02
  756. #define FROM_REPLY  0x04
  757.  
  758. int import(char *fn)
  759. {
  760.   char s[513], s1[121], pktname[MAXPATH], msgdate[61], *ss, *p, *id, *name;
  761.   char alphatype[21], recvdate[81];
  762.   int i, f, from, match, subj, intext, done, tolist;
  763.   long textlen, reallen;
  764.   struct msghdr mh;
  765.   net_header_rec nh;
  766.   FILE *fp;
  767.  
  768.   tolist = 0;
  769.   intext = 0;
  770.   f = sh_open1(fn, O_RDONLY | O_BINARY);
  771.   if (f < 0)
  772.     return (1);
  773.   textlen = filelength(f);
  774.   if (textlen > 32767L) {
  775.     sh_close(f);
  776.     log_it(1, "\n ■ Skipping UU/Base64 %s.", fn);
  777.     return (1);
  778.   }
  779.   p = (char *) malloc((int) (textlen + 1));
  780.   if (p == NULL) {
  781.     sh_close(f);
  782.     log_it(1, "\n ■ Unable to allocate %ld bytes.", textlen);
  783.     return (1);
  784.   }
  785.   sh_read(f, (void *) p, (int) textlen);
  786.   sh_close(f);
  787.  
  788.   nh.tosys = net_sysnum;
  789.   nh.fromsys = 32767;
  790.   nh.fromuser = 0;
  791.   nh.touser = defuser;
  792.   nh.main_type = main_type_email;
  793.   nh.minor_type = 0;
  794.   nh.list_len = 0;
  795.   ++cur_daten;
  796.   nh.daten = cur_daten;
  797.   strncpy(msgdate, ctime(&(time_t) nh.daten), 24);
  798.   msgdate[24] = '\0';
  799.   sprintf(recvdate, "0RReceived: PPP Project %s on %s\r\n", VERSION, msgdate);
  800.   strcat(msgdate, "\r\n");
  801.   nh.method = 0;
  802.  
  803.   strcpy(mh.fromUserName, "Unknown");
  804.   strcpy(mh.toUserName, "Unknown");
  805.   strcpy(mh.subject, "None");
  806.  
  807.   if ((fp = fsh_open(fn, "rb")) == NULL) {
  808.     free(p);
  809.     return 1;
  810.   }
  811.   match = subj = done = 0;
  812.   while ((fgets(s, 254, fp)) && !done) {
  813.     if (s[0] == 4) {
  814.       ss = strtok(s, "R");
  815.       ss = strtok(NULL, "\r\n");
  816.       if (ss == NULL)
  817.         s[0] = 0;
  818.       else
  819.         strcpy(s, ss);
  820.     } else
  821.       intext = 1;
  822.     if (!intext) {
  823.       if (strncmpi(s, "from:", 5) == 0)
  824.         from = FROM_FROM;
  825.       else
  826.         if (strncmpi(s, "return-path:", 12) == 0)
  827.         from = FROM_RETURN;
  828.       else
  829.         if (strncmpi(s, "sender:", 7) == 0)
  830.         from = FROM_RETURN;
  831.       else
  832.         if (strncmpi(s, "x-sender:", 9) == 0)
  833.         from = FROM_RETURN;
  834.       else
  835.         if (strncmpi(s, "x-to:", 5) == 0)
  836.         from = FROM_RETURN;
  837.       else
  838.         if (strncmpi(s, "reply-to:", 9) == 0)
  839.         from = FROM_REPLY;
  840.       else
  841.         if (strncmpi(s, "x-reply-to:", 11) == 0)
  842.         from = FROM_REPLY;
  843.       else
  844.         from = 0;
  845.       if (from) {
  846.         ss = strtok(s, ": ");
  847.         ss = strtok(NULL, "\r\n");
  848.         trimstr1(ss);
  849.         if ((from & (FROM_RETURN | FROM_REPLY)) && (nh.main_type == main_type_email)) {
  850.           strcpy(s1, ss);
  851.           strlwr(s1);
  852.           for (i = 0; (i < nlists) && (nh.main_type == main_type_email); i++) {
  853.             if (stristr(s1, maillist[i].ownername) != NULL) {
  854.               if (atoi(maillist[i].subtype)) {
  855.                 nh.main_type = main_type_pre_post;
  856.                 nh.minor_type = atoi(maillist[i].subtype);
  857.               } else {
  858.                 nh.main_type = main_type_new_post;
  859.                 nh.minor_type = 0;
  860.                 strcpy(alphatype, maillist[i].subtype);
  861.               }
  862.               strcpy(alphasubtype, maillist[i].subtype);
  863.               nh.touser = 0;
  864.               from = 0;
  865.             }
  866.           }
  867.         }
  868.         if ((from > match) && ((nh.main_type == main_type_email) || (from == FROM_FROM))) {
  869.           match = from;
  870.           if (strcspn(ss, "<") != strlen(ss)) {
  871.             if ((strcspn(ss, " ")) < (strcspn(ss, "<"))) {
  872.               name = strtok(ss, "<");
  873.               trimstr1(name);
  874.               id = strtok(NULL, ">");
  875.               trimstr1(id);
  876.               sprintf(mh.fromUserName, "%s <%s>", name, id);
  877.             } else {
  878.               strncpy(mh.fromUserName, ss, 205);
  879.               trimstr1(mh.fromUserName);
  880.               if (strcspn(ss, " ") != strlen(ss))
  881.                 log_it(1, "\nName is *after* host in \"%s\"", name);
  882.             }
  883.           } else
  884.             strncpy(mh.fromUserName, ss, 205);
  885.           mh.fromUserName[190] = 0;
  886.           strcat(mh.fromUserName, "\r\n");
  887.         }
  888.       } else if ((strncmpi(s, "subject:", 8) == 0) && (!subj)) {
  889.         ss = strtok(s, ": ");
  890.         ss = strtok(NULL, "\r\n");
  891.         trimstr1(ss);
  892.         strncpy(mh.subject, ss, 81);
  893.         mh.subject[72] = 0;
  894.         subj = 1;
  895.       } else if (strncmpi(s, "date:", 5) == 0) {
  896.         ss = strtok(s, ": ");
  897.         ss = strtok(NULL, "\r\n");
  898.         trimstr1(ss);
  899.         strncpy(msgdate, ss, 58);
  900.         msgdate[58] = '\0';
  901.         strcat(msgdate, "\r\n");
  902.       } else if ((strncmpi(s, "to:", 3) == 0) || (strncmpi(s, "cc:", 3) == 0)) {
  903.         ss = strtok(s, ":");
  904.         ss = strtok(NULL, "\r\n");
  905.         strncpy(mh.toUserName, ss, 81);
  906.         mh.toUserName[80] = 0;
  907.         curuser = 0;
  908.         trimstr1(mh.toUserName);
  909.         find_name(mh.toUserName);
  910. /*
  911.         if ((_fstrchr(mh.toUserName, ' ') != NULL) || (_fstrchr(mh.toUserName, '\"') != NULL) ||
  912.             (_fstrchr(mh.toUserName, '(') != NULL))
  913.           find_name(mh.toUserName);
  914.         else
  915.           mh.toUserName[0] = 0;
  916. */
  917.         if ((stristr(mh.toUserName, "Multiple recipients of") != NULL) && (curuser != (unsigned) 65535L)) {
  918.           for (i = 0; (i < nlists) && (nh.main_type == main_type_email); i++) {
  919.             if (stristr(mh.toUserName, maillist[i].opttext) != NULL) {
  920.               if (atoi(maillist[i].subtype)) {
  921.                 nh.main_type = main_type_pre_post;
  922.                 nh.minor_type = atoi(maillist[i].subtype);
  923.               } else {
  924.                 nh.main_type = main_type_new_post;
  925.                 nh.minor_type = 0;
  926.                 strcpy(alphatype, maillist[i].subtype);
  927.               }
  928.               strcpy(alphasubtype, maillist[i].subtype);
  929.               nh.touser = 0;
  930.             }
  931.           }
  932.         }
  933.         if ((curuser == (unsigned) 65535L) && (nh.main_type == main_type_email)) {
  934.           strcpy(alphatype, alphasubtype);
  935.           nh.main_type = main_type_new_post;
  936.           nh.minor_type = 0;
  937.           nh.touser = 0;
  938.           tolist = 1;
  939.         } else
  940.           if ((mh.toUserName[0] == 0) || (curuser == 0)) {
  941.           nh.touser = defuser;
  942.           strcpy(mh.toUserName, postmaster);
  943.         } else {
  944.           nh.touser = curuser;
  945.         }
  946.       } else if (strncmpi(s, "apparently-to:", 14) == 0) {
  947.         ss = strtok(s, ": ");
  948.         ss = strtok(NULL, "\r\n");
  949.         strncpy(mh.toUserName, ss, 81);
  950.         mh.toUserName[80] = 0;
  951.         curuser = 0;
  952.         trimstr1(mh.toUserName);
  953.         if (_fstrstr(mh.toUserName, " "))
  954.           find_name(mh.toUserName);
  955.         else
  956.           mh.toUserName[0] = 0;
  957.         if ((curuser == (unsigned) 65535L) && (nh.main_type == main_type_email)) {
  958.           strcpy(alphatype, alphasubtype);
  959.           nh.main_type = main_type_new_post;
  960.           nh.minor_type = 0;
  961.           nh.touser = 0;
  962.           tolist = 1;
  963.         } else if ((mh.toUserName[0] == 0) || (curuser == 0)) {
  964.           nh.touser = defuser;
  965.           strcpy(mh.toUserName, postmaster);
  966.         } else
  967.           nh.touser = curuser;
  968.       }
  969.     } else
  970.       done = 1;
  971.   }
  972.   if (fp != NULL)
  973.     fclose(fp);
  974.   trimstr1(mh.fromUserName);
  975.   strcat(mh.fromUserName, "\r\n");
  976.   log_it(1, "\n ■ From    : %s", strlwr(mh.fromUserName));
  977.   if ((nh.main_type == main_type_pre_post) ||
  978.       (nh.main_type == main_type_new_post))
  979.     log_it(1, " ■ Post to : Sub %s", alphasubtype);
  980.   else
  981.     log_it(1, " ■ Sent to : %s #%hd", strupr(mh.toUserName), nh.touser);
  982.   log_it(1, "\n ■ Subject : %s", mh.subject);
  983.   name_packet(pktname);
  984.   if ((fp = fsh_open(pktname, "wb")) == NULL) {
  985.     log_it(1, "\n ■ Unable to create packet %s", pktname);
  986.     free(p);
  987.     return (1);
  988.   }
  989.   nh.length = textlen + strlen(mh.fromUserName) + strlen(mh.subject)
  990.       + strlen(msgdate) + strlen(recvdate) + 1;
  991.   if (nh.main_type == main_type_new_post)
  992.     nh.length += strlen(alphatype) + 1;
  993.   while (tolist >= 0) {
  994.     fsh_write(&nh, sizeof(net_header_rec), 1, fp);
  995.     if (nh.main_type == main_type_new_post)
  996.       fsh_write(alphatype, sizeof(char), strlen(alphatype) +1, fp);
  997.     fsh_write(mh.subject, sizeof(char), strlen(mh.subject) +1, fp);
  998.     fsh_write(mh.fromUserName, sizeof(char), strlen(mh.fromUserName), fp);
  999.     fsh_write(msgdate, sizeof(char), strlen(msgdate), fp);
  1000.     fsh_write(recvdate, sizeof(char), strlen(recvdate), fp);
  1001.     reallen = fsh_write(p, sizeof(char), (int) textlen, fp);
  1002.     if (reallen != textlen)
  1003.       log_it(1, "\n ■ Expected %ld bytes, wrote %ld bytes.", textlen, reallen);
  1004.     nh.tosys = 32767;
  1005.     --tolist;
  1006.   }
  1007.   if (fp != NULL)
  1008.     fclose(fp);
  1009.   free(p);
  1010.   return (0);
  1011. }
  1012.  
  1013.  
  1014. char *stripcolors(char *str)
  1015. {
  1016.   char *obuf, *nbuf;
  1017.  
  1018.   if (str) {
  1019.     for (obuf = str, nbuf = str; *obuf; ++obuf) {
  1020.       if (*obuf == 3)
  1021.         ++obuf;
  1022.       else
  1023.         if (((*obuf < 32) && (*obuf != 9)) || (*obuf > 126))
  1024.         continue;
  1025.       else
  1026.         *nbuf++ = *obuf;
  1027.     }
  1028.     *nbuf = NULL;
  1029.   }
  1030.   return (str);
  1031. }
  1032.  
  1033. void properize(char *s)
  1034. {
  1035.   int i;
  1036.  
  1037.   for (i = 0; i < strlen(s); i++) {
  1038.     if ((i == 0) || ((i > 0) && ((s[i - 1] == ' ') || (s[i - 1] == '.') ||
  1039.            ((s[i - 1] == 'c') && (s[i - 2] == 'M')) || ((s[i - 1] == 'c') &&
  1040.              (s[i - 2] == 'a') && (s[i - 3] == 'M')) || (s[i - 1] == '-') ||
  1041.          (s[i - 1] == '_') || ((s[i - 1] == '\'') && (s[i - 2] == 'O'))))) {
  1042.       s[i] = toupper(s[i]);
  1043.     } else
  1044.       s[i] = tolower(s[i]);
  1045.   }
  1046. }
  1047.  
  1048. void move_dead(net_header_rec *nh, char *text)
  1049. {
  1050.   char fn[81];
  1051.   int f;
  1052.   long l, l1;
  1053.  
  1054.   sprintf(fn, "%sDEAD.NET", net_data);
  1055.   f = sh_open(fn, O_RDWR | O_BINARY | SH_DENYRW | O_CREAT, S_IREAD | S_IWRITE);
  1056.   if (f > 0) {
  1057.     lseek(f, 0L, SEEK_END);
  1058.     l = l1 = tell(f);
  1059.     write(f, (void *)nh, sizeof(net_header_rec));
  1060.     l1 += sizeof(net_header_rec);
  1061.     write(f, (void *)text, (int)(nh->length));
  1062.     l1 += nh->length;
  1063.     if (l1 != tell(f))
  1064.       chsize(f,l);
  1065.     f = sh_close(f);
  1066.   } else
  1067.     log_it(1, "\n ! Couldn't open '%s'", fn);
  1068. }
  1069.  
  1070.  
  1071.  
  1072. int export(char *fn)
  1073. {
  1074.   char fn1[121], tagfn[121], groupname[81], outfn[121], _temp_buffer[256];
  1075.   char *ss, *buffer, *text, alphatype[21], hold[21], tempoutfn[21];
  1076.   unsigned stype, ttype;
  1077.   int infile, outfile, inloc, outloc, term, ok, i, j, ns, i6, tolist;
  1078.   net_header_rec nhr;
  1079.   struct msghdr mh;
  1080.   struct tm *time_msg;
  1081.   FILE *fp;
  1082.   time_t some;
  1083.   char *main_type[] =
  1084.   {
  1085.     "Network Update", "email by usernum", "post from sub host", "file",
  1086.     "post to sub host", "external message", "email by name",
  1087.     "NetEdit message", "SUBS.LST", "Extra Data", "BBSLIST from GC",
  1088.     "CONNECT from GC", "Unused_1", "Info from GC", "SSM", "Sub Add Request",
  1089.     "Sub Drop Request", "Sub Add Response", "Sub Drop Response", "Sub Info",
  1090.     "Unused 1", "Unused 2", "Unused 3", "Unused 4", "Unused 5", "new post",
  1091.     "new external"
  1092.   };
  1093.  
  1094.   if ((infile = sh_open1(fn, O_RDONLY | O_BINARY)) == -1)
  1095.     return 1;
  1096.  
  1097.   if ((buffer = (char *) malloc(32 * 1024)) == NULL) {
  1098.     sh_close(infile);
  1099.     log_it(1, "\n ■ Out of memory allocating input buffer!");
  1100.     return 1;
  1101.   }
  1102.   if ((text = (char *) malloc(32 * 1024)) == NULL) {
  1103.     log_it(1, "\n ■ Out of memory allocating output buffer!");
  1104.     sh_close(infile);
  1105.     if (buffer != NULL)
  1106.       free(buffer);
  1107.     return 1;
  1108.   }
  1109.   while (sh_read(infile, &nhr, sizeof(nhr))) {
  1110.     sh_read(infile, buffer, (int) nhr.length);
  1111.     if (nhr.tosys != 32767) {
  1112.       log_it(1, "\n ■ System @%hd routing through @32767... moving to DEAD.NET.",
  1113.         nhr.fromsys);
  1114.       move_dead(&nhr, buffer);
  1115.       continue;
  1116.     }
  1117.     tolist = 0;
  1118.     if (nhr.main_type == main_type_pre_post)
  1119.       nhr.main_type = main_type_post;
  1120.     if ((nhr.main_type == main_type_post) ||
  1121.         (nhr.main_type == main_type_new_post) ||
  1122.         (nhr.main_type == main_type_email_name) ||
  1123.         (nhr.main_type == main_type_ssm)) {
  1124.       inloc = 0;
  1125.       sprintf(hold, "%hu", nhr.minor_type);
  1126.       if ((nhr.main_type == main_type_email_name) ||
  1127.           (nhr.main_type == main_type_ssm) ||
  1128.           (nhr.main_type == main_type_new_post)) {
  1129.         stype = nhr.minor_type;
  1130.         inloc = strlen(buffer) + 1;
  1131.         if ((nhr.main_type == main_type_new_post) || ((nhr.fromsys != net_sysnum) &&
  1132.                                                   (nhr.fromsys != 32767))) {
  1133.           strcpy(alphasubtype, buffer);
  1134.           strcpy(hold, alphasubtype);
  1135.         } else
  1136.           strcpy(mh.toUserName, buffer);
  1137.       } else
  1138.         if (nhr.main_type == main_type_post) {
  1139.         stype = nhr.minor_type;
  1140.       } else {
  1141.         stype = atoi(&buffer[inloc]);
  1142.         sprintf(_temp_buffer, "%u", stype);
  1143.         inloc += strlen(_temp_buffer) + 1;
  1144.       }
  1145.  
  1146.       strncpy(mh.subject, &buffer[inloc], sizeof(mh.subject));
  1147.       stripcolors(mh.subject);
  1148.       inloc += strlen(&buffer[inloc]) + 1;
  1149.  
  1150.       for (term = inloc; buffer[term] != '\r'; term++);
  1151.       buffer[term] = '\0';
  1152.  
  1153.       if ((nhr.fromsys == net_sysnum) && (nhr.fromuser)) {
  1154.         if ((nhr.main_type != main_type_post) &&
  1155.             (nhr.main_type != main_type_new_post)) {
  1156.           replyaddr = 0;
  1157.           if (!num_to_name(1, mh.fromUserName, nhr.fromuser, use_alias)) {
  1158.             log_it(1, "\n ■ No match for user #%hd... skipping message!",
  1159.                    nhr.fromuser);
  1160.             continue;
  1161.           }
  1162.         } else {
  1163.           strncpy(mh.fromUserName, &buffer[inloc], sizeof(mh.fromUserName));
  1164.           stripcolors(mh.fromUserName);
  1165.           strtok(mh.fromUserName, "#");
  1166.           trimstr1(mh.fromUserName);
  1167.         }
  1168.       } else {
  1169.         strncpy(mh.fromUserName, &buffer[inloc], sizeof(mh.fromUserName));
  1170.         stripcolors(mh.fromUserName);
  1171.         strtok(mh.fromUserName, "#");
  1172.         trimstr1(mh.fromUserName);
  1173.         if ((nhr.main_type == main_type_post) &&
  1174.             (nhr.main_type == main_type_new_post)) {
  1175.           sprintf(_temp_buffer, " #%hd @%hu", nhr.fromuser, nhr.fromsys);
  1176.           strcat(mh.fromUserName, _temp_buffer);
  1177.           log_it(1, "\nFrom: %s\n", mh.fromUserName);
  1178.         }
  1179.       }
  1180.  
  1181.       inloc = term + 2;
  1182.  
  1183.       while (buffer[inloc] != '\n')
  1184.         inloc++;
  1185.       inloc++;
  1186.  
  1187.       if (strnicmp(&buffer[inloc], "RE: ", 4) == 0) {
  1188.         for (term = inloc; buffer[term] != '\r'; term++);
  1189.         buffer[term] = '\0';
  1190.         strncpy(mh.subject, &buffer[inloc + 4], sizeof(mh.subject));
  1191.         if (strnicmp(mh.subject, "RE: ", 4) != 0) {
  1192.           strcpy(_temp_buffer, "Re: ");
  1193.           strcat(_temp_buffer, mh.subject);
  1194.         }
  1195.         strcpy(mh.subject, _temp_buffer);
  1196.         inloc = term + 2;
  1197.       }
  1198.       if ((strncmp(&buffer[inloc], "BY: ", 4) == 0) ||
  1199.           (strncmp(&buffer[inloc], "TO: ", 4) == 0)) {
  1200.         for (term = inloc; buffer[term] != '\r'; term++);
  1201.         buffer[term] = '\0';
  1202.         strncpy(mh.toUserName, &buffer[inloc + 4], sizeof(mh.toUserName));
  1203.         stripcolors(mh.toUserName);
  1204.         if (strcspn(mh.toUserName, "<") != strlen(mh.toUserName)) {
  1205.           if ((_fstrstr(mh.toUserName, "\"") == 0) && (_fstrstr(mh.toUserName, "(") == 0)) {
  1206.             ss = strtok(mh.toUserName, "<");
  1207.             ss = strtok(NULL, ">");
  1208.             strcpy(mh.toUserName, ss);
  1209.           }
  1210.         }
  1211.         inloc = term + 2;
  1212.       } else {
  1213.         if (nhr.main_type != main_type_email_name) {
  1214.           strcpy(mh.toUserName, "ALL");
  1215.         }
  1216.       }
  1217.       outloc = 0;
  1218.       do {
  1219.         if (buffer[inloc] == 2) {
  1220.           i = inloc + 1;
  1221.           for (j = 1; j < 255; j++) {
  1222.             if (buffer[i] == 'π')
  1223.               buffer[i] = '\r';
  1224.             if ((buffer[i] == '\r') || (i > nhr.length))
  1225.               break;
  1226.             i++;
  1227.           }
  1228.           if (j < 80) {
  1229.             i = (80 - j) / 2;
  1230.             for (j = 1; j <= i; j++)
  1231.               text[outloc++] = ' ';
  1232.           }
  1233.           inloc++;
  1234.         } else
  1235.           if (buffer[inloc] == 3)
  1236.           inloc += 2;
  1237.         else
  1238.           if ((buffer[inloc] == 124) && (isdigit(buffer[inloc + 1])) && (isdigit(buffer[inloc + 2])))
  1239.           inloc += 3;
  1240.         else
  1241.           if ((buffer[inloc] == 4) && (isdigit(buffer[inloc + 1]))) {
  1242.           i = inloc;
  1243.           for (j = 1; j < 255; j++) {
  1244.             if ((buffer[i] == '\r') || (i > nhr.length))
  1245.               break;
  1246.             i++;
  1247.             inloc++;
  1248.           }
  1249.           inloc++;
  1250.           if (buffer[inloc] == '\n')
  1251.             inloc++;
  1252.         } else
  1253.           if (buffer[inloc] >= 127)
  1254.           inloc++;
  1255.         else
  1256.           if (buffer[inloc] == 1)
  1257.           inloc++;
  1258.         else
  1259.           text[outloc++] = buffer[inloc++];
  1260.       } while (inloc < nhr.length);
  1261.  
  1262.       text[outloc] = '\0';
  1263.  
  1264.       if ((nhr.main_type == main_type_post) ||
  1265.           (nhr.main_type == main_type_pre_post) ||
  1266.           (nhr.main_type == main_type_new_post)) {
  1267.         if (nhr.main_type == main_type_new_post) {
  1268.           sprintf(fn1, "%sM%s.NET", net_data, alphasubtype);
  1269.           if (exist(fn1)) {
  1270.             tolist = 1;
  1271.             nhr.main_type = main_type_email_name;
  1272.           }
  1273.         }
  1274.         for (i = 0; (i < nlists) && (nhr.main_type != main_type_email_name); i++) {
  1275.           if (nhr.main_type == main_type_new_post) {
  1276.             if (strcmpi(alphasubtype, maillist[i].subtype) == 0) {
  1277.               nhr.main_type = main_type_email_name;
  1278.               strcpy(mh.toUserName, maillist[i].ownername);
  1279.             }
  1280.           } else {
  1281.             ttype = atoi(maillist[i].subtype);
  1282.             if (ttype == stype) {
  1283.               nhr.main_type = main_type_email_name;
  1284.               strcpy(mh.toUserName, maillist[i].ownername);
  1285.             }
  1286.           }
  1287.         }
  1288.       }
  1289.       switch (nhr.main_type) {
  1290.         case main_type_email:
  1291.         case main_type_email_name:
  1292.         case main_type_ssm:
  1293.           i = 1;
  1294.           sprintf(outfn, "%sMQUEUE\\MSG.%d", net_data, i);
  1295.           while (exist(outfn))
  1296.             sprintf(outfn, "%sMQUEUE\\MSG.%d", net_data, ++i);
  1297.           break;
  1298.         case main_type_new_post:
  1299.         case main_type_post:
  1300.         case main_type_pre_post:
  1301.           i = 1;
  1302.           strcpy(tempoutfn, hold);
  1303.           sprintf(outfn, "%sOUTBOUND\\%s.%d", net_data, tempoutfn, i);
  1304.           while (exist(outfn))
  1305.             sprintf(outfn, "%sOUTBOUND\\%s.%d", net_data, tempoutfn, ++i);
  1306.           break;
  1307.         default:
  1308.           continue;
  1309.       }
  1310.  
  1311.       if (!replyaddr)
  1312.         properize(mh.fromUserName);
  1313.       log_it(1, "\n ■ Creating: %s", outfn);
  1314.       if (nhr.fromsys != net_sysnum)
  1315.         log_it(1, "\n ■ From    : %s", mh.fromUserName);
  1316.       else if (usermail) {
  1317.         if (replyaddr)
  1318.           log_it(1, "\n ■ From    : %s", mh.fromUserName);
  1319.         else
  1320.           log_it(1, "\n ■ From    : \"%s\" <%s@%s>", mh.fromUserName, POPNAME, DOMAIN);
  1321.       } else
  1322.         log_it(1, "\n ■ From    : <%s@%s>", POPNAME, DOMAIN);
  1323.       if ((nhr.main_type == main_type_post) ||
  1324.           (nhr.main_type == main_type_pre_post) ||
  1325.           (nhr.main_type == main_type_new_post)) {
  1326.         sprintf(fn1, "%sNEWS.RC", net_data);
  1327.         if ((fp = fsh_open(fn1, "rt")) == NULL) {
  1328.           log_it(1, "\n ■ %s not found!", fn1);
  1329.           sh_close(infile);
  1330.           if (text)
  1331.             free(text);
  1332.           if (buffer)
  1333.             free(buffer);
  1334.           return 1;
  1335.         } else {
  1336.           ok = 0;
  1337.           while ((fgets(_temp_buffer, 80, fp) != NULL) && (!ok)) {
  1338.             groupname[0] = 0;
  1339.             ss = strtok(_temp_buffer, " ");
  1340.             if (ss) {
  1341.               strcpy(groupname, ss);
  1342.               ss = strtok(NULL, " ");
  1343.               ss = strtok(NULL, "\r");
  1344.               if (nhr.main_type == main_type_new_post) {
  1345.                 strcpy(alphatype, ss);
  1346.                 if (strncmpi(alphasubtype, alphatype, strlen(alphasubtype)) == 0)
  1347.                   ok = 1;
  1348.               } else {
  1349.                 ttype = atoi(ss);
  1350.                 if (ttype == stype)
  1351.                   ok = 1;
  1352.               }
  1353.             }
  1354.           }
  1355.           *ss = NULL;
  1356.           if (fp != NULL)
  1357.             fclose(fp);
  1358.           if (!ok) {
  1359.             if (nhr.main_type != main_type_new_post)
  1360.               sprintf(alphatype, "%u", stype);
  1361.             log_it(1, "\n ■ Subtype %s not found in NEWS.RC!", alphatype);
  1362.             sh_close(infile);
  1363.             if (text)
  1364.               free(text);
  1365.             if (buffer)
  1366.               free(buffer);
  1367.             return 1;
  1368.           }
  1369.         }
  1370.       }
  1371.       if ((nhr.main_type == main_type_email) ||
  1372.           (nhr.main_type == main_type_email_name) ||
  1373.           (nhr.main_type == main_type_ssm)) {
  1374.         if (tolist)
  1375.           log_it(1, "\n ■ Sent to : %s Mailing List", alphasubtype);
  1376.         else
  1377.           log_it(1, "\n ■ Rcpt to : %s", mh.toUserName);
  1378.       } else
  1379.         log_it(1, "\n ■ Post to : %s", groupname);
  1380.  
  1381.       strcpy(_temp_buffer, mh.subject);
  1382.       j = 0;
  1383.       for (i = 0; i < strlen(mh.subject); i++) {
  1384.         if (_temp_buffer[i] == 3)
  1385.           ++i;
  1386.         else
  1387.           mh.subject[j++] = _temp_buffer[i];
  1388.       }
  1389.       mh.subject[j] = '\0';
  1390.  
  1391.       log_it(1, "\n ■ Subject : %s", mh.subject);
  1392.  
  1393.       outfile = sh_open(outfn, O_WRONLY | O_BINARY | O_CREAT | O_TRUNC | O_EXCL, S_IWRITE);
  1394.       if (outfile == -1) {
  1395.         sh_close(infile);
  1396.         if (buffer)
  1397.           free(buffer);
  1398.         if (text)
  1399.           free(text);
  1400.         log_it(1, "\n ■ Unable to open output file %s", outfn);
  1401.         return 1;
  1402.       }
  1403.       time(&some);
  1404.       time_msg = localtime(&some);
  1405.       strftime(mh.dateTime, 80, "%a, %d %b %y %H:%M:%S (%Z)", time_msg);
  1406.       if (nhr.fromsys == 32767) {
  1407.         sprintf(_temp_buffer, "From: %s\n", mh.fromUserName);
  1408.       } else if (nhr.fromsys != net_sysnum) {
  1409.         sprintf(_temp_buffer, "From: \"%s #%hd-%hu\" <%s@%s>\n", mh.fromUserName,
  1410.                 nhr.fromuser, nhr.fromsys, POPNAME, DOMAIN);
  1411.       } else {
  1412.           if ((spam) && ((nhr.main_type == main_type_post) || (nhr.main_type == main_type_new_post)))
  1413.             if (spamname[0] == 0)
  1414.               sprintf(_temp_buffer, "From: \"%s\" <%s@dont.spam.me.%s>\n",
  1415.                       mh.fromUserName, POPNAME, DOMAIN);
  1416.             else
  1417.               sprintf(_temp_buffer, "From: \"%s\" <%s>\n", mh.fromUserName, spamname);
  1418.           else {
  1419.             if (usermail) {
  1420.               if (replyaddr)
  1421.                 sprintf(_temp_buffer, "From: %s\n", mh.fromUserName);
  1422.               else
  1423.                 sprintf(_temp_buffer, "From: \"%s\" <%s@%s>\n",
  1424.                         mh.fromUserName, POPNAME, DOMAIN);
  1425.             } else
  1426.               sprintf(_temp_buffer, "From: <%s@%s>\n", POPNAME, DOMAIN);
  1427.           }
  1428.       }
  1429.       sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1430.       ++cur_daten;
  1431.       sprintf(_temp_buffer, "Message-ID: <%lx-%s@WWIV-BBS>\n",
  1432.               cur_daten, POPNAME);
  1433.       sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1434.       if ((nhr.main_type == main_type_email) ||
  1435.           (nhr.main_type == main_type_email_name) ||
  1436.           (nhr.main_type == main_type_ssm)) {
  1437.         if (!tolist) {
  1438.           sprintf(_temp_buffer, "To: %s\n", mh.toUserName);
  1439.           sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1440.         } else {
  1441.           sprintf(fn1, "%sM%s.NET", net_data, alphasubtype);
  1442.           i = 0;
  1443.           if ((fp = fsh_open(fn1, "rt")) != NULL) {
  1444.             while (fgets(_temp_buffer, 80, fp) != NULL) {
  1445.               if (_fstrstr(_temp_buffer, "@")) {
  1446.                 strcpy(mh.toUserName, _temp_buffer);
  1447.                 sprintf(_temp_buffer, "To: %s", mh.toUserName);
  1448.                 if (_temp_buffer[strlen(_temp_buffer) - 1] != '\n')
  1449.                   strcat(_temp_buffer, "\n");
  1450.                 sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1451.                 i = 1;
  1452.               }
  1453.             }
  1454.             if (fp != NULL)
  1455.               fclose(fp);
  1456.           }
  1457.           if (!i) {
  1458.             sh_close(infile);
  1459.             if (buffer)
  1460.               free(buffer);
  1461.             if (text)
  1462.               free(text);
  1463.             log_it(1, "\n ■ Error processing mailing list %s.", alphasubtype);
  1464.             return (1);
  1465.           } else {
  1466.             sprintf(_temp_buffer, "Reply-To: \"%s\" <%s@%s>\n", alphasubtype,
  1467.                     POPNAME, DOMAIN);
  1468.             sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1469.           }
  1470.         }
  1471.       } else {
  1472.         sprintf(_temp_buffer, "Newsgroups: %s\n", groupname);
  1473.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1474.       }
  1475.       sprintf(_temp_buffer, "Subject: %s\n", mh.subject);
  1476.       sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1477.       sprintf(_temp_buffer, "Date: %s\n", mh.dateTime);
  1478.       sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1479.       if (nhr.main_type != main_type_email_name) {
  1480.         sprintf(_temp_buffer, "Path: %s!%s\n", POPNAME, DOMAIN);
  1481.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1482.         sprintf(_temp_buffer, "Organization: %s * %s\n",
  1483.                 syscfg.systemname, syscfg.systemphone);
  1484.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1485.       }
  1486.       if (tolist) {
  1487.         sprintf(_temp_buffer, "X-Reply-To: \"%s\" <%s@%s>\n",
  1488.                 alphasubtype, POPNAME, DOMAIN);
  1489.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1490.       }
  1491. /*
  1492.       else {
  1493.         if ((!spam) && ((nhr.main_type != main_type_post) || (nhr.main_type != main_type_new_post))) {
  1494.           sprintf(_temp_buffer, "Reply-To: \"%s\" <%s@%s>\n",
  1495.               mh.fromUserName, POPNAME, DOMAIN);
  1496.           sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1497.         }
  1498.       }
  1499. */
  1500.  
  1501.       if (tolist) {
  1502.         sprintf(_temp_buffer, "Source: %s Mail List\n", alphasubtype);
  1503.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1504.       }
  1505.       if (((nhr.main_type == main_type_post) || (nhr.main_type == main_type_new_post)) && (!tolist)) {
  1506.         if (*REPLYTO)
  1507.           sprintf(_temp_buffer, "Reply-to: \"%s\" <%s>\n", mh.fromUserName, REPLYTO);
  1508.         else
  1509.           sprintf(_temp_buffer, "Reply-to: \"%s\" <%s@%s>\n",
  1510.                   mh.fromUserName, POPNAME, DOMAIN);
  1511.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1512.       }
  1513.       sprintf(_temp_buffer, "Version: WWIV PPP Project %s\n\n", VERSION);
  1514.       sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1515.  
  1516.       if ((nhr.main_type != main_type_email) &&
  1517.           (nhr.main_type != main_type_email_name) &&
  1518.           (strncmp(mh.toUserName, "ALL", 3) != 0)) {
  1519.         sprintf(_temp_buffer, "Responding to: %s\n", mh.toUserName);
  1520.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1521.       }
  1522.       for (i = 0; i < strlen(text); i++)
  1523.         if (text[i] == 'π')
  1524.           text[i] = '\n';
  1525.  
  1526.       sh_write(outfile, text, strlen(text));
  1527.       sprintf(tagfn, "%sI%u.TAG", syscfg.datadir, stype);
  1528.       if (exist(tagfn))
  1529.         strcpy(tagfile, tagfn);
  1530.       tagfn[0] = 0;
  1531.       ns = 0;
  1532.       for (i6 = 0; i6 < 99; i6++) {
  1533.         sprintf(tagfn, "%sI%u.T%d", syscfg.datadir, i6);
  1534.         if (exist(tagfn))
  1535.           ns++;
  1536.         else
  1537.           break;
  1538.       }
  1539.       sprintf(tagfn, "%sI%u.T%d", syscfg.datadir, random(ns));
  1540.       if (exist(tagfn))
  1541.         strcpy(tagfile, tagfn);
  1542.       if (tagfile[0] == 0) {
  1543.         sprintf(_temp_buffer, "\n\nOrigin: %s * %s\n\n",
  1544.                 syscfg.systemname, syscfg.systemphone);
  1545.         sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1546.       } else {
  1547.         if ((fp = fsh_open(tagfile, "rt")) == NULL)
  1548.           log_it(1, "\n ■ Error reading %s.", tagfile);
  1549.         else {
  1550.           sprintf(_temp_buffer, "\n\n");
  1551.           sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1552.           while (fgets(_temp_buffer, 120, fp)) {
  1553.             for (i = 0; ((i < strlen(_temp_buffer)) &&
  1554.                (_temp_buffer[i] != '\r') && (_temp_buffer[i] != '\n')); i++)
  1555.               if ((_temp_buffer[i] < 32) || (_temp_buffer[i] > 126))
  1556.                 _temp_buffer[i] = 32;
  1557.             sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1558.           }
  1559.           if (fp != NULL)
  1560.             fclose(fp);
  1561.           sprintf(_temp_buffer, "\n\n");
  1562.           sh_write(outfile, _temp_buffer, strlen(_temp_buffer));
  1563.         }
  1564.       }
  1565.       sh_close(outfile);
  1566.     } else {
  1567.       if ((nhr.main_type >= 0x01) && (nhr.main_type <= 0x1b))
  1568.         log_it(1, "\n ■ %s message skipped",
  1569.                main_type[nhr.main_type - 1]);
  1570.       else
  1571.         log_it(1, "\n ■ Unknown Main_type %hd skipped", nhr.main_type);
  1572.     }
  1573.   }
  1574.   sh_close(infile);
  1575.   unlink(fn);
  1576.   if (text)
  1577.     free(text);
  1578.   if (buffer)
  1579.     free(buffer);
  1580.   return (0);
  1581. }
  1582.  
  1583. void get_dir(char *s, int be)
  1584. {
  1585.   strcpy(s, "X:\\");
  1586.   s[0] = 'A' + getdisk();
  1587.   getcurdir(0, s + 3);
  1588.   if (be) {
  1589.     if (s[strlen(s) - 1] != '\\')
  1590.       strcat(s, "\\");
  1591.   }
  1592. }
  1593.  
  1594. void ssm(char *s)
  1595. {
  1596.   int f, i, i1;
  1597.   char s1[161];
  1598.   shortmsgrec sm;
  1599.  
  1600.   sprintf(s1, "%sSMW.DAT", syscfg.datadir);
  1601.   f = sh_open(s1, O_RDWR | O_BINARY | O_CREAT, S_IREAD | S_IWRITE);
  1602.   if (f < 0)
  1603.     return;
  1604.   i = (int) (filelength(f) / sizeof(shortmsgrec));
  1605.   i1 = i - 1;
  1606.   if (i1 >= 0) {
  1607.     sh_lseek(f, ((long) (i1)) * sizeof(shortmsgrec), SEEK_SET);
  1608.     sh_read(f, (void *) &sm, sizeof(shortmsgrec));
  1609.     while ((sm.tosys == 0) && (sm.touser == 0) && (i1 > 0)) {
  1610.       --i1;
  1611.       sh_lseek(f, ((long) (i1)) * sizeof(shortmsgrec), SEEK_SET);
  1612.       sh_read(f, (void *) &sm, sizeof(shortmsgrec));
  1613.     }
  1614.     if ((sm.tosys) || (sm.touser))
  1615.       ++i1;
  1616.   } else
  1617.     i1 = 0;
  1618.   sm.tosys = 0;
  1619.   sm.touser = 1;
  1620.   strncpy(sm.message, s, 80);
  1621.   sm.message[80] = 0;
  1622.   sh_lseek(f, ((long) (i1)) * sizeof(shortmsgrec), SEEK_SET);
  1623.   sh_write(f, (void *) &sm, sizeof(shortmsgrec));
  1624.   sh_close(f);
  1625. }
  1626.  
  1627.  
  1628. /*
  1629.   action: 1 = unsubscribed,
  1630.           2 = subscribed,
  1631.           3 = already subscribed,
  1632.           4 = not subscribed
  1633.           5 = invalid list
  1634. */
  1635.  
  1636. void send_note(int action, char *mailname, char *listname)
  1637. {
  1638.   char s[81], fn[MAXPATH];
  1639.   int i;
  1640.   FILE *fp, *rlz;
  1641.  
  1642.   i = 1;
  1643.   sprintf(fn, "%sMQUEUE\\MSG.%d", net_data, i);
  1644.   while (exist(fn))
  1645.     sprintf(fn, "%sMQUEUE\\MSG.%d", net_data, ++i);
  1646.  
  1647.   if ((fp = fsh_open(fn, "wt+")) == NULL) {
  1648.     log_it(1, "\n ! Unable to create %s.", fn);
  1649.     return;
  1650.   }
  1651.  
  1652.   if (action != 5)
  1653.     fprintf(fp, "From: \"%s\" <%s@%s>\n", listname, POPNAME, DOMAIN);
  1654.   else
  1655.     fprintf(fp, "From: <%s@%s>\n", POPNAME, DOMAIN);
  1656.   fprintf(fp, "To: %s\n", mailname);
  1657.   fprintf(fp, "Subject: %s Mailing List\n\n", listname);
  1658.  
  1659.   switch (action) {
  1660.     case 1:
  1661.       sprintf(s, "%s removed from mailing list: %s", mailname, listname);
  1662.       fprintf(fp, "\n%s\n\n", s);
  1663.       log_it(1, "\n ■ %s", s);
  1664.       ssm(s);
  1665.       break;
  1666.     case 2:
  1667.       sprintf(fn, "%sR%s.RLZ", net_data, listname);
  1668.       if (!(exist(fn)))
  1669.         sprintf(fn, "%sGLOBAL.RLZ", net_data);
  1670.       if ((rlz = fsh_open(fn, "rt")) != NULL) {
  1671.         while (fgets(s, 80, rlz))
  1672.           fprintf(fp, s);
  1673.         fprintf(fp, "\n\n");
  1674.         fclose(rlz);
  1675.         sprintf(s, "%s added to mailing list: %s", mailname, listname);
  1676.         log_it(1, "\n%s", s);
  1677.         ssm(s);
  1678.       } else {
  1679.         sprintf(s, "%s added to mailing list: %s", mailname, listname);
  1680.         fprintf(fp, "\n%s\n\n", s);
  1681.         log_it(1, "\n ■ %s", s);
  1682.         ssm(s);
  1683.       }
  1684.       break;
  1685.     case 3:
  1686.       sprintf(fn, "%sR%s.RLZ", net_data, listname);
  1687.       if (!(exist(fn)))
  1688.         sprintf(fn, "%sGLOBAL.RLZ", net_data);
  1689.       if ((rlz = fsh_open(fn, "rt")) != NULL) {
  1690.         while (fgets(s, 80, rlz))
  1691.           fprintf(fp, s);
  1692.         fprintf(fp, "\n\n");
  1693.         fclose(rlz);
  1694.       } else
  1695.         fprintf(fp, "\n%s was already subscribed to mailing list:\n\n   %s\n\n",
  1696.             mailname, listname);
  1697.       break;
  1698.     case 4:
  1699.       fprintf(fp, "\n%s not subscribed to mailing list:\n\n   %s\n\n",
  1700.           mailname, listname);
  1701.       break;
  1702.     case 5:
  1703.       sprintf(s, "%s requested an invalid mailing list: %s", mailname, listname);
  1704.       fprintf(fp, "\n%s\n\n", s);
  1705.       log_it(1, "\n ■ %s", s);
  1706.       ssm(s);
  1707.       break;
  1708.     case 6:
  1709.       sprintf(fn, "%sMAILLIST.TXT", syscfg.gfilesdir);
  1710.       if ((rlz = fsh_open(fn, "rt")) != NULL) {
  1711.         while (fgets(s, 80, rlz))
  1712.           fprintf(fp, s);
  1713.         fprintf(fp, "\n\n");
  1714.         fclose(rlz);
  1715.         sprintf(s, "Sent MAILLIST.TXT to %s.", mailname);
  1716.       } else
  1717.         sprintf(s, "No mailing list file found.  Notify system operator.");
  1718.       fprintf(fp, "\n%s\n\n", s);
  1719.       log_it(1, "\n ■ %s", s);
  1720.       ssm(s);
  1721.       break;
  1722.   }
  1723.   if (fp != NULL)
  1724.     fclose(fp);
  1725. }
  1726.  
  1727. int copyfile(char *input, char *output)
  1728. {
  1729.   int f1, f2, i;
  1730.   char *b;
  1731.   struct ftime ft;
  1732.  
  1733.   if ((strcmp(input, output) != 0) && (exist(input)) && (!exist(output))) {
  1734.     if ((b = (char *) malloc(16400)) == NULL)
  1735.       return 0;
  1736.     f1 = sh_open1(input, O_RDONLY | O_BINARY);
  1737.     if (!f1) {
  1738.       free(b);
  1739.       b = NULL;
  1740.       return 0;
  1741.     }
  1742.     getftime(f1, &ft);
  1743.  
  1744.     f2 = sh_open(output, O_RDWR | O_BINARY | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
  1745.     if (!f2) {
  1746.       free(b);
  1747.       b = NULL;
  1748.       f1 = sh_close(f1);
  1749.       return 0;
  1750.     }
  1751.     i = read(f1, (void *) b, 16384);
  1752.     while (i > 0) {
  1753.       sh_write(f2, (void *) b, i);
  1754.       i = read(f1, (void *) b, 16384);
  1755.     }
  1756.     f1 = sh_close(f1);
  1757.     setftime(f2, &ft);
  1758.     f2 = sh_close(f2);
  1759.     free(b);
  1760.     b = NULL;
  1761.   }
  1762.   return 1;
  1763. }
  1764.  
  1765.  
  1766. int subscribe(char *fn)
  1767. {
  1768.   char *ss, s[81], s1[81], mailname[81], subtype[81];
  1769.   int done, found, unsubscribe;
  1770.   FILE *fp, *oldfp, *newfp;
  1771.  
  1772.   if ((fp = fsh_open(fn, "rt")) == NULL) {
  1773.     log_it(1, "\n ! Unable to open %s.", fn);
  1774.     return 1;
  1775.   }
  1776.   done = unsubscribe = 0;
  1777.   while ((fgets(s1, 80, fp)) && (!done)) {
  1778.     strcpy(s, &(s1[3]));
  1779.     if (strnicmp(s, "from:", 5) == 0) {
  1780.       ss = strtok(s, ":");
  1781.       if (ss) {
  1782.         ss = strtok(NULL, "\r\n");
  1783.         trimstr1(ss);
  1784.         strcpy(mailname, ss);
  1785.       }
  1786.     }
  1787.     if (strnicmp(s, "subject:", 8) == 0) {
  1788.       done = 1;
  1789.       ss = strtok(s, ":");
  1790.       if (ss) {
  1791.         ss = strtok(NULL, "\r\n");
  1792.         trimstr1(ss);
  1793.         strcpy(s1, ss);
  1794.         if (strnicmp(s1, "subscribe", 9) == 0) {
  1795.           ss = strtok(s1, " ");
  1796.           if (ss) {
  1797.             ss = strtok(NULL, "\r\n");
  1798.             trimstr1(ss);
  1799.             strcpy(subtype, ss);
  1800.           }
  1801.         }
  1802.         if (strnicmp(s1, "unsubscribe", 11) == 0) {
  1803.           unsubscribe = 1;
  1804.           ss = strtok(s1, " ");
  1805.           if (ss) {
  1806.             ss = strtok(NULL, "\r\n");
  1807.             trimstr1(ss);
  1808.             strcpy(subtype, ss);
  1809.           }
  1810.         }
  1811.       }
  1812.       ss = NULL;
  1813.     }
  1814.   }
  1815.   if (fp != NULL)
  1816.     fclose(fp);
  1817.   if ((!*mailname) || (!*subtype)) {
  1818.     log_it(1, "\n ! Invalid subscription request %s.", fn);
  1819.     return 1;
  1820.   }
  1821.   if (strlen(subtype) == 1) {
  1822.     log_it(1, "\n ! %s attempted to write to M%s.NET!", mailname, subtype);
  1823.     return 1;
  1824.   }
  1825.   if (strnicmp(subtype, "LISTS", 10) == 0) {
  1826.     send_note(6, mailname, subtype);
  1827.     return 1;
  1828.   }
  1829.   sprintf(s, "%sM%s.NET", net_data, subtype);
  1830.   if (!exist(s)) {
  1831.     log_it(1, "\n ! %s subscriber list not found.", s);
  1832.     send_note(5, mailname, subtype);
  1833.     return 1;
  1834.   }
  1835.   if ((oldfp = fsh_open(s, "rt")) == NULL) {
  1836.     log_it(1, "\n ! Unable to open input file %s.", s);
  1837.     return 1;
  1838.   }
  1839.   sprintf(s1, "%sM%s.TMP", net_data, subtype);
  1840.   if (exist(s1))
  1841.     unlink(s1);
  1842.   if ((newfp = fsh_open(s1, "wt+")) == NULL) {
  1843.     log_it(1, "\n ! Unable to open output file %s.", s1);
  1844.     return 1;
  1845.   }
  1846.   found = 0;
  1847.   while (fgets(s, 80, oldfp)) {
  1848.     trimstr1(s);
  1849.     if (unsubscribe) {
  1850.       if (stricmp(s, mailname) == 0) {
  1851.         log_it(1, "\n ■ Removing %s from %s mailing list.", mailname, subtype);
  1852.         send_note(2, mailname, subtype);
  1853.         found = 1;
  1854.       } else
  1855.         fprintf(newfp, s);
  1856.     } else {
  1857.       if (stricmp(s, mailname) == 0) {
  1858.         log_it(1, "\n ■ %s already in %s mailing list.", mailname, subtype);
  1859.         send_note(3, mailname, subtype);
  1860.         found = 1;
  1861.       }
  1862.       fprintf(newfp, s);
  1863.     }
  1864.   }
  1865.   if (!found) {
  1866.     if (unsubscribe)
  1867.       send_note(4, mailname, subtype);
  1868.     else {
  1869.       log_it(1, "\n ■ Adding %s to %s mailing list.", mailname, subtype);
  1870.       fprintf(newfp, "\n%s\n", mailname);
  1871.       send_note(2, mailname, subtype);
  1872.     }
  1873.   }
  1874.   if (oldfp != NULL)
  1875.     fclose(oldfp);
  1876.   if (newfp != NULL)
  1877.     fclose(newfp);
  1878.   sprintf(s, "%sM%s.TMP", net_data, subtype);
  1879.   sprintf(s1, "%sM%s.NET", net_data, subtype);
  1880.   if (exist(s1))
  1881.     unlink(s1);
  1882.   copyfile(s, s1);
  1883.   return 0;
  1884. }
  1885.  
  1886. int main(int argc, char *argv[])
  1887. {
  1888.   char fn[MAXPATH], *ss;
  1889.   int f, f1, i;
  1890.   struct ffblk ff;
  1891.   struct date dt;
  1892.   struct time tm;
  1893.  
  1894.   log_it(1, "\n ■ PPP Import/Export %s", VERSION);
  1895.   if (argc != 7) {
  1896.     log_it(1, "\n ■ EXP <filename> <net_data> <net_sysnum> <POPNAME> <DOMAIN> <net_name>\n\n");
  1897.     if (argc > 1) {
  1898.       log_it(1, "Command line was: ");
  1899.       for (i = 0; i < argc; i++)
  1900.         log_it(1, "%s ", argv[i]);
  1901.       log_it(1, "\n\n");
  1902.     }
  1903.     return (1);
  1904.   }
  1905.   strcpy(net_data, argv[2]);
  1906.   f = sh_open1("CONFIG.DAT", O_RDONLY | O_BINARY);
  1907.   if (f < 0) {
  1908.     log_it(1, "Could not open CONFIG.DAT!\n\n");
  1909.     return 1;
  1910.   }
  1911.   sh_read(f, (void *) &syscfg, sizeof(configrec));
  1912.   sh_close(f);
  1913.  
  1914.   detect_multitask();
  1915.  
  1916.   get_dir(maindir, 1);
  1917.   sprintf(fn, "%s%s", net_data, argv[1]);
  1918.   strcpy(net_name, argv[6]);
  1919.   strcpy(POPNAME, argv[4]);
  1920.   strcpy(DOMAIN, argv[5]);
  1921.   net_sysnum = atoi(argv[3]);
  1922.   tagfile[0] = 0;
  1923.   spam = 0;
  1924.  
  1925.   ss = getenv("WWIV_INSTANCE");
  1926.   if (ss) {
  1927.     instance = atoi(ss);
  1928.     if (instance >= 1000) {
  1929.       log_it(1, "\n ■ WWIV_INSTANCE set to %hd.  Can only be 1..999!",
  1930.              instance);
  1931.       instance = 1;
  1932.     }
  1933.   } else
  1934.     instance = 1;
  1935.  
  1936.   parse_net_ini();
  1937.   gettime(&tm);
  1938.   getdate(&dt);
  1939.   cur_daten = dostounix(&dt, &tm);
  1940.  
  1941.   strupr(postmaster);
  1942.   export(fn);
  1943.  
  1944.   sprintf(fn, "%sSPOOL\\UNK*.*", net_data);
  1945.   f1 = findfirst(fn, &ff, 0);
  1946.   while (f1 == 0) {
  1947.     sprintf(fn, "%sSPOOL\\%s", net_data, ff.ff_name);
  1948.     if (!import(fn)) {
  1949.       unlink(fn);
  1950.     }
  1951.     f1 = findnext(&ff);
  1952.   }
  1953.  
  1954.   sprintf(fn, "%sINBOUND\\SUB*.*", net_data);
  1955.   f1 = findfirst(fn, &ff, 0);
  1956.   while (f1 == 0) {
  1957.     sprintf(fn, "%sINBOUND\\%s", net_data, ff.ff_name);
  1958.     log_it(1, "\n ■ Processing subscriber request %s...", ff.ff_name);
  1959.     subscribe(fn);
  1960.     unlink(fn);
  1961.     f1 = findnext(&ff);
  1962.   }
  1963.  
  1964.   if (maillist != NULL)
  1965.     free(maillist);
  1966.  
  1967.   return 0;
  1968. }
  1969.