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

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 _SMAILUTILS_H
  23. #define _SMAILUTILS_H
  24. #define MAX_SPOOL_LINE                  1537
  25. #define MAIL_FROM_STR                   "MAIL FROM:"
  26. #define RCPT_TO_STR                     "RCPT TO:"
  27. #define SPOOL_FILE_DATA_START           "<<MAIL-DATA>>"
  28. #define INVALID_SPLF_HANDLE             ((SPLF_HANDLE) 0)
  29. #define TAG_POSITION_INIT               ((TAG_POSITION) -1)
  30. #define LMPCF_LOG_ENABLED               (1 << 0)
  31. struct SpoolFileHeader {
  32. char szSpoolFile[SYS_MAX_PATH];
  33. char szSMTPDomain[MAX_ADDR_NAME];
  34. char szMessageID[128];
  35. char **ppszInfo;
  36. char **ppszFrom;
  37. char **ppszRcpt;
  38. };
  39. typedef struct SPLF_HANDLE_struct {
  40. } *SPLF_HANDLE;
  41. struct LocalMailProcConfig {
  42. unsigned long ulFlags;
  43. };
  44. typedef void *TAG_POSITION;
  45. int USmlLoadSpoolFileHeader(char const *pszSpoolFile, SpoolFileHeader & SFH);
  46. void USmlCleanupSpoolFileHeader(SpoolFileHeader & SFH);
  47. char *USmlAddrConcat(char const *const *ppszStrings);
  48. char *USmlBuildSendMailFrom(char const *const *ppszFrom, char const *const *ppszRcpt);
  49. char *USmlBuildSendRcptTo(char const *const *ppszFrom, char const *const *ppszRcpt);
  50. SPLF_HANDLE USmlCreateHandle(const char *pszMessFilePath);
  51. void USmlCloseHandle(SPLF_HANDLE hFSpool);
  52. int USmlReloadHandle(SPLF_HANDLE hFSpool);
  53. char const *USmlGetRelayDomain(SPLF_HANDLE hFSpool);
  54. char const *USmlGetSpoolFilePath(SPLF_HANDLE hFSpool);
  55. char const *USmlGetSpoolFile(SPLF_HANDLE hFSpool);
  56. char const *USmlGetSMTPDomain(SPLF_HANDLE hFSpool);
  57. char const *USmlGetSmtpMessageID(SPLF_HANDLE hFSpool);
  58. char const *const *USmlGetInfo(SPLF_HANDLE hFSpool);
  59. char const *const *USmlGetMailFrom(SPLF_HANDLE hFSpool);
  60. char const *USmlMailFrom(SPLF_HANDLE hFSpool);
  61. char const *USmlSendMailFrom(SPLF_HANDLE hFSpool);
  62. char const *const *USmlGetRcptTo(SPLF_HANDLE hFSpool);
  63. char const *USmlRcptTo(SPLF_HANDLE hFSpool);
  64. char const *USmlSendRcptTo(SPLF_HANDLE hFSpool);
  65. int USmlSyncChanges(SPLF_HANDLE hFSpool);
  66. int USmlGetMsgFileSection(SPLF_HANDLE hFSpool, FileSection & FS);
  67. int USmlWriteMailFile(SPLF_HANDLE hFSpool, FILE * pMsgFile);
  68. char *USmlGetTag(SPLF_HANDLE hFSpool, char const *pszTagName, TAG_POSITION & TagPosition);
  69. int USmlAddTag(SPLF_HANDLE hFSpool, char const *pszTagName,
  70.        char const *pszTagData, int iUpdate = 0);
  71. int USmlSetTagAddress(SPLF_HANDLE hFSpool, char const *pszTagName, char const *pszAddress);
  72. int USmlMapAddress(char const *pszAddress, char *pszDomain, char *pszName);
  73. int USmlCreateMBFile(UserInfo * pUI, char const *pszFileName, SPLF_HANDLE hFSpool);
  74. int USmlVCreateSpoolFile(SPLF_HANDLE hFSpool, char const *pszFromUser,
  75.  char const *pszRcptUser, char const *pszFileName, va_list Headers);
  76. int USmlCreateSpoolFile(SPLF_HANDLE hFSpool, char const *pszFromUser,
  77. char const *pszRcptUser, char const *pszFileName, ...);
  78. int USmlProcessLocalUserMessage(SVRCFG_HANDLE hSvrConfig, UserInfo * pUI, SPLF_HANDLE hFSpool,
  79. QUEUE_HANDLE hQueue, QMSG_HANDLE hMessage,
  80. LocalMailProcConfig & LMPC);
  81. int USmlGetDomainCustomDir(char *pszCustomDir, int iMaxPath, int iFinalSlash);
  82. int USmlGetCmdAliasDir(char *pszAliasDir, int iMaxPath, int iFinalSlash);
  83. int USmlGetCmdAliasFile(char const *pszDomain, char const *pszUser, char *pszAliasFile);
  84. int USmlIsCmdAliasAccount(char const *pszDomain, char const *pszUser, char *pszAliasFile = NULL);
  85. int USmlGetCmdAliasSpoolFile(QUEUE_HANDLE hQueue, QMSG_HANDLE hMessage, char *pszAliasFilePath);
  86. int USmlGetCmdAliasCustomFile(SPLF_HANDLE hFSpool, QUEUE_HANDLE hQueue,
  87.       QMSG_HANDLE hMessage, char const *pszDomain, char const *pszUser,
  88.       char *pszAliasFilePath);
  89. int USmlDomainCustomFileName(char const *pszDestDomain, char *pszCustFilePath);
  90. int USmlGetDomainCustomFile(char const *pszDestDomain, char *pszCustFilePath);
  91. int USmlCreateCmdAliasDomainDir(char const *pszDomain);
  92. int USmlDeleteCmdAliasDomainDir(char const *pszDomain);
  93. int USmlGetDomainCustomSpoolFile(QUEUE_HANDLE hQueue, QMSG_HANDLE hMessage,
  94.  char *pszCustFilePath);
  95. int USmlGetUserCustomSpoolFile(QUEUE_HANDLE hQueue, QMSG_HANDLE hMessage, char *pszCustFilePath);
  96. int USmlGetDomainMsgCustomFile(SPLF_HANDLE hFSpool, QUEUE_HANDLE hQueue,
  97.        QMSG_HANDLE hMessage, char const *pszDestDomain,
  98.        char *pszCustFilePath);
  99. int USmlGetCustomDomainFile(char const *pszDestDomain, char const *pszCustFilePath);
  100. int USmlSetCustomDomainFile(char const *pszDestDomain, char const *pszCustFilePath);
  101. int USmlCustomizedDomain(char const *pszDestDomain);
  102. int USmlLogMessage(SPLF_HANDLE hFSpool, char const *pszMedium, char const *pszParam);
  103. int USmlParseAddress(char const *pszAddress, char *pszPreAddr,
  104.      int iMaxPreAddress, char *pszEmailAddr, int iMaxAddress);
  105. int USmlDeliverFetchedMsg(char const *pszSyncAddr, const char *pszFetchHdrTags,
  106.   char const *pszMailFile);
  107. int USmlMailLoopCheck(SPLF_HANDLE hFSpool, SVRCFG_HANDLE hSvrConfig);
  108. int USmlMessageAuth(SPLF_HANDLE hFSpool, char *pszAuthName, int iSize);
  109. #endif