home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cvs110.zip / cvs / scripts / maildist < prev    next >
Text File  |  1998-08-21  |  2KB  |  51 lines

  1. #
  2. # $Id: maildist,v 1.1.2.1 1998/06/23 12:32:39 ahuber Exp $
  3. #
  4. # The maildist (Mail Distribution) file is used by the loginfo script
  5. # and serves two purposes:
  6. #
  7. #  - specifiying the recipients of commit messages.
  8. #  - specifiying the file to save commit messages to.
  9. #
  10. # The format is:
  11. #
  12. #  <module[/dir...]|ALL|DEFAULT><white space><distribution list>
  13. #
  14. #  The distribution list is a comma or white space separated list of
  15. #  file names and/or email addresses.
  16. #
  17. # A matching repository is a module[/dir...] in the first column that
  18. # matches the repository or is a parent of the repository.
  19. #
  20. # For a matching repository, the commit message is sent to each email
  21. # address in the distribution list and for each file name in the 
  22. # distribution list, the commit message it appended to the file
  23. # %CVSROOT%\CVSROOT\commitlogs\<file name>.
  24. #
  25. # If no matching repository is found, the distribution list specified
  26. # by DEFAULT in the first column is used.
  27. #
  28. # In addition, any distribution list specified by ALL in the first
  29. # column is also used.
  30. #
  31. # Using the example below:
  32. #
  33. #  If the repository is module then commit messages are sent to
  34. #  module@ping.at, dir@ping.at, and all@ping.at as well as appended
  35. #  to the files ...\commitlogs\module, ...\commitlogs\dir, and
  36. #  ...\commitlogs\all.
  37. #
  38. #  If the repository is module/dir then commit messages are sent to
  39. #  dir@ping.at and all@ping.at as well as appended to the files
  40. #  ...\commitlogs\dir and ...\commitlogs\all.
  41. #
  42. #  If the repository is module/test then commit messages are sent to
  43. #  all@ping.at and default@ping.at as well as appended to the files
  44. #  ...\commitlogs\all and ...\commitlogs\default.
  45. #
  46. #module            module, module@ping.at
  47. #module/dir        dir, dir@ping.at
  48. #ALL            all, all@ping.at
  49. #DEFAULT        default, default@ping.at
  50.  
  51.