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

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 _POP3UTILS_H
  23. #define _POP3UTILS_H
  24. #define INVALID_POP3_HANDLE         ((POP3_HANDLE) 0)
  25. #define AUTH_TYPE_CLEAR             "CLR"
  26. #define AUTH_TYPE_APOP              "APOP"
  27. #define POP3_USER_SPLITTERS         "@:"
  28. typedef struct POP3_HANDLE_struct {
  29. } *POP3_HANDLE;
  30. struct PopSyncReport {
  31. int iMsgSync;
  32. int iMsgErr;
  33. unsigned long ulSizeSync;
  34. unsigned long ulSizeErr;
  35. };
  36. struct PopLastLoginInfo {
  37. SYS_INET_ADDR Address;
  38. time_t LTime;
  39. };
  40. int UPopGetMailboxSize(UserInfo * pUI, unsigned long &ulMBSize, unsigned long &ulNumMessages);
  41. int UPopCheckMailboxSize(UserInfo * pUI, unsigned long *pulAvailSpace = NULL);
  42. int UPopAuthenticateAPOP(const char *pszDomain, const char *pszUsrName,
  43.  const char *pszTimeStamp, const char *pszDigest);
  44. POP3_HANDLE UPopBuildSession(const char *pszDomain, const char *pszUsrName,
  45.      const char *pszUsrPass, SYS_INET_ADDR const *pPeerInfo);
  46. void UPopReleaseSession(POP3_HANDLE hPOPSession, int iUpdate = 1);
  47. char *UPopGetUserInfoVar(POP3_HANDLE hPOPSession, const char *pszName,
  48.  const char *pszDefault = NULL);
  49. int UPopGetSessionMsgCurrent(POP3_HANDLE hPOPSession);
  50. int UPopGetSessionMsgTotal(POP3_HANDLE hPOPSession);
  51. unsigned long UPopGetSessionMBSize(POP3_HANDLE hPOPSession);
  52. int UPopGetSessionLastAccessed(POP3_HANDLE hPOPSession);
  53. int UPopGetMessageSize(POP3_HANDLE hPOPSession, int iMsgIndex, unsigned long &ulMessageSize);
  54. int UPopGetMessageUIDL(POP3_HANDLE hPOPSession, int iMsgIndex, char *pszMessageUIDL);
  55. int UPopDeleteMessage(POP3_HANDLE hPOPSession, int iMsgIndex);
  56. int UPopResetSession(POP3_HANDLE hPOPSession);
  57. int UPopSendErrorResponse(BSOCK_HANDLE hBSock, int iErrorCode, int iTimeout);
  58. int UPopSessionSendMsg(POP3_HANDLE hPOPSession, int iMsgIndex, BSOCK_HANDLE hBSock);
  59. int UPopSessionTopMsg(POP3_HANDLE hPOPSession, int iMsgIndex, int iNumLines, BSOCK_HANDLE hBSock);
  60. int UPopSaveUserIP(POP3_HANDLE hPOPSession);
  61. int UPopSyncRemoteLink(const char *pszSyncAddr, const char *pszRmtServer,
  62.        const char *pszRmtName, const char *pszRmtPassword,
  63.        PopSyncReport * pSRep,
  64.        const char *pszFetchHdrTags = "+X-Deliver-To,To,Cc",
  65.        const char *pszAuthType = AUTH_TYPE_CLEAR,
  66.        const char *pszErrorAccount = NULL);
  67. int UPopUserIpCheck(UserInfo * pUI, SYS_INET_ADDR const *pPeerInfo, unsigned int uExpireTime);
  68. int UPopGetLastLoginInfo(UserInfo *pUI, PopLastLoginInfo *pInfo);
  69. #endif