home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 November / PCWorld_2000-11_cd.bin / Komunik / sambar444 / _SETUP.1 / fwdmail.stm < prev    next >
Text File  |  2000-09-06  |  2KB  |  38 lines

  1. <!--- use the signature defined by the user or a default one --->
  2. <RCif RCPsignature ! null>
  3. <RC$append1 = RCPsignature>
  4. <RCelse>
  5. <RC$append1 = _______________________________________
  6. RCPname
  7. >
  8. <RCendif>
  9.  
  10. <RC$append2 = _______________________________________________________________________
  11. PowerSig 1.1 - Powered by Sambar Webmail - http://www.sambar.com)>
  12. <!--- Sprintf is used to format the email address. --->
  13. <RC$append3 = RC@sprintf("Verified account: %s at nospam.%s", RCEusername, RCEmailname)>
  14.  
  15. <!--- Format the append string --->
  16. <RC$append = RC@sprintf("%s\n%s\n%s\n", RC$append1, RC$append2, RC$append3)>
  17.  
  18. <!--- Conditional Send example: disallow executables as attachments.
  19. This is provided as an example on how to disallow certain features in a webmail application.
  20. The "Right" scalar is used to retrieve the extension.
  21. Then a case-insensitive check is done, on the extension. --->
  22. <RC$extension = RC@right(RC$filename, 5)>
  23. <RCif RC@igrep(RC$extension, .exe) ! -1>
  24.     <RCredirect illegal.stm?error=attachment&detected=exe>
  25. <RCelseif RC@igrep(RC$extension, .bat) ! -1>
  26.     <RCredirect illegal.stm?error=attachment&detected=bat>
  27. <RCelseif RC@igrep(RC$extension, .com) ! -1>
  28.     <RCredirect illegal.stm?error=attachment&detected=com>
  29. <RCelse>
  30. <RCXmailforward to=RC$to from=RC$from cc=RC$cc bcc=RC$bcc subj=RC$subj body=RC$body append=RC$append msgno=RC$msgno folder=RCSfolder>
  31. <RCendif>
  32. <!--- Conditional redirect --->
  33. <RCif RC$popup = true>
  34.     <RCredirect closer.htm>
  35. <RCelse>
  36.     <RCredirect webmail.stm?start=RC$start>
  37. <RCendif>
  38.