
 This program is to show users system-news, it should be placed in
 /etc/profile, so its executed every time a user logs in.
 (The best is to use 'news -n' so that only article titles will be displayed
 and the user can decide when s/he wants to read it)
 the system news is kept in a directory /var/sysnews (this can be changed)
 where each sysnews article is a separate file (with the filename being
 the sysnews title.)
 so, to add a system news article, just edit one with your favorite editor
 and copy it /var/sysnews

 read the man-page for more details..

 to compile, just type 'make'  to install type 'make install'
 you have to create the /var/sysnews dir yourself..



 Intruder@link.hacktic.nl


-----CHANGES  news-0.4

  Implemented a news expire function, which will delete news after
  a given number of days, for example, you can the following in
  your crontab:

  0 2 * * *		 news -e 30

  this will run the news command every day at 2:00am and delete
  all articles older than 30 days.
  you can also specify acticles which may not be deleted,
  i.e. a 'newusers' article.. this is done by specifing the
  '-x' flag, followed by a comma separated list of article names,
  like:

  0 2 * * *		 news -e 30 -x newusers,important,etcetc

  which will purge all news older than 30 days, excluding newusers,
  important and etcetc.

  (thanks to waltje@uwalt.nl.mugnet.org for the idea)

-----
