home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / win3x / pgpjn.exe / PGPJNP.FFF < prev    next >
Encoding:
Text File  |  1995-12-11  |  3.4 KB  |  71 lines

  1. ;
  2. ; Form Fact File for the sample Pegasus Mail Sample Encryptor Extension.
  3. ; Pegasus Mail System, Copyright 1990-95 David Harris, all rights reserved.
  4. ;
  5. ; FFFs are examined by Pegasus Mail at startup and are used to determine
  6. ; what forms resources are available to users. WinPMail scans the following
  7. ; locations when looking for FFFs -
  8. ;
  9. ;    * The user's home mailbox
  10. ;    * The base directory (ie, where WINPMAIL.EXE resides)
  11. ;    * If present, the directory indicated by an FFF environment variable.
  12. ;
  13. ; An FFF may contain definitions for as many forms as you wish - in general
  14. ; terms, system-wide FFFs are best defined in a single file since this will
  15. ; speed the startup of the program, but the ability to have multiple FFFs
  16. ; can make for much simpler installation of new forms.
  17. ;
  18. ; -------------------------------------------------------------------------
  19. ; WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING
  20. ; -------------------------------------------------------------------------
  21. ; WinPMail forms are executable code! You should never load forms onto your
  22. ; system unless you are absolutely certain of their pedigree, because they
  23. ; are a perfect vehicle for trojan horses.
  24. ; -------------------------------------------------------------------------
  25. ;
  26. ; The following keywords are recognized in this file:
  27. ;
  28. ; "Form name"      - The name which should appear in the form selector list
  29. ; "Form DLL"       - Full path to the DLL containing the form's code
  30. ; "Form type"      - COMPOSER, READER or ENCRYPTOR
  31. ; "Form flags"     - A bitmap value - see below
  32. ; "Form tagname"   - Form's registered tagname written into outgoing mail
  33. ; "Form data"      - Any custom data required by the form
  34. ; "End"            - End of definition - add the form to the form list.
  35. ;
  36. ; "Form triggers"  - only valid for READERS - what should activate the form
  37. ;
  38. ; "Form flags" is a bitmap composed of the following bits:
  39. ;
  40. ;  Mnemonic     Value   Meaning
  41. ;  ----------------------------------------------------------------
  42. ;  WPM_STARTUP    1     Load the extension when WinPMail starts up
  43. ;  WPM_NOLIST     2     Do not show in the "Extensions" window list      X
  44. ;  WPM_HIDDEN     4     Hide the parent MDI window on loading            X
  45. ;  WPM_LOGGING    8     Extension wants to receive logging events
  46. ;  WPM_ONEONLY   16     Only allow one running instance at any time
  47. ;
  48. ;  The following flag values can be used by encryptor extensions:
  49. ;
  50. ;  CAN_ENCRYPT     256   Module can encrypt messages                     X
  51. ;  CAN_DECRYPT     512   Module can decrypt messages                     X
  52. ;  CAN_SIGN       1024   Module can add digital signatures to messages   X
  53. ;  CAN_VALIDATE   2048   Module can verify digital signatures            X
  54. ;  HAS_INTERFACE  4096   Module has a key management user interface      X
  55. ;  NEEDS_BURSTING 8192   Module requires one message per recipient       X
  56. ;
  57. ;  Various flags can be combined by adding (or ORing) the values
  58. ;  together - so to have a hidden extension which loads at startup,
  59. ;  is interested in logging events, and does not appear in the
  60. ;  "Extensions" window, you would use 1 + 2 + 4 + 8 = 15
  61. ;
  62.  
  63. Form name = "(JN) PGP Public Key"
  64. Form DLL = ~a\FORMS\PGPJN\PGPJN.DLL
  65. Form type = ENCRYPTOR
  66. Form flags = 16134
  67. Form tagname = "JN-PGP-P"
  68. Form triggers = "-----BEGIN PGP MESSAGE*"
  69. Form data = ""
  70. End
  71.