home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / VMS220.ZIP / ACL / QUEUE.HC < prev   
Encoding:
Text File  |  1993-01-03  |  1.2 KB  |  52 lines

  1. ; The just-queue header conversion, applied to any messages sent when
  2. ; V-MailServer simply queues a message to later processing.  This happens
  3. ; when the "-q" parameter is used, or if there is not enough free disk space
  4. ; available
  5. ;
  6. ; This particular conversion file adds a few headers, and updates the
  7. ; Reply-To: header to refer to the mail server address, instead of
  8. ; the sending address.  It also strips unnecessary 'junk' headers from
  9. ; the original.
  10. ;
  11. ; V-MailServer 2.0 header processing passes almost all headers from the
  12. ; original message to the output.  Any unwanted headers must be
  13. ; specifically removed.
  14. ;
  15. ;
  16. ; Remove or change these if you don't want them
  17. ;
  18. UPDATE Reply-to: %InsServer-Name%@%InsNode%
  19. UPDATE Precedence: bulk
  20. ;
  21. ;
  22. ; Strip the junk
  23. ;
  24. STRIP Organization:
  25. STRIP Received:
  26. STRIP CC:
  27. STRIP BCC:
  28. STRIP Lines:
  29. strip via:
  30. STRIP x-*
  31. strip content-*
  32. strip MIME-*
  33. strip Return-*
  34. STRIP Errors-*
  35. ;
  36. ;
  37. ; Order the headers.  Any not listed will be added after the ordered headers
  38. ;
  39. ORDER From
  40. ORDER Received:
  41. ORDER Date:
  42. ORDER From:
  43. ORDER Subject:
  44. ORDER Sender:
  45. ORDER To:
  46. ORDER Cc:
  47. ORDER Message-ID:
  48. ORDER Reply-To:
  49. ORDER Organization:
  50. ORDER In-Reply-To:
  51. ORDER Precedence:
  52.