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

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * smtp.h -- prototypes for smtp handling code
  3.  *
  4.  * For license terms, see the file COPYING in this directory.
  5.  */
  6. #ifndef _POPSMTP_
  7. #define _POPSMTP_
  8. #define         SMTPBUFSIZE     256
  9. /* SMTP error values */
  10. #define         SM_OK              0
  11. #define         SM_ERROR           128
  12. #define         SM_UNRECOVERABLE   129
  13. /* ESMTP extension option masks (not all options are listed here) */
  14. #define ESMTP_8BITMIME 0x01
  15. #define ESMTP_SIZE 0x02
  16. #define ESMTP_ETRN 0x04
  17. void SMTP_setmode(char);
  18. int SMTP_helo(int socket,const char *host);
  19. int SMTP_ehlo(int socket,const char *host,int *opt);
  20. int SMTP_from(int socket,const char *from,const char *opts);
  21. int SMTP_rcpt(int socket,const char *to);
  22. int SMTP_data(int socket);
  23. int SMTP_eom(int socket);
  24. int SMTP_rset(int socket);
  25. int SMTP_quit(int socket);
  26. int SMTP_ok(int socket);
  27. extern char smtp_response[MSGBUFSIZE];
  28. #endif