home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC15B82.ZIP / POP.CPP < prev    next >
Text File  |  1998-01-02  |  50KB  |  1,643 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 <malloc.h>
  15. #include <dir.h>
  16. extern "C" {
  17. #include "tcp.h"
  18. }
  19. #include "version.h"
  20. #include "retcode.h"
  21.  
  22. #define POP_PORT 110
  23.  
  24. #define SMTP_PORT 25
  25.  
  26. #define SMTP_STATUS   211
  27. #define SMTP_HELP     214
  28. #define SMTP_READY    220
  29. #define SMTP_BYE      221
  30. #define SMTP_OK       250
  31. #define SMTP_WILL_FWD 251
  32.  
  33. #define SMTP_GIMME    354
  34.  
  35. #define SMTP_OOPS     421
  36. #define SMTP_BUSY     450
  37. #define SMTP_ERROR    451
  38. #define SMTP_SQUEEZED 452
  39.  
  40. #define SMTP_SYNTAX   500
  41. #define SMTP_PARAM    501
  42. #define SMTP_COM_NI   502
  43. #define SMTP_BAD_SEQ  503
  44. #define SMTP_BAD_PARM 504
  45. #define SMTP_ACCESS   550
  46. #define SMTP_YOU_FWD  551
  47. #define SMTP_FULL     552
  48. #define SMTP_BAD_NAM  553
  49. #define SMTP_FAILED   554
  50.  
  51.  
  52. #define POP_OK               200
  53. #define POP_NOT_MSG          400
  54. #define POP_BAD_HOST         500
  55. #define POP_HOST_UNAVAILABLE 501
  56. #define POP_BAD_MBOX         510
  57. #define POP_BAD_PASS         511
  58. #define POP_UNKNOWN          599
  59.  
  60.  
  61. #define POPLIB_OK        200
  62. #define POPLIB_BAD_FILE  401
  63. #define POPLIB_BAD_HOST  510
  64. #define POPLIB_S_TIMEOU  510
  65. #define POPLIB_S_CLOSED  511
  66. #define POPLIB_SMTP_ERR  520
  67. #define POPLIB_POP_ERR   521
  68. #define POPLIB_SMTP_PROB 410
  69. #define POPLIB_POP_PROB  411
  70.  
  71. typedef struct {
  72.   tcp_Socket *sock;
  73. } Mail_Socket;
  74.  
  75. typedef struct {
  76.   char msgid[81];
  77. } Message_ID;
  78.  
  79. typedef struct {
  80.   char popname[20];
  81.   char pophost[40];
  82.   char poppass[20];
  83. } ACCT;
  84.  
  85. ACCT *acct;
  86.  
  87. #define _TEMP_BUFFER_LEN 2048
  88. #define LAST(s) s[strlen(s)-1]
  89.  
  90. #define SHARE_LEVEL 10
  91. #define WAIT_TIME 10
  92. #define TRIES 100
  93.  
  94. #define MT_DESQVIEW 0x01
  95. #define MT_WINDOWS  0x02
  96. #define MT_OS2      0x04
  97. #define MT_NB       0x40
  98.  
  99.  
  100. #define free_Mail_Socket(SOCK) if (SOCK != NULL) {                              \
  101.   farfree(SOCK->sock); farfree(SOCK); SOCK=NULL; }
  102.  
  103. int POP_Err_Cond, SMTP_Err_Cond;
  104. char from_user[81], net_data[MAXPATH], fdlfn[21], id[81];
  105. char POPHOST[60], POPNAME[20], POPPASS[20], DOMAIN[60];
  106. int WatTCP_initialized = 0, fdl;
  107. static unsigned char _temp_buffer[_TEMP_BUFFER_LEN];
  108. static int POP_stat, SMTP_stat;
  109. int multitasker = 0, DEBUG = 1, ALLMAIL, compact_ids = 0;
  110.  
  111. char *version = "Freeware PPP Project POP/SMTP Client " VERSION;
  112.  
  113. char pktowner[26];
  114.  
  115. int aborted = 0;
  116.  
  117. #define SOCK_READ_ERR(PROTOCOL, ACTION)                                         \
  118.   sock_err:                                                                     \
  119.     switch (PROTOCOL##_stat) {                                                  \
  120.       case 1 :                                                                  \
  121.         PROTOCOL##_Err_Cond = PROTOCOL##_OK;                                    \
  122.         fprintf(stderr, "\n ! "#PROTOCOL"> Session error : %s",                        \
  123.             sockerr(PROTOCOL##_sock->sock));                                    \
  124.         ACTION;                                                                 \
  125.         aborted = 1;                                                            \
  126.         return 0;                                                               \
  127.       case -1:                                                                  \
  128.         PROTOCOL##_Err_Cond = PROTOCOL##_OK;                                    \
  129.         fprintf(stderr, "\n ! "#PROTOCOL"> Timeout : %s",                              \
  130.                 sockerr(PROTOCOL##_sock->sock));                                \
  131.         ACTION;                                                                 \
  132.         aborted = 1;                                                            \
  133.         return 0;                                                               \
  134.     }
  135.  
  136. #define SOCK_GETS(PROTOCOL)                                                     \
  137.   sock_wait_input(PROTOCOL##_sock->sock, sock_delay, NULL, &PROTOCOL##_stat);   \
  138.   sock_gets(PROTOCOL##_sock->sock, _temp_buffer, sizeof(_temp_buffer));         \
  139.   if (DEBUG) fprintf(stderr, "\n"#PROTOCOL"> %s\n", _temp_buffer);                  \
  140.   PROTOCOL##_Err_Cond = atoi(_temp_buffer);                                     \
  141.  
  142. #define SMTP_FAIL_ON(NUM, ACTION)                                               \
  143.   if (SMTP_Err_Cond == NUM) {                                                   \
  144.     if (DEBUG) fprintf(stderr, "\nSMTP Failure> '" #NUM "'\n");                   \
  145.     sock_puts(SMTP_sock->sock, "QUIT");                                         \
  146.     ACTION;                                                                     \
  147.     aborted = 1;                                                                \
  148.     return 0;                                                                   \
  149.   }
  150.  
  151. #define SMTP_RESET_ON(NUM, ACTION)                                              \
  152.   if (SMTP_Err_Cond == NUM) {                                                   \
  153.     if (DEBUG) fprintf(stderr, "\nSMTP Failure> '" #NUM "'\n");                   \
  154.     sock_puts(SMTP_sock->sock, "RSET");                                         \
  155.     sock_wait_input(SMTP_sock->sock, sock_delay, NULL, &SMTP_stat);             \
  156.     sock_gets(SMTP_sock->sock, _temp_buffer, sizeof(_temp_buffer));             \
  157.     ACTION;                                                                     \
  158.     aborted = 1;                                                                \
  159.     return(0);                                                                  \
  160.   }
  161.  
  162.  
  163. void output(char *fmt,...)
  164. {
  165.   va_list v;
  166.   char s[255];
  167.  
  168.   va_start(v, fmt);
  169.   vsprintf(s, fmt, v);
  170.   va_end(v);
  171.   fputs(s, stderr);
  172. }
  173.  
  174. void dv_pause(void)
  175. {
  176.   __emit__(0xb8, 0x1a, 0x10, 0xcd, 0x15);
  177.   __emit__(0xb8, 0x00, 0x10, 0xcd, 0x15);
  178.   __emit__(0xb8, 0x25, 0x10, 0xcd, 0x15);
  179. }
  180.  
  181. void win_pause(void)
  182. {
  183.   __emit__(0x55, 0xb8, 0x80, 0x16, 0xcd, 0x2f, 0x5d);
  184. }
  185.  
  186. int get_dos_version(void)
  187. {
  188.   _AX = 0x3000;
  189.   geninterrupt(0x21);
  190.   if (_AX % 256 >= 10) {
  191.     multitasker |= MT_OS2;
  192.   }
  193.   return (_AX);
  194. }
  195.  
  196. int get_dv_version(void)
  197. {
  198.   int v;
  199.  
  200.   if (multitasker & MT_OS2)
  201.     return 0;
  202.   _AX = 0x2b01;
  203.   _CX = 0x4445;
  204.   _DX = 0x5351;
  205.   geninterrupt(0x21);
  206.   if (_AL == 0xff) {
  207.     return 0;
  208.   } else {
  209.     v = _BX;
  210.     multitasker |= MT_DESQVIEW;
  211.     return v;
  212.   }
  213. }
  214.  
  215. int get_win_version(void)
  216. {
  217.   int v = 0;
  218.  
  219.   __emit__(0x55, 0x06, 0x53);
  220.   _AX = 0x352f;
  221.   geninterrupt(0x21);
  222.   _AX = _ES;
  223.   if (_AX | _BX) {
  224.     _AX = 0x1600;
  225.     geninterrupt(0x2f);
  226.     v = _AX;
  227.     if (v % 256 <= 1)
  228.       v = 0;
  229.   }
  230.   __emit__(0x5b, 0x07, 0x5d);
  231.   if (v != 0)
  232.     multitasker |= MT_WINDOWS;
  233.   return (v);
  234. }
  235.  
  236. int get_nb_version(void)
  237. {
  238.   _AX = 0;
  239.   geninterrupt(0x2A);
  240.   return (_AH);
  241. }
  242.  
  243. void detect_multitask(void)
  244. {
  245.   get_dos_version();
  246.   get_win_version();
  247.   get_dv_version();
  248.   if (multitasker < 2)
  249.     if (get_nb_version())
  250.       multitasker = MT_NB;
  251. }
  252.  
  253. unsigned char *trim(unsigned char *str)
  254. {
  255.   int i;
  256.  
  257.   if (str == NULL)
  258.     return (str);
  259.   for (i = strlen(str) - 1; (i >= 0) && isspace(str[i]); str[i--] = '\0');
  260.   while (isspace(str[0]))
  261.     strcpy(str, str + 1);
  262.   return (str);
  263. }
  264.  
  265. char *fix_quoted_commas(char *string)
  266. {
  267.   char *ptr;
  268.   int quoted = 0;
  269.  
  270.   ptr = string;
  271.   if (ptr) {
  272.     while (*ptr != 0) {
  273.       if (*ptr == '\"')
  274.         quoted = (!quoted);
  275.       if (*ptr == ',' && quoted)
  276.         *ptr = '│';
  277.       ptr = &ptr[1];
  278.     }
  279.   }
  280.   return (string);
  281. }
  282.  
  283. void giveup_timeslice(void)
  284. {
  285.   if (multitasker) {
  286.     switch (multitasker) {
  287.  case 1: 
  288.  case 3: 
  289.         dv_pause();
  290.         break;
  291.       case 2:
  292.       case 4:
  293.       case 5:
  294.       case 6:
  295.       case 7:
  296.         win_pause();
  297.         break;
  298.       default:
  299.         break;
  300.     }
  301.   }
  302. }
  303.  
  304.  
  305. int sh_write(int handle, void *buffer, unsigned long length)
  306. {
  307.   if (handle == -1) {
  308.     return (-1);
  309.   }
  310.   return (write(handle, buffer, (unsigned) length));
  311. }
  312.  
  313. int sh_open(char *path, int file_access, unsigned fmode)
  314. {
  315.   int handle, count, share;
  316.   char drive[MAXDRIVE], dir[MAXDIR], file[MAXFILE], ext[MAXEXT];
  317.  
  318.   if ((file_access & O_RDWR) || (file_access & O_WRONLY) || (fmode & S_IWRITE)) {
  319.     share = SH_DENYRW;
  320.   } else {
  321.     share = SH_DENYWR;
  322.   }
  323.   handle = open(path, file_access | share, fmode);
  324.   if (handle < 0) {
  325.     count = 1;
  326.     fnsplit(path, drive, dir, file, ext);
  327.     if (access(path, 0) != -1) {
  328.       delay(WAIT_TIME);
  329.       handle = open(path, file_access | share, fmode);
  330.       while (((handle < 0) && (errno == EACCES)) && (count < TRIES)) {
  331.         if (count % 2)
  332.           delay(WAIT_TIME);
  333.         else
  334.           giveup_timeslice();
  335.         count++;
  336.         handle = open(path, file_access | share, fmode);
  337.       }
  338.     }
  339.   }
  340.   return (handle);
  341. }
  342.  
  343. int sh_close(int f)
  344. {
  345.   if (f != -1)
  346.     close(f);
  347.   return (-1);
  348. }
  349.  
  350. int sh_read(int handle, void *buf, unsigned length)
  351. {
  352.   if (handle == -1) {
  353.     return (-1);
  354.   }
  355.   return (read(handle, buf, length));
  356. }
  357.  
  358. long sh_lseek(int handle, long offset, int fromwhere)
  359. {
  360.   if (handle == -1) {
  361.     return (-1L);
  362.   }
  363.   return (lseek(handle, offset, fromwhere));
  364. }
  365.  
  366. FILE *fsh_open(char *path, char *fmode)
  367. {
  368.   FILE *f;
  369.   int count, share, md, fd;
  370.   char drive[MAXDRIVE], dir[MAXDIR], file[MAXFILE], ext[MAXEXT];
  371.  
  372.   share = SH_DENYWR;
  373.   md = 0;
  374.   if (((char *) _fstrchr(fmode, 'w')) != NULL) {
  375.     share = SH_DENYRD;
  376.     md = O_RDWR | O_CREAT | O_TRUNC;
  377.   } else
  378.     if (((char *) _fstrchr(fmode, 'a')) != NULL) {
  379.     share = SH_DENYRD;
  380.     md = O_RDWR | O_CREAT;
  381.   } else {
  382.     md = O_RDONLY;
  383.   }
  384.   if (((char *) _fstrchr(fmode, 'b')) != NULL) {
  385.     md |= O_BINARY;
  386.   }
  387.   if (((char *) _fstrchr(fmode, '+')) != NULL) {
  388.     md &= ~O_RDONLY;
  389.     md |= O_RDWR;
  390.     share = SH_DENYRD;
  391.   }
  392.   fd = open(path, md | share, S_IREAD | S_IWRITE);
  393.   if (fd < 0) {
  394.     count = 1;
  395.     fnsplit(path, drive, dir, file, ext);
  396.     if ((access(path, 0)) != -1) {
  397.       delay(WAIT_TIME);
  398.       fd = open(path, md | share, S_IREAD | S_IWRITE);
  399.       while (((fd < 0) && (errno == EACCES)) && (count < TRIES)) {
  400.         delay(WAIT_TIME);
  401.         count++;
  402.         fd = open(path, md | share, S_IREAD | S_IWRITE);
  403.       }
  404.     }
  405.   }
  406.   if (fd > 0) {
  407.     if (((char *) _fstrchr(fmode, 'a')) != NULL)
  408.       sh_lseek(fd, 0L, SEEK_END);
  409.     f = fdopen(fd, fmode);
  410.     if (!f) {
  411.       close(fd);
  412.     }
  413.   } else
  414.     f = 0;
  415.   return (f);
  416. }
  417.  
  418. int log_it(int display, char *fmt,...)
  419. {
  420.   va_list v;
  421.   char s[255], fn[161];
  422.   FILE *fp;
  423.  
  424.   sprintf(fn, "%sNEWS.LOG", net_data);
  425.   if ((fp = fsh_open(fn, "at")) == NULL)
  426.     return 1;
  427.   va_start(v, fmt);
  428.   vsprintf(s, fmt, v);
  429.   va_end(v);
  430.   fputs(s, fp);
  431.   fclose(fp);
  432.   if (display)
  433.     fputs(s, stderr);
  434.   return 0;
  435. }
  436.  
  437. Mail_Socket *smtp_start(char *host, char *dom)
  438. {
  439.   longword h;
  440.   Mail_Socket *SMTP_sock = NULL;
  441.  
  442.   if (!WatTCP_initialized) {
  443.     sock_init();
  444.     WatTCP_initialized = 1;
  445.   }
  446.   if (!(h = resolve(host))) {
  447.     if (!(h = resolve(host))) {
  448.       SMTP_Err_Cond = SMTP_FAILED;
  449.       log_it(1, "\n ■ Error : Cannot resolve host %s", host);
  450.       return NULL;
  451.     }
  452.   }
  453.   if ((SMTP_sock = (Mail_Socket *) farmalloc(sizeof(Mail_Socket))) == NULL) {
  454.     log_it(1, "\n ■ Insufficient memory to create socket... aborting");
  455.     exit(EXIT_FAILURE);
  456.   }
  457.   if ((SMTP_sock->sock = (tcp_Socket *) farmalloc(sizeof(tcp_Socket))) == NULL) {
  458.     log_it(1, "\n ■ Insufficient memory to create socket... aborting");
  459.     farfree(SMTP_sock);
  460.     exit(EXIT_FAILURE);
  461.   }
  462.   if (!tcp_open(SMTP_sock->sock, 0, h, SMTP_PORT, NULL)) {
  463.     SMTP_Err_Cond = SMTP_FAILED;
  464.     log_it(1, "\n ■ Error : Unable to connect to %s", host);
  465.     farfree(SMTP_sock);
  466.     return NULL;
  467.   }
  468.   sock_sturdy(SMTP_sock->sock, 100);
  469.   sock_mode(SMTP_sock->sock, TCP_MODE_ASCII);
  470.   sock_wait_established(SMTP_sock->sock, sock_delay, NULL, &SMTP_stat);
  471.  
  472.   sock_wait_input(SMTP_sock->sock, sock_delay, NULL, &SMTP_stat);
  473.   sock_gets(SMTP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  474.   log_it(DEBUG, "\n - SMTP> %s", _temp_buffer);
  475.  
  476.   sprintf(_temp_buffer, "HELO %s", dom);
  477.   sock_puts(SMTP_sock->sock, _temp_buffer);
  478.   sock_wait_input(SMTP_sock->sock, sock_delay, NULL, &SMTP_stat);
  479.   while (sock_tbused(SMTP_sock->sock) > 0) {
  480.     SOCK_GETS(SMTP);
  481.     SMTP_FAIL_ON(SMTP_OOPS,);
  482.     SMTP_FAIL_ON(SMTP_SYNTAX,);
  483.     SMTP_FAIL_ON(SMTP_PARAM,);
  484.     SMTP_FAIL_ON(SMTP_BAD_PARM,);
  485.   }
  486.   SOCK_READ_ERR(SMTP,);
  487.   return (SMTP_sock);
  488. }
  489.  
  490. char *smtp_parse_from_line(FILE * f)
  491. {
  492.   char s[161];
  493.   int found = 0, done = 0, beginfocus, endfocus;
  494.  
  495.   rewind(f);
  496.   while (!feof(f) && !done) {
  497.     fgets(s, 160, f);
  498.     if (*s == '\n')
  499.       done = 1;
  500.     else
  501.       if ((strncmpi(s, "from:", 5) == 0 &&
  502.            _fstrchr(s, '@') != 0)) {
  503.       found = 1;
  504.       done = 1;
  505.       }
  506.   }
  507.   if (found) {
  508.     if ((beginfocus = _fstrcspn(s, "<")) != strlen(s)) {
  509.       ++beginfocus;
  510.       endfocus = _fstrcspn(s, ">");
  511.       s[endfocus] = NULL;
  512.     } else
  513.       beginfocus = 5;
  514.     return (trim(_fstrdup(&s[beginfocus])));
  515.   }
  516.   return 0;
  517. }
  518.  
  519. unsigned char *trimstr1(unsigned char *s)
  520. {
  521.   int i;
  522.   static char *whitespace = " \r\n\t";
  523.  
  524.   i = strlen(s);
  525.   if (i) {
  526.     while ((i > 0) && (_fstrchr(whitespace, s[i - 1])))
  527.       --i;
  528.     while ((i > 0) && (_fstrchr(whitespace, *s))) {
  529.       memmove(s, s + 1, --i);
  530.     }
  531.     s[i] = 0;
  532.   }
  533.   return (s);
  534. }
  535.  
  536. char **smtp_parse_to_line(FILE * f)
  537. {
  538.   int i, i1, done = 0, current = 0;
  539.   char **list = NULL;
  540.   char *addr, _temp_addr[120], buf[120];
  541.  
  542.   rewind(f);
  543.   while (!feof(f) && !done) {
  544.     fgets(_temp_buffer, sizeof(_temp_buffer), f);
  545.     if (*_temp_buffer == '\n')
  546.       done = 1;
  547.     else
  548.       if ((strncmpi(_temp_buffer, "to:", 3) == 0) ||
  549.           (strncmpi(_temp_buffer, "cc:", 3) == 0) ||
  550.           (strncmpi(_temp_buffer, "bcc:", 4) == 0)) {
  551.       fix_quoted_commas(_temp_buffer);
  552.       addr = strtok(_temp_buffer, ":");
  553.       addr = strtok(NULL, "\r\n");
  554.       trimstr1(addr);
  555.       strcpy(_temp_addr, addr);
  556.       if ((_fstrchr(_temp_addr, ' ')) || (_fstrchr(_temp_addr, ')')) || (_fstrchr(_temp_addr, '\"'))) {
  557.         *buf = i1 = 0;
  558.         i = _fstrcspn(_temp_addr, "@");
  559.         while ((i > 0) && (_temp_addr[i - 1] != ' ') && (_temp_addr[i - 1] != '<'))
  560.           --i;
  561.         while (*_temp_addr && (_temp_addr[i] != ' ') && (_temp_addr[i] != '>'))
  562.           buf[i1++] = _temp_addr[i++];
  563.         buf[i1] = 0;
  564.         addr = buf;
  565.       }
  566.       list = (char **) farrealloc(list, sizeof(char *) * ((current) + 2));
  567.       list[current] = strdup(addr);
  568.       list[current + 1] = NULL;
  569.       current++;
  570.       }
  571.   }
  572.   return (list);
  573. }
  574.  
  575. int smtp_send_MAIL_FROM_line(Mail_Socket * SMTP_sock, FILE * f)
  576. {
  577.   char *from;
  578.  
  579.   from = smtp_parse_from_line(f);
  580.   if (from) {
  581.     if (DEBUG)
  582.       output("\n - SMTP> Mail From:<%s>", from);
  583.     sprintf(_temp_buffer, "MAIL FROM:<%s>", from);
  584.     sock_puts(SMTP_sock->sock, _temp_buffer);
  585.     free(from);
  586.     while (sock_tbused(SMTP_sock->sock) > 0) {
  587.       SOCK_GETS(SMTP);
  588.       SMTP_FAIL_ON(SMTP_OOPS,);
  589.     }
  590.   }
  591.   SOCK_READ_ERR(SMTP,);
  592.   return 1;
  593. }
  594.  
  595. #define FREE_ALL for (i=0; to_list[i]!=NULL; i++) if (to_list[i]) free(to_list[i]); if (to_list) free(to_list);
  596.  
  597. int smtp_send_RCPT_TO_line(Mail_Socket * SMTP_sock, FILE * f)
  598. {
  599.   char **to_list;
  600.   int i, done = 0;
  601.  
  602.   to_list = smtp_parse_to_line(f);
  603.   for (i = 0; ((to_list[i] != NULL) && (!done)); i++) {
  604.     if ((_fstrchr(to_list[i], '@') == NULL) || (_fstrchr(to_list[i], '.') == NULL)) {
  605.       log_it(1, "\n ! Invalid recipient - %s - aborting message.", to_list[i]);
  606.       sock_puts(SMTP_sock->sock, "RSET");
  607.       done = 1;
  608.     } else {
  609.       log_it(DEBUG, "\n - SMTP> Rcpt To:<%s>", to_list[i]);
  610.       sprintf(_temp_buffer, "RCPT TO:<%s>", to_list[i]);
  611.       sock_puts(SMTP_sock->sock, _temp_buffer);
  612.     }
  613.     while (sock_tbused(SMTP_sock->sock) > 0) {
  614.       SOCK_GETS(SMTP);
  615.       SMTP_FAIL_ON(SMTP_OOPS, FREE_ALL);
  616.       SMTP_RESET_ON(SMTP_SYNTAX, FREE_ALL);
  617.       SMTP_RESET_ON(SMTP_PARAM, FREE_ALL);
  618.       SMTP_RESET_ON(SMTP_BAD_SEQ, FREE_ALL);
  619.     }
  620.   }
  621.  
  622.   SOCK_READ_ERR(SMTP, FREE_ALL);
  623.  
  624.   FREE_ALL;
  625.  
  626.   return 1;
  627. }
  628.  
  629. #undef FREE_ALL
  630.  
  631. void go_back(int from, int to)
  632. {
  633.   int i;
  634.  
  635.   for (i = from; i > to; i--)
  636.     output("\b \b");
  637. }
  638.  
  639. int smtp_sendf(Mail_Socket * SMTP_sock, FILE *fp)
  640. {
  641.   int pos;
  642.   long nbytes, obytes, rbytes;
  643.  
  644.   fseek(fp, 0L, SEEK_END);
  645.   obytes = ftell(fp);
  646.   rewind(fp);
  647.   sock_puts(SMTP_sock->sock, "DATA");
  648.   sock_wait_input(SMTP_sock->sock, sock_delay, NULL, &SMTP_stat);
  649.   while (sock_tbused(SMTP_sock->sock) > 0) {
  650.     SOCK_GETS(SMTP);
  651.     if (DEBUG)
  652.       log_it(DEBUG, "\n - SMTP> %s", _temp_buffer);
  653.     SMTP_FAIL_ON(SMTP_OOPS,);
  654.     SMTP_RESET_ON(SMTP_BAD_SEQ,);
  655.     SMTP_RESET_ON(SMTP_SYNTAX,);
  656.     SMTP_RESET_ON(SMTP_PARAM,);
  657.     SMTP_RESET_ON(SMTP_COM_NI,);
  658.     SMTP_RESET_ON(SMTP_FAILED,);
  659.     SMTP_RESET_ON(SMTP_ERROR,);
  660.   }
  661.   nbytes = 0L;
  662.   rbytes = 512L;
  663.   pos = wherex();
  664.   output("          ");
  665.   go_back(wherex(), pos);
  666.   while (feof(fp) == 0) {
  667.     sock_tick(SMTP_sock->sock, &SMTP_stat);
  668.     fgets(_temp_buffer, sizeof(_temp_buffer), fp);
  669.     rip(_temp_buffer);
  670.     if (*_temp_buffer == '.') {
  671.       movmem(_temp_buffer, _temp_buffer + 1, sizeof(_temp_buffer) - 1);
  672.       *_temp_buffer = '.';
  673.     }
  674.     nbytes += sock_puts(SMTP_sock->sock, _temp_buffer) + 2;
  675.     if (nbytes > rbytes) {
  676.       go_back(wherex(), pos);
  677.       output("%ld/%ld", nbytes, obytes);
  678.       rbytes += 256L;
  679.     }
  680.     if (kbhit()) {
  681.       go_back(wherex(), pos);
  682.       output(" aborted.");
  683.       aborted = 1;
  684.       return 0;
  685.     }
  686.   }
  687.   sock_puts(SMTP_sock->sock, ".");
  688.   sock_wait_input(SMTP_sock->sock, sock_delay, NULL, &SMTP_stat);
  689.   while (sock_tbused(SMTP_sock->sock) > 0) {
  690.     SOCK_GETS(SMTP);
  691.     if (*_temp_buffer == '2')
  692.       log_it(DEBUG, "\n - SMTP> %s", _temp_buffer);
  693.     else {
  694.       if (DEBUG)
  695.         output("\n - SMTP> %s", _temp_buffer);
  696.     }
  697.     SMTP_FAIL_ON(SMTP_OOPS,);
  698.     SMTP_RESET_ON(SMTP_ERROR,);
  699.     SMTP_RESET_ON(SMTP_SQUEEZED,);
  700.     SMTP_RESET_ON(SMTP_FULL,);
  701.     SMTP_RESET_ON(SMTP_FAILED,);
  702.   }
  703.   go_back(wherex(), pos);
  704.   output("accepted.");
  705.   return 1;
  706.  
  707.   SOCK_READ_ERR(SMTP,);
  708.   return 0;
  709. }
  710.  
  711.  
  712. int smtp_shutdown(Mail_Socket * SMTP_sock)
  713. {
  714.   if (SMTP_sock->sock) {
  715.     sock_puts(SMTP_sock->sock, "QUIT");
  716.     sock_wait_input(SMTP_sock->sock, sock_delay, NULL, &SMTP_stat);
  717.     sock_gets(SMTP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  718.     sock_close(SMTP_sock->sock);
  719.  
  720.   }
  721.   SOCK_READ_ERR(SMTP, free_Mail_Socket(SMTP_sock));
  722.   return 0;
  723. }
  724.  
  725.  
  726. Mail_Socket *pop_init(char *host)
  727. {
  728.   longword h;
  729.   Mail_Socket *POP_sock = NULL;
  730.  
  731.   if (!WatTCP_initialized) {
  732.     sock_init();
  733.     WatTCP_initialized = 1;
  734.   }
  735.   if (!(h = resolve(host))) {
  736.     if (!(h = resolve(host))) {
  737.       POP_Err_Cond = POP_BAD_HOST;
  738.       log_it(1, "\n ■ Error : Cannot resolve host %s", host);
  739.       return NULL;
  740.     }
  741.   }
  742.   if ((POP_sock = (Mail_Socket *) farmalloc(sizeof(Mail_Socket))) == NULL) {
  743.     log_it(1, "\n ■ Insufficient memory to create socket... aborting.");
  744.     exit(EXIT_FAILURE);
  745.   }
  746.   if ((POP_sock->sock = (tcp_Socket *) farmalloc(sizeof(tcp_Socket))) == NULL) {
  747.     log_it(1, "\n ■ Insufficient memory to create socket... aborting.");
  748.     farfree(POP_sock);
  749.     exit(EXIT_FAILURE);
  750.   }
  751.   if (!tcp_open(POP_sock->sock, 0, h, POP_PORT, NULL)) {
  752.     POP_Err_Cond = POP_BAD_HOST;
  753.     log_it(1, "\n ■ Error : Unable to connect to host %s", host);
  754.     return NULL;
  755.   }
  756.   sock_mode(POP_sock->sock, TCP_MODE_ASCII);
  757.   sock_wait_established(POP_sock->sock, sock_delay, NULL, &POP_stat);
  758.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  759.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  760.   log_it(DEBUG, "\n - POP> %s", _temp_buffer);
  761.   if (*_temp_buffer != '+') {
  762.     POP_Err_Cond = POP_HOST_UNAVAILABLE;
  763.     log_it(1, "\n ■ Error : Host %s is unavailable.", host);
  764.     return NULL;
  765.   } else {
  766.     POP_Err_Cond = POP_OK;
  767.     log_it(DEBUG, "\n - POP socket initialized.");
  768.     return (POP_sock);
  769.   }
  770.   SOCK_READ_ERR(POP,);
  771.   return (POP_sock);
  772. }
  773.  
  774. int pop_login(Mail_Socket * POP_sock, char *userid, char *password)
  775. {
  776.   sprintf(_temp_buffer, "USER %s", userid);
  777.   sock_puts(POP_sock->sock, _temp_buffer);
  778.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  779.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  780.   log_it(DEBUG, "\n - POP> %s", _temp_buffer);
  781.   if (*_temp_buffer != '+') {
  782.     POP_Err_Cond = POP_BAD_MBOX;
  783.     log_it(1, "\n ■ Error : host report mailbox %s does not exist", userid);
  784.     if (POP_sock->sock) {
  785.       sock_puts(POP_sock->sock, "QUIT");
  786.       sock_close(POP_sock->sock);
  787.     }
  788.     return 0;
  789.   }
  790.   sprintf(_temp_buffer, "PASS %s", password);
  791.   sock_puts(POP_sock->sock, _temp_buffer);
  792.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  793.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  794.   log_it(DEBUG, "\n - POP> %s", _temp_buffer);
  795.   if (*_temp_buffer != '+') {
  796.     POP_Err_Cond = POP_BAD_PASS;
  797.     log_it(1, "\n ■ Error : Host reports password incorrect or account locked.");
  798.     if (POP_sock->sock) {
  799.       sock_puts(POP_sock->sock, "QUIT");
  800.       sock_close(POP_sock->sock);
  801.     }
  802.     return 0;
  803.   }
  804.   SOCK_READ_ERR(POP,);
  805.   return 1;
  806. }
  807.  
  808. int pop_status(Mail_Socket * POP_sock, unsigned int *count, unsigned long *totallength)
  809. {
  810.   char junk[12];
  811.  
  812.   sock_puts(POP_sock->sock, "STAT");
  813.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  814.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  815.   if (*_temp_buffer != '+') {
  816.     POP_Err_Cond = POP_UNKNOWN;
  817.     log_it(DEBUG, "\n ■ Error : Unknown POP error.");
  818.     return 0;
  819.   } else
  820.     sscanf(_temp_buffer, "%s %u %lu", junk, count, totallength);
  821.  
  822.   SOCK_READ_ERR(POP,);
  823.   return 1;
  824. }
  825.  
  826. long pop_length(Mail_Socket * POP_sock, unsigned int msg_num, unsigned long *size)
  827. {
  828.   char junk[21];
  829.   unsigned int dummy;
  830.  
  831.   sprintf(_temp_buffer, "LIST %u", msg_num);
  832.   sock_puts(POP_sock->sock, _temp_buffer);
  833.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  834.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  835.   if (*_temp_buffer != '+') {
  836.     POP_Err_Cond = POP_NOT_MSG;
  837.     log_it(DEBUG, "\n ■ Error : No message #%u", msg_num);
  838.     return 0;
  839.   } else
  840.     sscanf(_temp_buffer, "%s %u %lu", &junk, &dummy, size);
  841.  
  842.   SOCK_READ_ERR(POP,);
  843.   if (*size == 0L) {
  844.     log_it(1, "\n ■ Mailbox contains a zero byte file -- deleting Message #%u!", msg_num);
  845.     sprintf(_temp_buffer, "DELE %u", msg_num);
  846.     sock_puts(POP_sock->sock, _temp_buffer);
  847.     sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  848.     sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  849.     log_it(DEBUG, "\n - POP> %s", _temp_buffer);
  850.     if (*_temp_buffer != '+') {
  851.       POP_Err_Cond = POP_NOT_MSG;
  852.       log_it(1, "\n ■ Error : No message #%u", msg_num);
  853.     }
  854.     sock_puts(POP_sock->sock, "QUIT");
  855.     sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  856.     sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  857.     if (*_temp_buffer != '+') {
  858.       POP_Err_Cond = POP_UNKNOWN;
  859.       log_it(1, "\n ■ Error : Unable to update mailbox.");
  860.     } else
  861.       log_it(1, "\n ■ Updated mailbox on %s.", POPHOST);
  862.     sock_close(POP_sock->sock);
  863.   }
  864.   return (*size);
  865. }
  866.  
  867. char *stristr(char *String, char *Pattern)
  868. {
  869.   char *pptr, *sptr, *start;
  870.   unsigned int slen, plen;
  871.  
  872.   for (start = String, pptr = Pattern, slen = strlen(String),
  873.        plen = strlen(Pattern); slen >= plen; start++, slen--) {
  874.     while (toupper(*start) != toupper(*Pattern)) {
  875.       start++;
  876.       slen--;
  877.       if (slen < plen)
  878.         return (NULL);
  879.     }
  880.     sptr = start;
  881.  
  882.     pptr = Pattern;
  883.     while (toupper(*sptr) == toupper(*pptr)) {
  884.       sptr++;
  885.       pptr++;
  886.       if ('\0' == *pptr)
  887.         return (start);
  888.     }
  889.   }
  890.   return (NULL);
  891. }
  892.  
  893. int checkspam(char *text)
  894. {
  895.   char fn[161], buf[81], tmp[81];
  896.   int spam, ok;
  897.   FILE *fp;
  898.  
  899.   spam = 0;
  900.   sprintf(fn, "%sNOSPAM.TXT", net_data);
  901.   if ((fp = fsh_open(fn, "r")) != NULL) {
  902.     while ((!feof(fp)) && (!spam)) {
  903.       fgets(buf, 80, fp);
  904.       trimstr1(buf);
  905.       if (strlen(buf) > 2) {
  906.         if (buf[0] == '\"') {
  907.           strcpy(tmp, &(buf[1]));
  908.           LAST(tmp) = '\0';
  909.           strcpy(buf, tmp);
  910.         }
  911.         if (buf[0] == '[') {
  912.           if ((strnicmp(buf, "[GLOBAL]", 8) == 0) || (strnicmp(buf, "[MAIL]", 6) == 0))
  913.             ok = 1;
  914.           else
  915.             ok = 0;
  916.         }
  917.         if ((ok) && (stristr(text, buf)))
  918.           spam = 1;
  919.       }
  920.     }
  921.     fclose(fp);
  922.   }
  923.   return spam;
  924. }
  925.  
  926. #define MAX_IDS 100
  927.  
  928. int compact_msgid(void)
  929. {
  930.   char fn[161], oldfn[161];
  931.   int i, f1, f2, num_ids;
  932.   Message_ID messageid;
  933.  
  934.   num_ids = 0;
  935.   sprintf(oldfn, "%sMSGID.OLD", net_data);
  936.   unlink(oldfn);
  937.   sprintf(fn, "%sMSGID.DAT", net_data);
  938.   rename(fn, oldfn);
  939.   f1 = sh_open(oldfn, O_RDWR | O_BINARY | O_CREAT, S_IREAD | S_IWRITE);
  940.   if (f1 < 0) {
  941.     log_it(1, "\n ! Unable to read %s.", oldfn);
  942.     return 1;
  943.   }
  944.   f2 = sh_open(fn, O_RDWR | O_BINARY | O_CREAT, S_IREAD | S_IWRITE);
  945.  
  946.   if (f2 < 0) {
  947.     log_it(1, "\n ! Unable to create %s.", fn);
  948.     return 1;
  949.   }
  950.   for (i = 50; i < MAX_IDS; i++) {
  951.     sh_lseek(f1, ((long) (i)) * ((long) sizeof(Message_ID)), SEEK_SET);
  952.     sh_read(f1, (void *) &messageid, sizeof(Message_ID));
  953.     sh_lseek(f2, ((long) (num_ids++)) * ((long) sizeof(Message_ID)), SEEK_SET);
  954.     sh_write(f2, &messageid, sizeof(Message_ID));
  955.   }
  956.   f1 = sh_close(f1);
  957.   f2 = sh_close(f2);
  958.   unlink(oldfn);
  959.   return 0;
  960. }
  961.  
  962. int check_messageid(int add, char *msgid)
  963. {
  964.   char fn[MAXPATH];
  965.   int i, f, dupe, num_ids;
  966.   Message_ID messageid;
  967.  
  968.   num_ids = dupe = 0;
  969.   sprintf(fn, "%sMSGID.DAT", net_data);
  970.   f = sh_open(fn, O_RDWR | O_BINARY | O_CREAT, S_IREAD | S_IWRITE);
  971.   if (f < 0) {
  972.     log_it(1, "\n ! Unable to create %s.", fn);
  973.     return -1;
  974.   }
  975.   num_ids = (int) (filelength(f) / sizeof(Message_ID));
  976.  
  977.   if (num_ids > MAX_IDS)
  978.     compact_ids = 1;
  979.   if (!add) {
  980.     log_it(DEBUG, "\n ■ Scanning previous %d Message-IDs.", num_ids);
  981.     for (i = 0; ((i < num_ids) && (!dupe)); i++) {
  982.       sh_lseek(f, ((long) (i)) * ((long) sizeof(Message_ID)), SEEK_SET);
  983.       sh_read(f, (void *) &messageid, sizeof(Message_ID));
  984.       if (strcmp(messageid.msgid, msgid) == 0)
  985.         dupe = 1;
  986.     }
  987.   } else {
  988.     strncpy(messageid.msgid, msgid, 80);
  989.     messageid.msgid[81] = '\0';
  990.     log_it(DEBUG, "\n ■ Adding new Message-ID:%s", messageid.msgid);
  991.     sh_lseek(f, ((long) (num_ids)) * ((long) sizeof(Message_ID)), SEEK_SET);
  992.     sh_write(f, &messageid, sizeof(Message_ID));
  993.   }
  994.   f = sh_close(f);
  995.   return dupe;
  996. }
  997.  
  998. int pop_top(Mail_Socket * POP_sock, unsigned int msg_num, int usernum)
  999. {
  1000.   int okpkt, found_from, found_subj, dupe;
  1001.   char *ss, subject[81];
  1002.  
  1003.   sprintf(_temp_buffer, "TOP %u 40", msg_num);
  1004.   sock_puts(POP_sock->sock, _temp_buffer);
  1005.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  1006.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  1007.   if (*_temp_buffer != '+') {
  1008.     POP_Err_Cond = POP_NOT_MSG;
  1009.     log_it(1, "\n ■ Error : No message #%u.", msg_num);
  1010.     return -1;
  1011.   }
  1012.   okpkt = -1;
  1013.  
  1014.   dupe = 0;
  1015.   found_from = found_subj = fdl = 0;
  1016.   while (1) {
  1017.     sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  1018.     sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  1019.     if (*_temp_buffer == '.' && _temp_buffer[1] == 0)
  1020.       break;
  1021.     if (usernum == 0) {
  1022.       if ((strnicmp(_temp_buffer, "begin ", 6) == 0) &&
  1023.           (stristr(_temp_buffer, "WINMAIL") == NULL)) {
  1024.         if (okpkt != 4)
  1025.           okpkt = 1;
  1026.         if ((stristr(_temp_buffer, ".ZIP") != NULL) ||
  1027.             (stristr(_temp_buffer, ".ARJ") != NULL) ||
  1028.             (stristr(_temp_buffer, ".LZH") != NULL))
  1029.           okpkt = 2;
  1030.         if ((stristr(_temp_buffer, ".GIF") != NULL) ||
  1031.             (stristr(_temp_buffer, ".JPG") != NULL))
  1032.           okpkt = 3;
  1033.         if ((okpkt == 2) || (okpkt == 3) || (fdl)) {
  1034.           ss = strtok(_temp_buffer, "6");
  1035.           if (ss) {
  1036.             ss = strtok(NULL, " ");
  1037.             if (ss)
  1038.               ss = strtok(NULL, "\r\n");
  1039.           }
  1040.           if (ss) {
  1041.             strcpy(fdlfn, ss);
  1042.             trimstr1(fdlfn);
  1043.           }
  1044.         }
  1045.       }
  1046.       if (strnicmp(_temp_buffer, "FDL Type:", 9) == 0)
  1047.         fdl = 1;
  1048.     }
  1049.     if ((strnicmp(_temp_buffer, "from:", 5) == 0) && (!found_from)) {
  1050.       if (((stristr(_temp_buffer, "mailer-daemon") != NULL) ||
  1051.            (stristr(_temp_buffer, "mail delivery") != NULL) ||
  1052.            (stristr(_temp_buffer, "administrator") != NULL) ||
  1053.            (stristr(_temp_buffer, from_user) != NULL)) && (usernum == 0))
  1054.         okpkt = 4;
  1055.       else {
  1056.         if (_temp_buffer[6] != 0)
  1057.           strncpy(pktowner, &_temp_buffer[6], 25);
  1058.         else
  1059.           strcpy(pktowner, "Unknown");
  1060.       }
  1061.       found_from = 1;
  1062.     }
  1063.     if ((strnicmp(_temp_buffer, "subject:", 8) == 0) && (!found_subj)) {
  1064.       if (_temp_buffer[9] != 0)
  1065.         strncpy(subject, &_temp_buffer[9], 60);
  1066.       else
  1067.         strcpy(subject, "Unknown");
  1068.       found_subj = 1;
  1069.     }
  1070.     if (usernum == 0) {
  1071.       if ((strnicmp(_temp_buffer, "Message-ID:", 11) == 0) && (!found_subj)) {
  1072.         if (_temp_buffer[11] != 0) {
  1073.           strncpy(id, &_temp_buffer[11], 80);
  1074.           id[81] = '\0';
  1075.           if (check_messageid(0, id))
  1076.             dupe = 1;
  1077.         }
  1078.       }
  1079.     }
  1080.   }
  1081.   if (found_from && found_subj) {
  1082.     if (okpkt == -1)
  1083.       if ((checkspam(pktowner)) || (checkspam(subject)))
  1084.         okpkt = 5;
  1085.   }
  1086.   if (found_subj) {
  1087.     if ((strnicmp(subject, "subscribe", 9) == 0) ||
  1088.         (strnicmp(subject, "unsubscribe", 11) == 0))
  1089.       okpkt = 6;
  1090.   }
  1091.   if (dupe)
  1092.     okpkt = 7;
  1093.   SOCK_READ_ERR(POP,);
  1094.   return okpkt;
  1095. }
  1096.  
  1097. int pop_getf(Mail_Socket * POP_sock, char *fn, unsigned int msg_num, int usernum)
  1098. {
  1099.   unsigned long size;
  1100.   long nbytes, rbytes;
  1101.   int pos, ctld, len;
  1102.   FILE *fp;
  1103.  
  1104.   if (!pop_length(POP_sock, msg_num, &size))
  1105.     return 0;
  1106.   sprintf(_temp_buffer, "RETR %u", msg_num);
  1107.   sock_puts(POP_sock->sock, _temp_buffer);
  1108.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  1109.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  1110.   if (*_temp_buffer != '+') {
  1111.     POP_Err_Cond = POP_NOT_MSG;
  1112.     log_it(1, "\n ■ Error : No message #%u", msg_num);
  1113.     return 0;
  1114.   }
  1115.   nbytes = 0L;
  1116.  
  1117.   rbytes = 1024L;
  1118.   output(" : ");
  1119.   pos = wherex();
  1120.   if ((fp = fsh_open(fn, "w")) == NULL) {
  1121.     log_it(1, "\n ■ Unable to create %s... aborting!", fn);
  1122.     return 0;
  1123.   }
  1124.   if (usernum > 0)
  1125.     fprintf(fp, "0RX-WWIV-User: #%d\n", usernum);
  1126.   ctld = 1;
  1127.   while (1) {
  1128.     sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  1129.     len = (sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer)));
  1130.     if ((ctld == 1) && (len == 0))
  1131.       ctld = 0;
  1132.     if ((strnicmp(_temp_buffer, "begin ", 6) == 0) &&
  1133.         (stristr(_temp_buffer, "WINMAIL") != NULL))
  1134.       ctld = 2;
  1135.     if ((ctld == 2) && (strnicmp(_temp_buffer, "end", 3) == 0))
  1136.       ctld = 0;
  1137.     if (_temp_buffer[0] == '.' && _temp_buffer[1] == 0)
  1138.       break;
  1139.     if (EOF == (nbytes += fprintf(fp, "%s%s\n", ctld ? "0R" : "", _temp_buffer))) {
  1140.       if (fp != NULL)
  1141.         fclose(fp);
  1142.       return 0;
  1143.     }
  1144.     if (nbytes > rbytes) {
  1145.       go_back(wherex(), pos);
  1146.       output("%ld/%ld", nbytes, size);
  1147.       rbytes += 512L;
  1148.     }
  1149.   }
  1150.   if (fp != NULL)
  1151.     fclose(fp);
  1152.   go_back(wherex(), pos);
  1153.   output("message received!");
  1154.   SOCK_READ_ERR(POP,);
  1155.   return 1;
  1156. }
  1157.  
  1158. int pop_delete(Mail_Socket * POP_sock, unsigned int msg_num)
  1159. {
  1160.   sprintf(_temp_buffer, "DELE %u", msg_num);
  1161.   sock_puts(POP_sock->sock, _temp_buffer);
  1162.   sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  1163.   sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  1164.   log_it(DEBUG, "\n - POP> %s", _temp_buffer);
  1165.   if (*_temp_buffer != '+') {
  1166.     POP_Err_Cond = POP_NOT_MSG;
  1167.     log_it(1, "\n ■ Error : No message #%u", msg_num);
  1168.     return 2;
  1169.   }
  1170.   SOCK_READ_ERR(POP,);
  1171.  
  1172.   return 1;
  1173. }
  1174.  
  1175.  
  1176. int pop_shutdown(Mail_Socket * POP_sock)
  1177. {
  1178.   if (POP_sock->sock) {
  1179.     sock_puts(POP_sock->sock, "QUIT");
  1180.     sock_wait_input(POP_sock->sock, sock_delay, NULL, &POP_stat);
  1181.     sock_gets(POP_sock->sock, _temp_buffer, sizeof(_temp_buffer));
  1182.     if (*_temp_buffer != '+') {
  1183.       POP_Err_Cond = POP_UNKNOWN;
  1184.       log_it(1, "\n ■ Error : Unable to update mailbox.");
  1185.       return 0;
  1186.     } else
  1187.       log_it(DEBUG, "\n ■ Closed and updated mailbox.");
  1188.     sock_close(POP_sock->sock);
  1189.     return 1;
  1190.   }
  1191. sock_err:
  1192.   free_Mail_Socket(POP_sock);
  1193.  
  1194.   return 0;
  1195. }
  1196.  
  1197. int pop_get_nextf(Mail_Socket * POP_sock, char *fn, int msgnum, int usernum)
  1198. {
  1199.   if (!pop_getf(POP_sock, fn, msgnum, usernum))
  1200.     return 0;
  1201.   return (pop_delete(POP_sock, msgnum));
  1202. }
  1203.  
  1204. int exist(char *s)
  1205. {
  1206.   int i;
  1207.   struct ffblk ff;
  1208.  
  1209.   i = findfirst(s, &ff, FA_HIDDEN);
  1210.   if (i)
  1211.     return 0;
  1212.   else
  1213.     return 1;
  1214. }
  1215.  
  1216. int find_acct(char *username, char *hostname, char *password)
  1217. {
  1218.   char *ss, fn[161], s[121];
  1219.   int num;
  1220.   FILE *fp;
  1221.  
  1222.   num = 0;
  1223.   sprintf(fn, "%sACCT.INI", net_data);
  1224.   if ((fp = fsh_open(fn, "rt")) == NULL)
  1225.     return 0;
  1226.   while ((fgets(s, 120, fp)) && (num == 0)) {
  1227.     if (strnicmp(s, "ACCT", 4) == 0) {
  1228.       if ((_fstrstr(s, username) != 0) && (_fstrstr(s, hostname) != 0) &&
  1229.           (_fstrstr(s, password) != 0)) {
  1230.         ss = strtok(s, "=");
  1231.         num = atoi(&(ss[4]));
  1232.         log_it(DEBUG, "\n ■ Checking mailbox %s on %s for user #%d.", username,
  1233.                hostname, num);
  1234.       }
  1235.     }
  1236.   }
  1237.   if (fp != NULL)
  1238.     fclose(fp);
  1239.   return num;
  1240. }
  1241.  
  1242. int count_accts(int build)
  1243. {
  1244.   FILE *fp;
  1245.   char *ss, s[101], fn[MAXPATH];
  1246.   int accts = 0;
  1247.  
  1248.   sprintf(fn, "%sACCT.INI", net_data);
  1249.   if ((fp = fsh_open(fn, "rt")) == NULL)
  1250.     return 0;
  1251.  
  1252.   while (fgets(s, 100, fp)) {
  1253.     if (strnicmp(s, "ACCT", 4) == 0) {
  1254.       if (build) {
  1255.         ss = strtok(s, "=");
  1256.         if (ss) {
  1257.           ss = strtok(NULL, "@");
  1258.           trimstr1(ss);
  1259.           if (ss) {
  1260.             strcpy(acct[accts].popname, ss);
  1261.             ss = strtok(NULL, " ");
  1262.             trimstr1(ss);
  1263.             if (ss) {
  1264.               strcpy(acct[accts].pophost, ss);
  1265.               ss = strtok(NULL, " \r\n");
  1266.               trimstr1(ss);
  1267.               if (ss)
  1268.                 strcpy(acct[accts].poppass, ss);
  1269.             }
  1270.           }
  1271.           log_it(DEBUG, "\n - Account : %s - %s - %s", acct[accts].pophost,
  1272.                  acct[accts].popname, acct[accts].poppass);
  1273.         }
  1274.       }
  1275.       ++accts;
  1276.     }
  1277.   }
  1278.   if (fp != NULL)
  1279.     fclose(fp);
  1280.   return accts;
  1281. }
  1282.  
  1283. void main(int argc, char *argv[])
  1284. {
  1285.   unsigned int count, failed;
  1286.   unsigned long size;
  1287.   int ok, f1, i, i1, okpkt, result, usernum, num_accts, accts;
  1288.   char fn[MAXPATH], temp[181], inbound[MAXPATH], mqueue[MAXPATH], s[21], s1[21];
  1289.   struct ffblk ff;
  1290.   FILE *fp;
  1291.   Mail_Socket *pop_sock = NULL;
  1292.   Mail_Socket *smtp_sock = NULL;
  1293.  
  1294.   detect_multitask();
  1295.  
  1296.   if (strncmpi(argv[1], "-send", strlen(argv[1])) == 0) {
  1297.     if (argc < 5) {
  1298.       output("\n ■ %s", version);
  1299.       output("\n ■ Invalid arguments for %s\n", argv[0]);
  1300.       exit(EXIT_FAILURE);
  1301.     }
  1302.     if (argc == 6)
  1303.       DEBUG = atoi(argv[5]);
  1304.  
  1305.     strcpy(mqueue, argv[4]);
  1306.     strcpy(net_data, argv[4]);
  1307.     LAST(net_data) = '\0';
  1308.     while (LAST(net_data) != '\\')
  1309.       LAST(net_data) = '\0';
  1310.     output("\n");
  1311.     if ((smtp_sock = smtp_start(argv[2], argv[3])) != NULL) {
  1312.       failed = count = aborted = 0;
  1313.       sprintf(fn, "%s*.*", mqueue);
  1314.       f1 = findfirst(fn, &ff, FA_ARCH);
  1315.       while ((count < 3) && (f1 == 0) && (failed < 5) && (!aborted)) {
  1316.         if (count > 1)
  1317.           output(" ■ SMTP pass %d...\n", count);
  1318.         sprintf(fn, "%s%s", mqueue, ff.ff_name);
  1319.         if ((fp = fsh_open(fn, "r")) != NULL) {
  1320.           SMTP_Err_Cond = SMTP_OK;
  1321.           if (DEBUG)
  1322.             output("\n");
  1323.           output("\r ■ SND : %-12s : %-18.18s : [Space] to abort : ", ff.ff_name, argv[2]);
  1324.           ok = 1;
  1325.           if (!smtp_send_MAIL_FROM_line(smtp_sock, fp))
  1326.             ok = 0;
  1327.           if (!smtp_send_RCPT_TO_line(smtp_sock, fp))
  1328.             ok = 0;
  1329.           aborted = result = 0;
  1330.           if (ok) {
  1331.             result = smtp_sendf(smtp_sock, fp);
  1332.             if ((!result) || (aborted))
  1333.               ++failed;
  1334.             else {
  1335.               if (fp != NULL)
  1336.                 fclose(fp);
  1337.               unlink(fn);
  1338.             }
  1339.           } else {
  1340.             if (fp != NULL)
  1341.               fclose(fp);
  1342.           }
  1343.         } else
  1344.           log_it(1, "\n ! Unable to open %s.", fn);
  1345.         f1 = findnext(&ff);
  1346.         if (f1 != 0) {
  1347.           sprintf(fn, "%s*.*", mqueue);
  1348.           f1 = findfirst(fn, &ff, FA_ARCH);
  1349.           ++count;
  1350.         }
  1351.       }
  1352.       if (failed >= 5)
  1353.         log_it(1, "\n ■ Too many SMTP failures.  Try again later.");
  1354.       smtp_shutdown(smtp_sock);
  1355.     } else
  1356.       log_it(1, "\n ■ SMTP connection failed.");
  1357.     fcloseall();
  1358.   } else if (strncmpi(argv[1], "-receive", strlen(argv[1])) == 0) {
  1359.     if (argc < 8) {
  1360.       output("\n ■ %s", version);
  1361.       output("\n ■ Invalid arguments for %s\n", argv[0]);
  1362.       exit(EXIT_FAILURE);
  1363.     }
  1364.     sprintf(from_user, "%s@%s", argv[3], argv[7]);
  1365.     if (argc == 9)
  1366.       DEBUG = atoi(argv[8]);
  1367.     ALLMAIL = atoi(argv[6]);
  1368.     strcpy(POPHOST, argv[2]);
  1369.     strcpy(net_data, argv[5]);
  1370.     LAST(net_data) = '\0';
  1371.     while (LAST(net_data) != '\\')
  1372.       LAST(net_data) = '\0';
  1373.     POP_Err_Cond = POP_OK;
  1374.     strcpy(POPNAME, argv[3]);
  1375.     strcpy(POPPASS, argv[4]);
  1376.     strcpy(inbound, argv[5]);
  1377.     strcpy(DOMAIN, argv[7]);
  1378.     num_accts = accts = usernum = 0;
  1379.     log_it(DEBUG, "\n - POPHOST=%s\n - POPNAME=%s\n - POPPASS=%s\n - DOMAIN=%s\n - inbound=%s\n - net_data=%s",
  1380.         POPHOST, POPNAME, POPPASS, DOMAIN, inbound, net_data);
  1381.     do {
  1382.       log_it(1, "\n ■ Checking %s... ", POPHOST);
  1383.       if ((pop_sock = pop_init(argv[2])) != NULL) {
  1384.         if (pop_login(pop_sock, POPNAME, POPPASS)) {
  1385.           if (pop_status(pop_sock, &count, &size)) {
  1386.             okpkt = 0;
  1387.             output("%s has %u message%s (%luK).", POPNAME, count,
  1388.                   count == 1 ? "" : "s", ((size + 1023) / 1024));
  1389.             i1 = 1;
  1390.             while (i1 <= count) {
  1391.               okpkt = 0;
  1392.               okpkt = pop_top(pop_sock, i1, usernum);
  1393.               switch (okpkt) {
  1394.                 case -1:
  1395.                   if ((!ALLMAIL) && (!fdl))
  1396.                     log_it(1, "\n ■ Non-network message %d left on server.", i1);
  1397.                   else {
  1398.                     i = 0;
  1399.                     sprintf(temp, "%sUNK-%03d.MSG", inbound, i);
  1400.                     while (exist(temp))
  1401.                       sprintf(temp, "%sUNK-%03d.MSG", inbound, ++i);
  1402.                     fnsplit(temp, NULL, NULL, s, s1);
  1403.                     log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, pktowner[0] == 0 ?
  1404.                            "non-network packet" : pktowner, s, s1);
  1405.                     result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1406.                     switch (result) {
  1407.                       case 0:
  1408.                         log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1409.                         fcloseall();
  1410.                         exit(EXIT_FAILURE);
  1411.                       case 1:
  1412.                         break;
  1413.                       case 2:
  1414.                         log_it(1, "\n ■ Unable to delete message %d from host!", i1);
  1415.                         exit(EXIT_FAILURE);
  1416.                     }
  1417.                   }
  1418.                   break;
  1419.                 case 0:
  1420.                   log_it(1, "\n ■ Error accessing message %d", i1);
  1421.                   fcloseall();
  1422.                   exit(EXIT_FAILURE);
  1423.                 case 1:
  1424.                   i = 0;
  1425.                   sprintf(temp, "%sPKT-%03d.UUE", inbound, i);
  1426.                   while (exist(temp))
  1427.                     sprintf(temp, "%sPKT-%03d.UUE", inbound, ++i);
  1428.                   fnsplit(temp, NULL, NULL, s, s1);
  1429.                   log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, pktowner, s, s1);
  1430.                   result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1431.                   switch (result) {
  1432.                     case 0:
  1433.                       log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1434.                       fcloseall();
  1435.                       exit(EXIT_FAILURE);
  1436.                     case 1:
  1437.                       check_messageid(1, id);
  1438.                       break;
  1439.                     case 2:
  1440.                       log_it(1, "\n ■ Unable to delete message %d on host!", i1);
  1441.                       exit(EXIT_FAILURE);
  1442.                   }
  1443.                   break;
  1444.                 case 2:
  1445.                   if ((!ALLMAIL) && (!fdl))
  1446.                     log_it(1, "\n ■ Non-network message %d left on server.", i1);
  1447.                   else {
  1448.                     i = 0;
  1449.                     sprintf(temp, "%sARC-%03d.UUE", inbound, i);
  1450.                     while (exist(temp))
  1451.                       sprintf(temp, "%sARC-%03d.UUE", inbound, ++i);
  1452.                     fnsplit(temp, NULL, NULL, s, s1);
  1453.                     if (*fdlfn)
  1454.                       log_it(1, "\n ■ RCV : %3.3d : %-25s : %s", i1, "archived file", fdlfn);
  1455.                     else
  1456.                       log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, "archived file", s, s1);
  1457.                     result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1458.                     switch (result) {
  1459.                       case 0:
  1460.                         log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1461.                         fcloseall();
  1462.                         exit(EXIT_FAILURE);
  1463.                       case 1:
  1464.                         check_messageid(1, id);
  1465.                         break;
  1466.                       case 2:
  1467.                         log_it(1, "\n ■ Unable to delete message %d on host!", i1);
  1468.                         exit(EXIT_FAILURE);
  1469.                     }
  1470.                   }
  1471.                   break;
  1472.                 case 3:
  1473.                   if ((!ALLMAIL) && (!fdl))
  1474.                     log_it(1, "\n ■ Non-network message %d left on server.", i1);
  1475.                   else {
  1476.                     i = 0;
  1477.                     sprintf(temp, "%sGIF-%03d.UUE", inbound, i);
  1478.                     while (exist(temp))
  1479.                       sprintf(temp, "%sGIF-%03d.UUE", inbound, ++i);
  1480.                     fnsplit(temp, NULL, NULL, s, s1);
  1481.                     log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, "graphic/image file", s, s1);
  1482.                     result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1483.                     switch (result) {
  1484.                       case 0:
  1485.                         log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1486.                         fcloseall();
  1487.                         exit(EXIT_FAILURE);
  1488.                       case 1:
  1489.                         check_messageid(1, id);
  1490.                         break;
  1491.                       case 2:
  1492.                         log_it(1, "\n ■ Unable to delete message %d from host!", i1);
  1493.                         exit(EXIT_FAILURE);
  1494.                     }
  1495.                   }
  1496.                   break;
  1497.                 case 4:
  1498.                   i = 0;
  1499.                   sprintf(temp, "%sBAD-%03d.UUE", inbound, i);
  1500.                   while (exist(temp))
  1501.                     sprintf(temp, "%sBAD-%03d.UUE", inbound, ++i);
  1502.                   fnsplit(temp, NULL, NULL, s, s1);
  1503.                   log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, "mailer-daemon/bounced", s, s1);
  1504.                   result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1505.                   switch (result) {
  1506.                     case 0:
  1507.                       log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1508.                       fcloseall();
  1509.                       exit(EXIT_FAILURE);
  1510.                     case 1:
  1511.                       check_messageid(1, id);
  1512.                       break;
  1513.                     case 2:
  1514.                       log_it(1, "\n ■ Unable to delete message %d from host!", i1);
  1515.                       exit(EXIT_FAILURE);
  1516.                   }
  1517.                   break;
  1518.                 case 5:
  1519.                   if ((!ALLMAIL) && (!fdl))
  1520.                     log_it(1, "\n ■ Non-network message %d left on server.", i1);
  1521.                   else {
  1522.                     i = 0;
  1523.                     sprintf(temp, "%sSPM-%03d.MSG", inbound, i);
  1524.                     while (exist(temp))
  1525.                       sprintf(temp, "%sSPM-%03d.MSG", inbound, ++i);
  1526.                     fnsplit(temp, NULL, NULL, s, s1);
  1527.                     log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, "matched NOSPAM.TXT", s, s1);
  1528.                     result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1529.                     switch (result) {
  1530.                       case 0:
  1531.                         log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1532.                         fcloseall();
  1533.                         exit(EXIT_FAILURE);
  1534.                       case 1:
  1535.                         check_messageid(1, id);
  1536.                         break;
  1537.                       case 2:
  1538.                         log_it(1, "\n ■ Unable to delete message %d from host!", i1);
  1539.                         exit(EXIT_FAILURE);
  1540.                     }
  1541.                   }
  1542.                   break;
  1543.                 case 6:
  1544.                   if ((!ALLMAIL) && (!fdl))
  1545.                     log_it(1, "\n ■ Non-network message %d left on server.", i1);
  1546.                   else {
  1547.                     i = 0;
  1548.                     sprintf(temp, "%sSUB-%03d.MSG", inbound, i);
  1549.                     while (exist(temp))
  1550.                       sprintf(temp, "%sSUB-%03d.MSG", inbound, ++i);
  1551.                     fnsplit(temp, NULL, NULL, s, s1);
  1552.                     log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, "subscribe request", s, s1);
  1553.                     result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1554.                     switch (result) {
  1555.                       case 0:
  1556.                         log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1557.                         fcloseall();
  1558.                         exit(EXIT_FAILURE);
  1559.                       case 1:
  1560.                         check_messageid(1, id);
  1561.                         break;
  1562.                       case 2:
  1563.                         log_it(1, "\n ■ Unable to delete message %d from host!", i1);
  1564.                         exit(EXIT_FAILURE);
  1565.                     }
  1566.                   }
  1567.                   break;
  1568.                 case 7:
  1569.                   if ((!ALLMAIL) && (!fdl))
  1570.                     log_it(1, "\n ■ Duplicate message %d left on server.", i1);
  1571.                   else {
  1572.                     i = 0;
  1573.                     sprintf(temp, "%sDUP-%03d.MSG", inbound, i);
  1574.                     while (exist(temp))
  1575.                       sprintf(temp, "%sDUP-%03d.MSG", inbound, ++i);
  1576.                     fnsplit(temp, NULL, NULL, s, s1);
  1577.                     log_it(1, "\n ■ RCV : %3.3d : %-25s : %s%s", i1, "duplicate message", s, s1);
  1578.                     result = (pop_get_nextf(pop_sock, temp, i1, usernum));
  1579.                     switch (result) {
  1580.                       case 0:
  1581.                         log_it(1, "\n ■ Unable to retrieve message %d.", i1);
  1582.                         fcloseall();
  1583.                         exit(EXIT_FAILURE);
  1584.                       case 1:
  1585.                         break;
  1586.                       case 2:
  1587.                         log_it(1, "\n ■ Unable to delete message %d from host!", i1);
  1588.                         exit(EXIT_FAILURE);
  1589.                     }
  1590.                   }
  1591.                   break;
  1592.               }
  1593.               i1++;
  1594.               fcloseall();
  1595.             }
  1596.             if (compact_ids) {
  1597.               log_it(1, "\n ■ Compacting Message-ID database...");
  1598.               compact_msgid();
  1599.             }
  1600.           } else
  1601.             log_it(1, "\n ■ Unknown POP access error - try again later.");
  1602.           pop_shutdown(pop_sock);
  1603.         } else {
  1604.           log_it(1, "\n ■ Unable to log into POP server!");
  1605.           pop_shutdown(pop_sock);
  1606.         }
  1607.       } else
  1608.         log_it(1, "\n ■ POP socket connect failed.");
  1609.       if (strncmp(DOMAIN, "filenet.ml.org", 14) == 0)
  1610.         num_accts = 0;
  1611.       else {
  1612.         if (!accts) {
  1613.           num_accts = count_accts(0);
  1614.           log_it(DEBUG, "\n - Found %d extra account%s.", num_accts, num_accts == 1 ? "" : "s");
  1615.           if (num_accts) {
  1616.             acct = (ACCT *) farmalloc(sizeof(ACCT) * num_accts);
  1617.             if (acct != NULL) {
  1618.               num_accts = count_accts(1);
  1619.             } else {
  1620.               log_it(DEBUG, "\n ! Insufficient memory for extra accounts.");
  1621.               num_accts = 0;
  1622.             }
  1623.             accts = 1;
  1624.           }
  1625.         }
  1626.       }
  1627.       if (num_accts) {
  1628.         strcpy(POPNAME, acct[num_accts - 1].popname);
  1629.         argv[2] = POPHOST;
  1630.         strcpy(POPHOST, acct[num_accts - 1].pophost);
  1631.         strcpy(POPPASS, acct[num_accts - 1].poppass);
  1632.         usernum = find_acct(POPNAME, POPHOST, POPPASS);
  1633.       }
  1634.     } while (num_accts-- > 0);
  1635.     if (acct != NULL) {
  1636.       farfree((void *)acct);
  1637.       acct = NULL;
  1638.     }
  1639.     exit(EXIT_SUCCESS);
  1640.   }
  1641.   exit(EXIT_FAILURE);
  1642. }
  1643.