MSFS.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:17k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #if !defined( _MSFS_H )
  2. #define _MSFS_H
  3. /*
  4.  *  M S F S . H
  5.  *
  6.  *
  7.  *  Copyright (C) Microsoft Corp. 1986-1999.  All Rights Reserved.
  8.  *
  9.  *
  10.  *  Definitions used by the the Microsoft Mail transport, address book
  11.  *  and shared folder service providers.
  12.  *
  13.  *  The following MSFS defined properties are configurable via ConfigureMsgService()
  14.  *  calls.  They are grouped by function.
  15.  *
  16.  *  C o n n e c t i o n   P r o p e r t i e s
  17.  *
  18.  *  PR_CFG_SERVER_PATH
  19.  *      --  The path to the users post office.  Mapped network drives, UNC and NETWARE paths
  20.  *          are acceptable.  NETWARE paths of the type NWServer/share:dirdir1 are converted to 
  21.  *          UNC paths of the type \NWServersharedirdir1. 
  22.  *
  23.  *  PR_CFG_MAILBOX
  24.  *      --  The users mailbox name.  eg. in a NET/PO/USER address,
  25.  *          this is USER.  The maximum mailbox name is 10 characters.
  26.  *
  27.  *  PR_CFG_PASSWORD
  28.  *      --  The users mailbox password.  The maximum password is 8 characters.
  29.  *
  30.  *  PR_CFG_REMEMBER
  31.  *      --  A boolean value indicating whether the users password is
  32.  *          to be remembered in the profile or not.  This is useful because
  33.  *          if the password is remembered the user can bypass the logon prompt
  34.  *          if his server path, mailbox name and password are all supplied.
  35.  *
  36.  *  PR_CFG_CONN_TYPE
  37.  *      --  The connection type.  This may be one of CFG_CONN_AUTO, CFG_CONN_LAN,
  38.  *          CFG_CONN_REMOTE, CFG_CONN_OFFLINE as defined below.
  39.  *
  40.  *          CFG_CONN_AUTO       --  Automatically detect whether the connection type is LAN or REMOTE.
  41.  *                                  This connection type is only available on Win95.
  42.  *          CFG_CONN_LAN        --  LAN type connection.  Used to connect to the post office using a
  43.  *                                  UNC path or pre-existing mapped drive.
  44.  *          CFG_CONN_REMOTE     --  Dial up connection using Dial-up Networking.
  45.  *          CFG_CONN_OFFLINE    --  Not connected.
  46.  *
  47.  *  PR_CFG_SESSION_LOG
  48.  *      --  A boolean value indicating whether session logging
  49.  *          is on or off.
  50.  *
  51.  *  PR_CFG_SESSION_LOG_FILE
  52.  *      --  The path to the session log file.
  53.  *
  54.  *  D e l i v e r y   P r o p e r t i e s
  55.  *
  56.  *  PR_CFG_ENABLE_UPLOAD
  57.  *      --  A boolean value which indicates whether mail in the outbox
  58.  *          is sent.
  59.  *
  60.  *  PR_CFG_ENABLE_DOWNLOAD
  61.  *      --  A boolean value which indicates whether mail in the server
  62.  *          mailbag is downloaded.
  63.  *
  64.  *  PR_CFG_UPLOADTO
  65.  *      --  A bit array which allows the user to indicate which addresses
  66.  *          for which the transport is to attempt delivery.  This is useful
  67.  *          in order to allow a user to specify that a transport only handle
  68.  *          delivery for a subset of the addresses it can really process.
  69.  *          When multiple transports are installed and the user wants a
  70.  *          different transport to handle some specific address types they
  71.  *          can use this bit array to specify that the MSMAIL transport
  72.  *          only handle a specific set of addresses.
  73.  *
  74.  *          Possible values as defined below include:
  75.  *
  76.  *          CFG_UPLOADTO_PCMAIL     --  Local Post Office and External Post Office address types
  77.  *          CFG_UPLOADTO_PROFS      --  PROFS address types
  78.  *          CFG_UPLOADTO_SNADS      --  SNADS address types
  79.  *          CFG_UPLOADTO_OV         --  OfficeVision address types
  80.  *          CFG_UPLOADTO_MCI        --  MCI address types
  81.  *          CFG_UPLOADTO_X400       --  X.400 address types
  82.  *          CFG_UPLOADTO_FAX        --  FAX address types
  83.  *          CFG_UPLOADTO_MHS        --  MHS address types
  84.  *          CFG_UPLOADTO_SMTP       --  SMTP address types
  85.  *          CFG_UPLOADTO_MACMAIL    --  MacMail address types
  86.  *          CFG_UPLOADTO_ALL        --  All of the above address types
  87.  *
  88.  *
  89.  *  PR_CFG_NETBIOS_NTFY
  90.  *      --  A boolean value which indicates whether a netbios notification
  91.  *          is sent to a recipients transport when mail is delivered to
  92.  *          their server inbox.
  93.  *
  94.  *  PR_CFG_SPOOLER_POLL
  95.  *      --  The polling interval in minutes when the transport
  96.  *          checks for new mail.  1 <= polling interval <= 9999
  97.  *
  98.  *  PR_CFG_GAL_ONLY
  99.  *      --  A boolean value which, if TRUE, only displays the Microsoft Mail Global Address
  100.  *          list for name selection.  The Postoffice list, external post office lists, and gateway
  101.  *          address lists are not shown.
  102.  *
  103.  *  F a s t  L A N  P r o p e r t i e s
  104.  *
  105.  *  PR_CFG_LAN_HEADERS
  106.  *      --  A boolean value which indicates whether the user wants to enable
  107.  *          headers while working on the LAN.  Headers mode allows the user
  108.  *          to download message headers and selectively choose which mail
  109.  *          to download.
  110.  *
  111.  *  PR_CFG_LAN_LOCAL_AB
  112.  *      --  A boolean value which indicates whether the user wants to use
  113.  *          name resolution based on a local copy of the server address book
  114.  *          rather than the server address book itself.
  115.  *
  116.  *  PR_CFG_LAN_EXTERNAL_DELIVERY
  117.  *      --  A boolean value which indicates whether EXTERNAL.EXE, a server process, should be used
  118.  *          to deliver submitted mail messages.  This is sometimes useful when mail is running 
  119.  *          on a slow LAN connection.
  120.  *
  121.  *  S l o w  L A N  P r o p e r t i e s
  122.  *
  123.  *  PR_CFG_RAS_HEADERS
  124.  *      --  A boolean value which indicates whether the user wants to enable
  125.  *          headers while working over a slow speed link.  Headers mode
  126.  *          allows the user to download message headers and selectively
  127.  *          choose which mail to download.
  128.  *
  129.  *  PR_CFG_RAS_LOCAL_AB
  130.  *      --  A boolean value which indicates whether the user wants to use
  131.  *          name resolution based on a local copy of the server address book
  132.  *          rather than the server address book itself.
  133.  *
  134.  *  PR_CFG_RAS_EXTERNAL_DELIVERY
  135.  *      --  A boolean value which indicates whether EXTERNAL.EXE, a server process, should be used
  136.  *          to deliver submitted mail messages.  This speeds up message delivery when mail is
  137.  *          running on a Dial-up network connection.
  138.  *
  139.  *  PR_CFG_RAS_INIT_ON_START
  140.  *      --  A boolean value which indicates that a Dial-up Network connection should
  141.  *          be established when the transport provider starts up.
  142.  *
  143.  *  PR_CFG_RAS_TERM_ON_HDRS
  144.  *      --  A boolean value which indicates that a Dial-up Network connection should
  145.  *          be automatically terminated when headers are finished downloading.
  146.  *
  147.  *  PR_CFG_RAS_TERM_ON_XFER
  148.  *      --  A boolean value which indicates that a Dial-up Network connection should
  149.  *          be automatically terminated after mail has finished being sent
  150.  *          received.
  151.  *
  152.  *  PR_CFG_RAS_TERM_ON_EXIT
  153.  *      --  A boolean value which indicates that a Dial-up Network connection should
  154.  *          be automatically terminated when the provider is exited.
  155.  *
  156.  *  PR_CFG_RAS_PROFILE
  157.  *      --  The name of the Dial-up Network profile that the transport will use by
  158.  *          default to attempt the connection.
  159.  *
  160.  *  PR_CFG_RAS_RETRYATTEMPTS
  161.  *      --  Number of times to attempt dial for connection.
  162.  *          1 <= retry attempts <= 9999
  163.  *
  164.  *  PR_CFG_RAS_RETRYDELAY
  165.  *      --  Delay between retry attempts in seconds.
  166.  *          30 <= retry delay <= 9999
  167.  *
  168.  *  PR_CFG_RAS_CONFIRM
  169.  *      --  A value which determines whether, at connection time, the
  170.  *          user should be prompted to select a Dial-up Network connection.
  171.  *          Possible values as defined below include:
  172.  *          CFG_ALWAYS      --  Always use the default Dial-up Network profile.
  173.  *                              Never prompt the user.
  174.  *          CFG_ASK_FIRST   --  Prompt the user to select a profile on the
  175.  *                              first connection or after any error occurs.
  176.  *          CFG_ASK_EVERY   --  Always prompt the user to select the 
  177.  *                              Dial-up Network profile.
  178.  *
  179.  *  S c h e d u l e d   S e s s i o n   P r o p e r t i e s 
  180.  *
  181.  *  PR_CFG_SCHED_SESS
  182.  *      --  A property that contains information on scheduled sessions.  The
  183.  *          maximum number of entries that may be stored is CFG_SS_MAX.  The
  184.  *          information is stored in the data structure SchedSess.
  185.  *
  186.  *          typedef struct SchedSess {
  187.  *              USHORT          sSessType;
  188.  *              USHORT          sDayMask;
  189.  *              FILETIME        ftTime;
  190.  *              FILETIME        ftStart;
  191.  *              ULONG           ulFlags;
  192.  *              TCHAR           szPhoneEntry[RAS_MaxEntryName+1];
  193.  *          } SCHEDSESS, FAR *LPSCHEDSESS;
  194.  *      
  195.  *          SchedSess.sSessType can be one of CFG_SS_ONCE, CFG_SS_WEEKLY, or  CFG_SS_EVERY.
  196.  *         
  197.  *              CFG_SS_ONCE     is a session that is scheduled to execute only once on a specific
  198.  *                              date and time.
  199.  *
  200.  *              CFG_SS_WEEKLY   is a session that is scheduled to execute at a specific time on any
  201.  *                              of a given specified set of days during the week.
  202.  *      
  203.  *              CFG_SS_EVERY    is a session that is scheduled to execute at regularly scheduled 
  204.  *                              intervals of time.
  205.  *
  206.  *          SchedSess.sDayMask is only used when SchedSess.sSessType is set to CFG_SS_WEEKLY.  
  207.  *          SchedSess.sDayMask can be any combination of CFG_SS_SUN, CFG_SS_MON, CFG_SS_TUE, 
  208.  *          CFG_SS_WED, CFG_SS_THU, CFG_SS_FRI, or CFG_SS_SAT.
  209.  *
  210.  *          SchedSess.ftTime varies depending on the SchedSess.sSessType as follows:
  211.  *          
  212.  *                  SchedSess.sSessType             SchedSess.ftTime
  213.  *          
  214.  *                  CFG_SS_ONCE                     Date/time for the single scheduled session
  215.  *                  CFG_SS_WEEKLY                   Time for any weekly scheduled sessions
  216.  *                  CFG_SS_EVERY                    Duration between re-occuring scheduled sessions
  217.  *
  218.  *          SchedSess.ftStart is only used as the initial start time for sessions of type CFG_SS_EVERY.
  219.  *
  220.  *          SchedSess.ulFlags is currently unused and is reserved for future use.
  221.  *
  222.  *          SchedSess.szPhoneEntry is the name of the Dial-up Networking connection to use
  223.  *          when the session is scheduled to execute.  The Dial-up Network connection contains
  224.  *          the phone number and other relevent information needed to perform the connection.
  225.  *
  226.  *          Note:   All FILETIME structure members should always use local time.  ie. GetLocalTime()
  227.  *                  returns a SYSTEMTIME structure which can then be converted to FILETIME via 
  228.  *                  SystemTimetoFileTime().
  229.  */
  230. #include <ras.h>
  231. #include <mapitags.h>
  232. /*
  233.  * Connection Properties
  234.  */
  235. #define PR_CFG_SERVER_PATH              PROP_TAG (PT_STRING8,   0x6600)
  236. #define PR_CFG_MAILBOX                  PROP_TAG (PT_STRING8,   0x6601)
  237. // Password must be in the secure property range (See MAPITAGS.H)
  238. #define PR_CFG_PASSWORD                 PROP_TAG (PT_STRING8,   PROP_ID_SECURE_MIN)
  239. #define PR_CFG_CONN_TYPE                PROP_TAG (PT_LONG,      0x6603)
  240. #define     CFG_CONN_LAN            0
  241. #define     CFG_CONN_REMOTE         1
  242. #define     CFG_CONN_OFFLINE        2
  243. #define     CFG_CONN_AUTO           3
  244. #define PR_CFG_SESSION_LOG              PROP_TAG (PT_BOOLEAN,   0x6604)
  245. #define PR_CFG_SESSION_LOG_FILE         PROP_TAG (PT_STRING8,   0x6605)
  246. #define PR_CFG_REMEMBER                 PROP_TAG (PT_BOOLEAN,   0x6606)
  247. /*
  248.  * Delivery Properties
  249.  */
  250. #define PR_CFG_ENABLE_UPLOAD            PROP_TAG (PT_BOOLEAN,   0x6620)
  251. #define PR_CFG_ENABLE_DOWNLOAD          PROP_TAG (PT_BOOLEAN,   0x6621)
  252. #define PR_CFG_UPLOADTO                 PROP_TAG (PT_LONG,      0x6622)
  253. #define     CFG_UPLOADTO_PCMAIL     0x00000001
  254. #define     CFG_UPLOADTO_PROFS      0x00000002
  255. #define     CFG_UPLOADTO_SNADS      0x00000004
  256. #define     CFG_UPLOADTO_MCI        0x00000008
  257. #define     CFG_UPLOADTO_X400       0x00000010
  258. #define     CFG_UPLOADTO_FAX        0x00000040
  259. #define     CFG_UPLOADTO_MHS        0x00000080
  260. #define     CFG_UPLOADTO_SMTP       0x00000100
  261. #define     CFG_UPLOADTO_OV         0x00000800
  262. #define     CFG_UPLOADTO_MACMAIL    0x00001000
  263. #define     CFG_UPLOADTO_ALL        CFG_UPLOADTO_PCMAIL | CFG_UPLOADTO_PROFS | CFG_UPLOADTO_SNADS | 
  264.                                     CFG_UPLOADTO_MCI | CFG_UPLOADTO_X400 | CFG_UPLOADTO_FAX | 
  265.                                     CFG_UPLOADTO_MHS | CFG_UPLOADTO_SMTP | CFG_UPLOADTO_OV | 
  266.                                     CFG_UPLOADTO_MACMAIL
  267. #define PR_CFG_NETBIOS_NTFY             PROP_TAG (PT_BOOLEAN,   0x6623)
  268. #define PR_CFG_SPOOLER_POLL             PROP_TAG (PT_STRING8,   0x6624)
  269. #define PR_CFG_GAL_ONLY             PROP_TAG (PT_BOOLEAN,       0x6625)
  270. /*
  271.  * LAN Properties
  272.  */
  273. #define PR_CFG_LAN_HEADERS              PROP_TAG (PT_BOOLEAN,   0x6630)
  274. #define PR_CFG_LAN_LOCAL_AB             PROP_TAG (PT_BOOLEAN,   0x6631)
  275. #define PR_CFG_LAN_EXTERNAL_DELIVERY    PROP_TAG (PT_BOOLEAN,   0x6632)
  276. /*
  277.  * Dial-up Network Properties
  278.  */
  279. #define PR_CFG_RAS_EXTERNAL_DELIVERY    PROP_TAG (PT_BOOLEAN,   0x6639)
  280. #define PR_CFG_RAS_HEADERS              PROP_TAG (PT_BOOLEAN,   0x6640)
  281. #define PR_CFG_RAS_LOCAL_AB             PROP_TAG (PT_BOOLEAN,   0x6641)
  282. #define PR_CFG_RAS_INIT_ON_START        PROP_TAG (PT_BOOLEAN,   0x6642)
  283. #define PR_CFG_RAS_TERM_ON_HDRS         PROP_TAG (PT_BOOLEAN,   0x6643)
  284. #define PR_CFG_RAS_TERM_ON_XFER         PROP_TAG (PT_BOOLEAN,   0x6644)
  285. #define PR_CFG_RAS_TERM_ON_EXIT         PROP_TAG (PT_BOOLEAN,   0x6645)
  286. #define PR_CFG_RAS_PROFILE              PROP_TAG (PT_STRING8,   0x6646)
  287. #define PR_CFG_RAS_CONFIRM              PROP_TAG (PT_LONG,      0x6647)
  288. #define     CFG_ALWAYS              0
  289. #define     CFG_ASK_FIRST           1
  290. #define     CFG_ASK_EVERY           2
  291. #define PR_CFG_RAS_RETRYATTEMPTS        PROP_TAG (PT_STRING8,   0x6648)
  292. #define PR_CFG_RAS_RETRYDELAY           PROP_TAG (PT_STRING8,   0x6649)
  293. /*
  294.  * Message Header Property
  295.  */
  296. #define PR_CFG_LOCAL_HEADER             PROP_TAG (PT_BOOLEAN,   0x6680)
  297. /*
  298.  * Scheduled Session Properties
  299.  */
  300. #define     CFG_SS_MAX          16
  301. #define     CFG_SS_BASE_ID      0x6700
  302. #define     CFG_SS_MAX_ID       CFG_SS_BASE_ID + CFG_SS_MAX - 1
  303. #define SchedPropTag(n)         PROP_TAG (PT_BINARY, CFG_SS_BASE_ID+(n))
  304. #define PR_CFG_SCHED_SESS       SchedPropTag(0)
  305. typedef struct SchedSess {
  306.     USHORT          sSessType;
  307.     USHORT          sDayMask;
  308.     FILETIME        ftTime;
  309.     FILETIME        ftStart;
  310.     ULONG           ulFlags;
  311.     TCHAR           szPhoneEntry[RAS_MaxEntryName+1];
  312. } SCHEDSESS, FAR *LPSCHEDSESS;
  313. // Day bits
  314. #define     CFG_SS_SUN  0x0001
  315. #define     CFG_SS_MON  0x0002
  316. #define     CFG_SS_TUE  0x0004
  317. #define     CFG_SS_WED  0x0008
  318. #define     CFG_SS_THU  0x0010
  319. #define     CFG_SS_FRI  0x0020
  320. #define     CFG_SS_SAT  0x0040
  321. #define IsDayChecked(sDayMask, nDay)  ( (sDayMask) & (1<<(nDay)) )
  322. // Session types
  323. #define     CFG_SS_EVERY    0
  324. #define     CFG_SS_WEEKLY   1
  325. #define     CFG_SS_ONCE     2
  326. #define     CFG_SS_NULLTYPE 3
  327. // Property range identifiers; useful for asserting
  328. #define PR_CFG_MIN              PROP_TAG (PT_STRING8,   0x6600)
  329. #define PR_CFG_MAX              SchedPropTag(CFG_SS_MAX-1)
  330. // Shared Folder Service Provider Properties
  331. // PR_ASSIGNED_ACCESS - MAPI Access rights given to users other than the owner of the folder
  332. //                      This property can be retrieved and set. The following MAPI access flags
  333. //                      are valid: 
  334. //                          MAPI_ACCESS_READ
  335. //                          (MAPI_ACCESS_CREATE_HIERARCHY | MAPI_ACCESS_CREATE_CONTENTS)
  336. //                          MAPI_ACCESS_DELETE
  337. //  
  338. #define PR_ASSIGNED_ACCESS  PROP_TAG(PT_LONG, 0x66ff)
  339. // PR_OWNER_NAME      - Owner's name of the shared folder.
  340. //                      This property can be retrieved and cannot be set.
  341. //  
  342. #define PR_OWNER_NAME       PROP_TAG(PT_STRING8, 0x66fe)
  343. // SFSP_ACCESS_OWNER -  This flag is returned when PR_ASSIGNED_ACCESS is retrieved by the owner
  344. //                      of the folder. It can not be set.
  345. #define SFSP_ACCESS_OWNER   0x8000
  346. // Unique Provider Identifiers
  347. //
  348. #define MSFS_UID_ABPROVIDER     { 0x00,0x60,0x94,0x64,0x60,0x41,0xb8,0x01, 
  349.                                   0x08,0x00,0x2b,0x2b,0x8a,0x29,0x00,0x00 }
  350. #define MSFS_UID_SFPROVIDER     { 0x00,0xff,0xb8,0x64,0x60,0x41,0xb8,0x01, 
  351.                                   0x08,0x00,0x2b,0x2b,0x8a,0x29,0x00,0x00 }
  352.                                                                             
  353. #endif // _MSFS_H