Filter.h
上传用户:woshihumen
上传日期:2013-07-18
资源大小:484k
文件大小:2k
源码类别:

Email服务器

开发平台:

Visual C++

  1. /*
  2.  *  XMail by Davide Libenzi ( Intranet and Internet mail server )
  3.  *  Copyright (C) 1999,..,2004  Davide Libenzi
  4.  *
  5.  *  This program 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 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  *
  19.  *  Davide Libenzi <davidel@xmailserver.org>
  20.  *
  21.  */
  22. #ifndef _FILTER_H
  23. #define _FILTER_H
  24. #define FILTER_MODE_INBOUND         "in"
  25. #define FILTER_MODE_OUTBOUND        "out"
  26. #define FILTER_PRIORITY             SYS_PRIORITY_NORMAL
  27. #define FILTER_OUT_NNF_EXITCODE     4
  28. #define FILTER_OUT_NN_EXITCODE      5
  29. #define FILTER_OUT_EXITCODE         6
  30. #define FILTER_MODIFY_EXITCODE      7
  31. #define FILTER_FLAGS_BREAK          (1 << 4)
  32. #define FILTER_FLAGS_MASK           FILTER_FLAGS_BREAK
  33. struct FilterLogInfo {
  34. char const *pszSender;
  35. char const *pszRecipient;
  36. SYS_INET_ADDR LocalAddr;
  37. SYS_INET_ADDR RemoteAddr;
  38. char const * const *ppszExec;
  39. int iExecResult;
  40. int iExitCode;
  41. char const *pszType;
  42. char const *pszInfo;
  43. };
  44. struct FilterTokens {
  45. char **ppszCmdTokens;
  46. int iTokenCount;
  47. };
  48. struct FilterExecCtx {
  49. FilterTokens *pToks;
  50. char const *pszAuthName;
  51. };
  52. enum FilterFields {
  53. filSender = 0,
  54. filRecipient,
  55. filRemoteAddr,
  56. filLocalAddr,
  57. filFileName,
  58. filMax
  59. };
  60. int FilLogFilter(FilterLogInfo const *pFLI);
  61. char *FilGetFilterRejMessage(char const *pszSpoolFile);
  62. int FilExecPreParse(FilterExecCtx *pCtx, char **ppszPEError);
  63. int FilFilterMessage(SPLF_HANDLE hFSpool, QUEUE_HANDLE hQueue,
  64.      QMSG_HANDLE hMessage, char const *pszMode);
  65. #endif