diff options
Diffstat (limited to 'usr/src/cmd/sendmail/lib/aliases')
-rw-r--r-- | usr/src/cmd/sendmail/lib/aliases | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/usr/src/cmd/sendmail/lib/aliases b/usr/src/cmd/sendmail/lib/aliases new file mode 100644 index 0000000000..fc9f912da7 --- /dev/null +++ b/usr/src/cmd/sendmail/lib/aliases @@ -0,0 +1,77 @@ +# +# Copyright 2005 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License, Version 1.0 only +# (the "License"). You may not use this file except in compliance +# with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# +#ident "%Z%%M% %I% %E% SMI" + +## +# Aliases can have any mix of upper and lower case on the left-hand side, +# but the right-hand side should be proper case (usually lower) +# +# >>>>>>>>>> The program "newaliases" must be run after +# >> NOTE >> this file is updated for any changes to +# >>>>>>>>>> show through to sendmail. +## + +# The following alias is required by the mail protocol, RFC 2821 +# Set it to the address of a HUMAN who deals with this system's mail problems. +postmaster: root + +# Alias for mailer daemon; returned messages from our MAILER-DAEMON +# should be routed to our local Postmaster. +MAILER-DAEMON: postmaster + +# General redirections for pseudo accounts. +bin: root +daemon: root +system: root +toor: root +uucp: root + +# Well-known aliases. +manager: root +dumper: root +operator: root + +# trap decode to catch security attacks +decode: root + +# Aliases to handle mail to programs or files, eg news or vacation +nobody: /dev/null + +# Sample aliases: + +# Alias for distribution list, members specified here: +#staff:wnj,mosher,sam,ecc,mckusick,sklower,olson,rwh@ernie + +# Alias for distribution list, members specified elsewhere: +#keyboards: :include:/usr/jfarrell/keyboards.list + +# Alias for a person, so they can receive mail by several names: +#epa:eric + +####################### +# Local aliases below # +####################### + |