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

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.     File: smtp/smtp.h
  3.     
  4.     Copyright (C) 1999 by Wolfgang Zekoll <wzk@quietsche-entchen.de>
  5.     This source is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 1, or (at your option)
  8.     any later version.
  9.     This source is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.     You should have received a copy of the GNU General Public License
  14.     along with this program; if not, write to the Free Software
  15.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. #ifndef _SMTP_INCLUDED
  18. #define _SMTP_INCLUDED
  19. #define VERSION "1.1.0"
  20. #define SENDMAIL "/usr/sbin/sendmail"
  21. #define SMTP_TIMEOUT 300
  22. #define SMTP_ACCEPTTIME 600
  23. extern char *program;
  24. extern char progname[80];
  25. extern int debug;
  26. #define WAITING 1
  27. #define MAIL_SEEN 2
  28. #define RCPT_SEEN 3
  29. #define DATA_SEEN 4
  30. #define SEND_QUIT 5
  31. #define NO_SENDMAIL 6
  32. typedef struct _config {
  33.     char hostname[200];
  34.     int etrn;
  35.     int droppath;
  36.     int timeout;
  37.     char *senderlist;
  38.     char *rcptlist;
  39.     char server[200];
  40.     char **argv;
  41.     char clientdir[200];
  42.     int accepttime;
  43.     } config_t;
  44. typedef struct _smtp {
  45.     config_t *config;
  46.     char hostname[200];
  47.     FILE *sin, *sout;
  48.     
  49.     char ipnum[100];
  50.     char client[300];
  51.     int helloseen;
  52.     int state;
  53.     int mailcount;
  54. /*
  55.  * Mail-spezifische Daten
  56.  */
  57.     char sender[300];
  58.     int nrcpt;
  59.     char jobid[80];
  60.     char msgid[200];
  61.     long size;
  62.     } smtp_t;
  63. extern int proxy_request(config_t *config);
  64. #endif