home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1997 January / dpcb197.iso / internet / PEGASUS / TPHONE.FFF < prev    next >
Text File  |  1996-03-16  |  3KB  |  57 lines

  1. ;
  2. ; Form Fact File for the sample Pegasus Mail telephone message form
  3. ; Pegasus Mail System, Copyright 1990-94 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"      - Either COMPOSER or READER
  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. ; "Bitmap file"    - Optional bitmap for button-panel launch control
  35. ; "End"            - End of definition - add the form to the form list.
  36. ;
  37. ; "Form triggers"  - only valid for READERS - what should activate the form
  38.  
  39. ; The TPHONE extension allows you to set the default state of the
  40. ; "urgent" and "copyself" flags and to include a default area code in
  41. ; the "data" field. The format for the data field is either a 'Y' or an
  42. ; 'N' to indicate the urgent status, followed by a single space, followed
  43. ; by a 'Y' or 'N' to indicate that a copy-to-self is required, followed by
  44. ; a single space, followed by the default area code. The example below
  45. ; turns the urgent flag on, turns on copies to self and sets the default
  46. ; area code to "408".
  47.  
  48. Form name = "Telephone message"
  49. Form DLL = ~a\TPHONE.DLL
  50. Form type = COMPOSER
  51. Form flags = 0
  52. Form tagname = "PM-TPHONE"
  53. Form data = "N Y 408"
  54. Bitmap file = ~a\tphone.bmp,Compose a telephone message
  55. End
  56.  
  57.