home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / cginb130.zip / example.usr < prev    next >
Text File  |  1997-11-14  |  977b  |  50 lines

  1. # Metasymbols which can be used in templates:
  2. # $d - number of the message
  3. # $rn - remote name
  4. # $ra - remote adr
  5. # $t - time
  6. # $va - all variables should be appeared here (only for ShowEntryTemplate)
  7. # $vn - name of current VAR in ShowVariableTemplate
  8. # $vv - value of current VAR in ShowVariableTemplate
  9.  
  10. Title = "Main notebook"
  11.  
  12. WrapLongLines = 64
  13.  
  14. # link *://*
  15. LinkUrl = Yes
  16.  
  17. # template to show one entry
  18. BeginShowEntryTemplate =
  19. <H3><CENTER>
  20. <P>
  21. <P>$n. <B>Message from: $rn</B>
  22. </CENTER></H3>
  23. $va
  24. <P>
  25. EndShowEntryTemplate
  26.  
  27. # template to show one variable, for all variables
  28. BeginShowVariableTemplate =
  29. <P>
  30. <CENTER>
  31. <I><B>$vn</I></B>:<BR>
  32. </CENTER>
  33. <pre>
  34. $vv
  35. </pre>
  36. EndShowVariableTemplate
  37.  
  38. # template to show E-mail variable
  39. BeginShowVariableTemplate = E-mail
  40. <P>
  41. <CENTER>
  42. <I><B>Email address</I></B>: <A href="mailto:$vv">$vv</A><BR>
  43. </CENTER>
  44. EndShowVariableTemplate
  45.  
  46. Access
  47. # only localhost
  48. E-mail = 127.0.0.1
  49. EndAccess
  50.