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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Simple Mail Transfer Protocol (SMTP) routines
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 27 July 1988
  13.  * Last Edited: 13 October 1998
  14.  *
  15.  * Sponsorship: The original version of this work was developed in the
  16.  * Symbolic Systems Resources Group of the Knowledge Systems
  17.  * Laboratory at Stanford University in 1987-88, and was funded
  18.  * by the Biomedical Research Technology Program of the National
  19.  * Institutes of Health under grant number RR-00785.
  20.  *
  21.  * Original version Copyright 1988 by The Leland Stanford Junior University
  22.  * Copyright 1998 by the University of Washington
  23.  *
  24.  *  Permission to use, copy, modify, and distribute this software and its
  25.  * documentation for any purpose and without fee is hereby granted, provided
  26.  * that the above copyright notices appear in all copies and that both the
  27.  * above copyright notices and this permission notice appear in supporting
  28.  * documentation, and that the name of the University of Washington or The
  29.  * Leland Stanford Junior University not be used in advertising or publicity
  30.  * pertaining to distribution of the software without specific, written prior
  31.  * permission.  This software is made available "as is", and
  32.  * THE UNIVERSITY OF WASHINGTON AND THE LELAND STANFORD JUNIOR UNIVERSITY
  33.  * DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS SOFTWARE,
  34.  * INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  35.  * FITNESS FOR A PARTICULAR PURPOSE, AND IN NO EVENT SHALL THE UNIVERSITY OF
  36.  * WASHINGTON OR THE LELAND STANFORD JUNIOR UNIVERSITY BE LIABLE FOR ANY
  37.  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  38.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  39.  * CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF
  40.  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  41.  *
  42.  */
  43. /* Constants */
  44. #define MAXLOGINTRIALS 3 /* maximum number of login trials */
  45. #define SMTPTCPPORT (long) 25 /* assigned TCP contact port */
  46. #define SMTPGREET (long) 220 /* SMTP successful greeting */
  47. #define SMTPAUTHED (long) 235 /* SMTP successful authentication */
  48. #define SMTPOK (long) 250 /* SMTP OK code */
  49. #define SMTPAUTHREADY (long) 334/* SMTP ready for authentication */
  50. #define SMTPREADY (long) 354 /* SMTP ready for data */
  51. #define SMTPSOFTFATAL (long) 421/* SMTP soft fatal code */
  52. #define SMTPWANTAUTH (long) 505 /* SMTP authentication needed */
  53. #define SMTPWANTAUTH2 (long) 530/* SMTP authentication needed */
  54. #define SMTPHARDERROR (long) 554/* SMTP miscellaneous hard failure */
  55. /* SMTP open options */
  56. #define SOP_DEBUG (long) 1 /* debug protocol negotiations */
  57. #define SOP_DSN (long) 2 /* DSN requested */
  58. /* DSN notification, none set mean NEVER */
  59. #define SOP_DSN_NOTIFY_FAILURE (long) 4
  60. #define SOP_DSN_NOTIFY_DELAY (long) 8
  61. #define SOP_DSN_NOTIFY_SUCCESS (long) 16
  62. /* DSN return full msg vs. header */
  63. #define SOP_DSN_RETURN_FULL (long) 32
  64. #define SOP_8BITMIME (long) 64 /* 8-bit MIME requested */
  65. #define SOP_SECURE (long) 256 /* don't do non-secure authentication */
  66. #define SOP_TRYALT (long) 512 /* try alternative first */
  67. /* Convenient access to protocol-specific data */
  68. #define ESMTP stream->protocol.esmtp
  69. /* Compatibility support names */
  70. #define smtp_open(hostlist,options) 
  71.   smtp_open_full (NIL,hostlist,"smtp",SMTPTCPPORT,options)
  72. /* Function prototypes */
  73. void *smtp_parameters (long function,void *value);
  74. SENDSTREAM *smtp_open_full (NETDRIVER *dv,char **hostlist,char *service,
  75.     unsigned long port,long options);
  76. void *smtp_challenge (void *s,unsigned long *len);
  77. long smtp_response (void *s,char *response,unsigned long size);
  78. long smtp_auth (SENDSTREAM *stream,NETMBX *mb,char *tmp);
  79. SENDSTREAM *smtp_close (SENDSTREAM *stream);
  80. long smtp_mail (SENDSTREAM *stream,char *type,ENVELOPE *msg,BODY *body);
  81. void smtp_debug (SENDSTREAM *stream);
  82. void smtp_nodebug (SENDSTREAM *stream);
  83. void smtp_rcpt (SENDSTREAM *stream,ADDRESS *adr,long *error);
  84. long smtp_send (SENDSTREAM *stream,char *command,char *args);
  85. long smtp_send_work (SENDSTREAM *stream,char *command,char *args);
  86. long smtp_send_auth (SENDSTREAM *stream,long code);
  87. long smtp_send_auth_work (SENDSTREAM *stream,NETMBX *mb,char *tmp);
  88. long smtp_reply (SENDSTREAM *stream);
  89. long smtp_ehlo (SENDSTREAM *stream,char *host,NETMBX *mb);
  90. long smtp_fake (SENDSTREAM *stream,long code,char *text);
  91. long smtp_soutr (void *stream,char *s);