home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / vmsnet / mail / mx / 752 < prev    next >
Encoding:
Internet Message Format  |  1992-07-23  |  2.0 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!news.acns.nwu.edu!network.ucsd.edu!mvb.saic.com!mx-list
  2. From: Hunter Goatley <goathunter@WKUVX1.BITNET>
  3. Newsgroups: vmsnet.mail.mx
  4. Subject: Re: A question and an enhancement request.
  5. Message-ID: <0095E004.0B0BC720.2336@WKUVX1.BITNET>
  6. Date: Thu, 23 Jul 1992 11:32:29 EDT
  7. Organization: Mx-List<==>Vmsnet.Mail.Mx Gateway
  8. X-Gateway-Source-Info: Mailing List
  9. Lines: 41
  10.  
  11. "Brian Tillman, Smiths Industries, VAX Support, x8425" writes:
  12. >
  13. >This may be the case with us.  I know how to determine how *frequently* the
  14. >queue file gets compresses, but how does one determine *when* the compression
  15. >occurs.  I'd like to make sure the compression occurs during the wee hours of
  16. >the night when the possibility of outbound mail is slight.
  17. >
  18. It *should* only compress once a day, by default.  The interval is
  19. controlled by the logical FLQ_RECLAIM_WAIT, which defaults to
  20. "1 00:00:00.00".  The other logicals are FLQ_CHECK_WAIT and
  21. FLQ_PURGE_WAIT---they're described in section 6.1 of the MX manager's
  22. guide.
  23.  
  24. Because I run JANTIDY every night at 3:45, I always bring MX down and
  25. do the CONVERT myself, then bring MX back up.  I had to set
  26. FLQ_RECLAIM_WAIT to "2 00:00:00", though, because occasionally the
  27. interval would expire before JANTIDY got finished with its business.
  28.  
  29. In case anyone is interested, I've include my MX_JANTIDY.COM below.
  30. I call it from JANTIDY right before Jnet is restarted.
  31.  
  32. Hunter
  33. ------
  34. Hunter Goatley, VMS Systems Programmer, Western Kentucky University
  35. goathunter@WKUVX1.BITNET, 502-745-5251
  36.  
  37. $ set noon
  38. $ say := write sys$output
  39. $ mcp := $mx_exe:mcp.exe/file=mx_dir:mx_config.mxcfg
  40. $ say "Shutting down MX"
  41. $ mcp shutdown
  42. $ wait 00:00:30         !Wait for them to shutdown
  43. $ convert/fdl=flq_dir:system_queue flq_dir:system_queue.flq_ctl -
  44.         flq_dir:system_queue.flq_ctl;
  45. $ purge flq_dir:system_queue.flq_ctl
  46. $ rename flq_dir:system_queue.flq_ctl; ;1
  47. $ say ""
  48. $ say "Restarting MX"
  49. $ submit/user=mxmailer sys$startup:mx_startup.com
  50. $ wait 00:00:30
  51. $ exit
  52.