home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / bit / listserv / mailbook / 1469 < prev    next >
Encoding:
Text File  |  1993-01-22  |  1.5 KB  |  39 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!UGA.CC.UGA.EDU!HAROLD
  3. Message-ID: <MAILBOOK%93012212470579@UGA.CC.UGA.EDU>
  4. Newsgroups: bit.listserv.mailbook
  5. Date:         Fri, 22 Jan 1993 12:42:35 EST
  6. Sender:       RiceMail discussion list <MAILBOOK@RICEVM1.BITNET>
  7. From:         Harold Pritchett <HAROLD@UGA.CC.UGA.EDU>
  8. Subject:      Re: Another SPELLCHK question
  9. In-Reply-To:  Message of Fri, 22 Jan 1993 11:14:22 LCL from <BJONES@UNF1VM>
  10. Lines: 27
  11.  
  12. On Fri, 22 Jan 1993 11:14:22 LCL Bob Jones said:
  13. >Perhaps I am missing something...Is there a way to keep SPELLFIX
  14. >out of the header area?  Is there a possibility of damage if it
  15. >corrects something there?  Is this a problem?   Thanks.
  16.  
  17. Here is a little file called PROOF XEDIT which we use here to invoke
  18. the IBM OfficeVision spell checker on a mail message.  The body of
  19. the mail is saved in a file, and then the spell checker is invoked
  20. on it.  On exit from the spell checker, the body is re-imported into
  21. the mail message.  The same idea should work with any spell checker
  22. which works interactively on a file.
  23.  
  24. Harold
  25. ------------------------ PROOF XEDIT ----------------------------------
  26. /* Xedit exec to proofread mail */
  27. set msgmode off
  28. top
  29. locate '/=======================================================/'
  30. next
  31. putd '+*' userid() $proof$ a
  32. epsproof userid() $proof$ a
  33. get userid() $proof$ a
  34. erase userid() $proof$ a
  35. top
  36. locate '/=======================================================/'
  37. next
  38. set msgmode on
  39.