windows-nt/Source/XPSP1/NT/inetsrv/iis/admin/adsi/adsiis/pop3s.h
2020-09-26 16:20:57 +08:00

122 lines
4.4 KiB
C

/**********************************************************************/
/** Microsoft Windows NT **/
/** Copyright(c) Microsoft Corp., 1993 **/
/**********************************************************************/
/*
POP3S.h
This file contains constants & type definitions shared between the
POP3 Service, Installer, and Administration UI.
FILE HISTORY:
KeithMo 10-Mar-1993 Created.
*/
#ifndef _POP3S_H_
#define _POP3S_H_
#ifdef __cplusplus
extern "C"
{
#endif // _cplusplus
#if !defined(MIDL_PASS)
#include <winsock.h>
#endif
///////////////////////////////////////////////////////////////////////////////////////
//
// POP3 Metabase Properties
//
#define IIS_MD_POP3_SERVICE_BASE (POP3_MD_ID_BEGIN_RESERVED + 500)
//
// Metabase path: /LM/Pop3Svc
//
#define MD_POP3_SERVICE_VERSION (IIS_MD_POP3_SERVICE_BASE + 0)
#define MD_POP3_UPDATED_DEFAULT_DOMAIN (IIS_MD_POP3_SERVICE_BASE + 2)
/*
Standard properties used here:
MD_CONNECTION_TIMEOUT
MD_MAX_CONNECTION
MD_SERVER_COMMENT
MD_SERVER_AUTOSTART
MD_SERVER_SIZE
MD_SERVER_LISTEN_BACKLOG
MD_SERVER_BINDINGS
MD_SECURE_PORT
MD_LOGON_METHOD
MD_AUTHORIZATION
MD_LOG_TYPE
MD_LOGFILE_DIRECTORY
MD_LOGFILE_PERIOD
MD_LOGFILE_TRUNCATE_SIZE
MD_NTAUTHENTICATION_PROVIDERS
*/
#define IIS_MD_POP3_BASE (POP3_MD_ID_BEGIN_RESERVED)
//
// Metabase path: /LM/Pop3Svc/<inst#>/Root/<vroot>
//
#define MD_POP3_EXPIRE_MAIL (IIS_MD_POP3_BASE + 0)
#define MD_POP3_EXPIRE_MSG_HOURS (IIS_MD_POP3_BASE + 1)
/*
Standard properties used here:
MD_VR_PATH
MD_VR_USERNAME
MD_VR_PASSWORD
*/
//
// Metabase path: /LM/Pop3Svc/<inst#>/Parameters
//
#define IIS_MD_POP3_PARAMS_BASE (POP3_MD_ID_BEGIN_RESERVED + 200)
#define MD_POP3_CMD_LOG_FLAGS (IIS_MD_POP3_PARAMS_BASE + 0)
#define MD_POP3_NO_TRANSMITFILES (IIS_MD_POP3_PARAMS_BASE + 1)
#define MD_POP3_STATIC_BUFFER_SIZE (IIS_MD_POP3_PARAMS_BASE + 2)
#define MD_POP3_FILE_IO_BUFFER_SIZE (IIS_MD_POP3_PARAMS_BASE + 3)
#define MD_POP3_MAX_OUTSTANDING_IO (IIS_MD_POP3_PARAMS_BASE + 4)
#define MD_POP3_SHARING_RETRY_ATTEMPTS (IIS_MD_POP3_PARAMS_BASE + 5)
#define MD_POP3_SHARING_RETRY_SLEEP (IIS_MD_POP3_PARAMS_BASE + 6)
#define MD_POP3_MSGS_PER_MAILBAG (IIS_MD_POP3_PARAMS_BASE + 7)
#define MD_POP3_BUFFERED_WRITES (IIS_MD_POP3_PARAMS_BASE + 9)
#define MD_POP3_SEND_BUFFER_SIZE (IIS_MD_POP3_PARAMS_BASE + 10)
#define MD_POP3_RECV_BUFFER_SIZE (IIS_MD_POP3_PARAMS_BASE + 11)
#define MD_POP3_MAX_NUM_CONNECTIONS (IIS_MD_POP3_PARAMS_BASE + 12)
#define MD_POP3_MAX_MAILBAG_INSTANCES (IIS_MD_POP3_PARAMS_BASE + 13)
#define MD_POP3_ROUTING_SOURCE (IIS_MD_POP3_PARAMS_BASE + 14)
#define MD_POP3_INFO_MAX_ERRORS (IIS_MD_POP3_PARAMS_BASE + 15)
#define MD_POP3_DEFAULT_DOMAIN_VALUE (IIS_MD_POP3_PARAMS_BASE + 16)
#define MD_POP3_ROUTING_DLL (IIS_MD_POP3_PARAMS_BASE + 17)
#define MD_POP3_EXPIRE_DELAY (IIS_MD_POP3_PARAMS_BASE + 18)
#define MD_POP3_EXPIRE_START (IIS_MD_POP3_PARAMS_BASE + 19)
#define MD_POP3_EXPIRE_DIRS_MAX (IIS_MD_POP3_PARAMS_BASE + 20)
#define MD_POP3_EXPIRE_INSTANCE_MAIL (IIS_MD_POP3_PARAMS_BASE + 21)
#define MD_POP3_CLEARTEXT_AUTH_PROVIDER (IIS_MD_POP3_PARAMS_BASE + 22)
#define MD_POP3_DS_TYPE (IIS_MD_POP3_PARAMS_BASE + 23)
#define MD_POP3_DS_DATA_DIRECTORY (IIS_MD_POP3_PARAMS_BASE + 24)
#define MD_POP3_DS_DEFAULT_MAIL_ROOT (IIS_MD_POP3_PARAMS_BASE + 25)
#define MD_POP3_DS_BIND_TYPE (IIS_MD_POP3_PARAMS_BASE + 26)
#define MD_POP3_DS_SCHEMA_TYPE (IIS_MD_POP3_PARAMS_BASE + 27)
#define MD_POP3_DS_HOST (IIS_MD_POP3_PARAMS_BASE + 28)
#define MD_POP3_DS_NAMING_CONTEXT (IIS_MD_POP3_PARAMS_BASE + 29)
#define MD_POP3_DS_ACCOUNT (IIS_MD_POP3_PARAMS_BASE + 30)
#define MD_POP3_DS_PASSWORD (IIS_MD_POP3_PARAMS_BASE + 31)
#define MD_POP3_DS_MAX_RESOLVE_BUFFERS (IIS_MD_POP3_PARAMS_BASE + 32)
#define MD_POP3_DS_MAX_VIRTUAL_SERVERS (IIS_MD_POP3_PARAMS_BASE + 33)
#define MD_POP3_DS_MAX_HANDLE_CACHE_ENTRIES (IIS_MD_POP3_PARAMS_BASE + 34)
#define MD_POP3_DS_SORT_THRESHOLD (IIS_MD_POP3_PARAMS_BASE + 35)
#ifdef __cplusplus
}
#endif // _cplusplus
#endif // _POP3S_H_