aliases.5
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. ." Copyright (c) 1998, 1999 Sendmail, Inc. and its suppliers.
  2. ."  All rights reserved.
  3. ." Copyright (c) 1983, 1997 Eric P. Allman.  All rights reserved.
  4. ." Copyright (c) 1985, 1991, 1993
  5. ." The Regents of the University of California.  All rights reserved.
  6. ."
  7. ." By using this file, you agree to the terms and conditions set
  8. ." forth in the LICENSE file which can be found at the top level of
  9. ." the sendmail distribution.
  10. ."
  11. ."
  12. ."     $Id: aliases.5,v 8.14 1999/06/22 20:41:34 tony Exp $
  13. ."
  14. .TH ALIASES 5 "$Date: 1999/06/22 20:41:34 $"
  15. .SH NAME
  16. .B aliases
  17. - aliases file for sendmail
  18. .SH SYNOPSIS
  19. .B aliases
  20. .SH DESCRIPTION
  21. This file describes user 
  22. ID 
  23. aliases used by 
  24. /usr/sbin/sendmail.
  25. The file resides in 
  26. /etc/mail 
  27. and 
  28. is formatted as a series of lines of the form
  29. .IP
  30. name: name_1, name2, name_3, . . .
  31. .PP
  32. The
  33. .I name
  34. is the name to alias, and the
  35. .I name_n
  36. are the aliases for that name.  
  37. Lines beginning with white space are continuation lines.  
  38. Another way to continue lines is by placing a backslash 
  39. directly before a newline.  
  40. Lines beginning with 
  41. are comments.
  42. .PP
  43. Aliasing occurs only on local names.  
  44. Loops can not occur, since no message will be sent to any person more than once.
  45. .PP
  46. After aliasing has been done, local and valid recipients who have a 
  47. ``.forward'' 
  48. file in their home directory have messages forwarded to the 
  49. list of users defined in that file.
  50. .PP
  51. This is only the raw data file; the actual aliasing information is
  52. placed into a binary format in the file 
  53. /etc/mail/aliases.db
  54. using the program 
  55. newaliases(1).  
  56. newaliases
  57. command should be executed each time the aliases file is changed for the 
  58. change to take effect.
  59. .SH SEE  ALSO
  60. newaliases(1), 
  61. dbopen(3), 
  62. dbm(3), 
  63. sendmail(8)
  64. .PP
  65. .I
  66. SENDMAIL Installation and Operation Guide.
  67. .PP
  68. .I 
  69. SENDMAIL An Internetwork Mail Router.
  70. .SH BUGS
  71. If you have compiled 
  72. sendmail 
  73. with DBM support instead of NEWDB,
  74. you may have encountered problems in 
  75. dbm(3) 
  76. restricting a single alias to about 1000 bytes of information.  
  77. You can get longer aliases by ``chaining''; that is, make the last name in 
  78. the alias be a dummy name which is a continuation alias.
  79. .SH HISTORY
  80. The
  81. .B aliases
  82. file format appeared in 
  83. 4.0BSD.