home *** CD-ROM | disk | FTP | other *** search
/ HaCKeRz KrOnIcKLeZ 3 / HaCKeRz_KrOnIcKLeZ.iso / ufo2 / heavens / hangup32.exe / HANGUP32.FFF < prev    next >
Text File  |  1996-12-15  |  3KB  |  62 lines

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