home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / mail / mh / 1075 < prev    next >
Encoding:
Text File  |  1992-08-30  |  2.1 KB  |  58 lines

  1. Newsgroups: comp.mail.mh
  2. Path: sparky!uunet!ukma!wupost!usc!snorkelwacker.mit.edu!world!ora.com!jerry
  3. From: jerry@ora.com (Jerry Peek)
  4. Subject: Re: Forward filter that fills in Subject field
  5. Message-ID: <Btsupq.M4L@ora.com>
  6. Organization: O'Reilly & Associates, Inc.
  7. References: <DISSER.92Aug28153149@metaphor.engin.umich.edu>
  8. Date: Sun, 30 Aug 1992 13:56:13 GMT
  9. Lines: 47
  10.  
  11. In article <DISSER.92Aug28153149@metaphor.engin.umich.edu> disser@engin.umich.edu (David Disser) writes:
  12. > Is it possible to make either a filter or formfile that will automatically
  13. > fill in the Subject field of the message to be composed?  I want to be able
  14. > to quickly (ie, no editing) forward a message to some one and have a 
  15. > subject field a la "FWD: <orig subject>" filled in for me.  Ideas?
  16.  
  17. The program you really want might be "dist".  But if you need to add
  18. text to the forwarded message, dist probably isn't what you want.
  19.  
  20. I heard a rumor that some day "repl" and "forw" might be combined into
  21. a program that could do that, and more.  But it was just a rumor.
  22. (John, is there any truth to that rumor? ;-))  For now, you can use repl
  23. to forward your messages -- as long as you want to forward just *one*
  24. message at a time (forw can forward more than one).
  25.  
  26. If you've got a copy of the "MH & xmh" Nutshell Handbook, read Section
  27. 9.3.3 for details.  The idea is to make a link or alias to "repl"
  28. that executes this command:
  29.  
  30.     repl -form xxxcomps -filter xxxfilt
  31.  
  32. Where xxxcomps is a components file something like this:
  33.  
  34.     To:
  35.     cc:
  36.     %<{subject}Subject: FWD: %{subject}\n%>\
  37.     --------
  38.  
  39. and xxxfilt looks like this:
  40.  
  41.     width=10000
  42.     :
  43.     :----- Forwarded Message
  44.     :
  45.     extras:nocomponent
  46.     :
  47.     body:nocomponent
  48.     :
  49.     :----- End of Forwarded Message
  50.  
  51. The xxxcomps file grabs a copy of the subject line from the original
  52. message.  The xxxfilt file copies the original message as-is, with no
  53. reformatting (unless a line is more than 10,000 characters wide).
  54. The forwarded message won't be "dash-munged" as RFC 934 requires...
  55. but hey, who cares about standards? :-)
  56. -- 
  57. Jerry Peek, O'Reilly & Associates, jerry@ora.com, (617)354-5800
  58.