home *** CD-ROM | disk | FTP | other *** search
/ Freelog 11 / Freelog011.iso / BestOf / Pegasus / French / fr32-312.exe / WLDAP32.FFR < prev    next >
Text File  |  2000-01-10  |  3KB  |  73 lines

  1. ;
  2. ; Form Fact File for the sample Pegasus Mail 32-bit LDAP Interface extension
  3. ; Pegasus Mail System, Copyright 1990-98 David Harris, all rights reserved.
  4. ; Portions of this extension copyright (c) Netscape Communications, Inc.
  5. ;
  6. ; FFFs are examined by Pegasus Mail at startup and are used to determine
  7. ; what forms resources are available to users. WinPMail scans the following
  8. ; locations when looking for FFFs -
  9. ;
  10. ;    * The user's home mailbox
  11. ;    * The base directory (ie, where WINPMAIL.EXE resides)
  12. ;    * If present, the directory indicated by an FFF environment variable.
  13. ;
  14. ; An FFF may contain definitions for as many forms as you wish - in general
  15. ; terms, system-wide FFFs are best defined in a single file since this will
  16. ; speed the startup of the program, but the ability to have multiple FFFs
  17. ; can make for much simpler installation of new forms.
  18. ;
  19. ; -------------------------------------------------------------------------
  20. ; WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING
  21. ; -------------------------------------------------------------------------
  22. ; WinPMail forms are executable code! You should never load forms onto your
  23. ; system unless you are absolutely certain of their pedigree, because they
  24. ; are a perfect vehicle for trojan horses.
  25. ; -------------------------------------------------------------------------
  26. ;
  27. ; The following keywords are recognized in this file:
  28. ;
  29. ; "Form name"      - The name which should appear in the form selector list
  30. ; "Form DLL"       - Full path to the DLL containing the form's code
  31. ; "Form type"      - Either COMPOSER or READER
  32. ; "Form flags"     - A bitmap value - see below
  33. ; "Form tagname"   - Form's registered tagname written into outgoing mail
  34. ; "Form data"      - Any custom data required by the form
  35. ; "32-bit model"   - Indicates that the extension is for WinPMail/32
  36. ; "End"            - End of definition - add the form to the form list.
  37. ;
  38. ; "Form triggers"  - only valid for READERS - what should activate the form
  39. ;
  40. ; "Form flags" is a bitmap composed of the following bits:
  41. ;
  42. ;  Mnemonic     Value   Meaning
  43. ;  ----------------------------------------------------------------
  44. ;  WPM_STARTUP    1     Load the extension when WinPMail starts up
  45. ;  WPM_NOLIST     2     Do not show in the "Extensions" window list
  46. ;  WPM_HIDDEN     4     Hide the parent MDI window on loading
  47. ;  WPM_LOGGING    8     Extension wants to receive logging events
  48. ;  WPM_ONEONLY   16     Only allow one running instance at any time
  49. ;  WPM_FIRSTRUN  32     Autoload extension on first-ever WinPMail run
  50. ;  WPM_USES_TCP  64     Extension requires TCP/IP services to run
  51. ;
  52. ;  Various flags can be combined by adding (or ORing) the values
  53. ;  together - so to have a hidden extension which loads at startup,
  54. ;  is interested in logging events, and does not appear in the
  55. ;  "Extensions" window, you would use 1 + 2 + 4 + 8 = 15
  56. ;
  57. ; "Extended flags" is a bitmap containing extra options for the extension:
  58. ;  WPMX_ASERVER   1     Add the extension to the "Addresses" menu
  59. ;  WPMX_COMPOSER  2     Add the extension to the "New message" submenu
  60.  
  61. Form name = "Client LDAP"
  62. Form DLL = ~a\WLDAP32.DLL
  63. Form type = COMPOSER
  64. Form flags = 80
  65. Extended flags = 1
  66. Form tagname = "PM-LDAP"
  67. 32-bit model = 1
  68.  
  69. ; You can enter a default LDAP server in the "Form Data" field
  70.  
  71. Form data = ""
  72. End
  73.