System Administration Guide: Resource Management and Network Services

How to Manage Alias Entries in an NIS+ mail_aliases Table

To manage entries in an NIS+ table, you can use the aliasadm command. To list, add, modify, or delete table entries with the aliasadm command, you begin a particular task with the following steps.

  1. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  2. Complete your task by following the instructions from the example that meets your requirements.

In some instances, you should begin the task by compiling a list of each of your mail clients, the locations of their mailboxes, and the names of the mail server systems.

Example—Initiating an NIS+ mail_aliases Table

To create a table, follow these instructions.

  1. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  2. Initiate an NIS+ table.


    # aliasadm -I
    
  3. Add entries to the table.

For more information, refer to the aliasadm(1M) man page.

Example—Listing the Entire Contents of the NIS+ mail_aliases Table

To see a complete list of the contents of the table, follow these instructions.

  1. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  2. List all of the entries in alphabetical order by alias.


    # aliasadm -1
    

For more information, refer to the aliasadm(1M) man page.

Example—Listing an Individual Entry From the NIS+ mail_aliases Table

To see an individual entry from the table, follow these instructions.

  1. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  2. List an individual entry.


    # aliasadm -m ignatz
    ignatz: ignatz@saturn # Alias for Iggy Ignatz

    The command matches only the complete alias name, not partial strings. You cannot use metacharacters (such as * and ?) with aliasadm -m.

For more information, refer to the aliasadm(1M) man page.

Example—Listing Partial Matches From the NIS+ mail_aliases Table

To see partial matches from the table, follow these instructions.

  1. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  2. List partial matches from the table.


    # aliasadm -l | grep partial_string
    

    partial_string

    Use the string of your choice for your search. 

For more information, refer to the aliasadm(1M) man page.

Example—Adding Aliases to the NIS+ mail_aliases Table From the Command Line

To add two or three aliases to the table, follow these instructions.

  1. Compile a list of each of your mail clients, the locations of their mailboxes, and the names of the mail server systems.

  2. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  3. (Optional) If necessary, initiate an NIS+ table.

    If you are creating a completely new NIS+ mail_aliases table, you must first initiate the table. To complete this task, refer to Example—Initiating an NIS+ mail_aliases Table.

  4. Add aliases to the table.

    See this example of a typical entry.


    # aliasadm -a iggy iggy.ignatz@saturn "Iggy Ignatz"
    

    The following list describes the input from the preceding example.

    -a

    The option for adding an alias 

    iggy

    The short form of the alias name 

    iggy.ignatz@saturn

    The expanded alias name 

    "Iggy Ignatz"

    The name for the alias in quotation marks 

  5. Display the entry you created and ensure that it is correct.


    # aliasadm -m alias
    

    alias

    The entry that you created 

For more information, refer to the aliasadm(1M) man page.

Example—Adding Entries by Editing an NIS+ mail_aliases Table

To add more than two or three aliases to the table, follow these instructions.

  1. Compile a list of each of your mail clients, the locations of their mailboxes, and the names of the mail server systems.

  2. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  3. Display and edit the aliases table.


    # aliasadm -e
    

    This command displays the table and enables you to edit it. The editor you use has been set with the $EDITOR environment variable. If this variable is not set, vi is the default editor.

  4. Use the following format to type each alias on a separate line.


    alias: expanded_alias # ["option" # "comments"]

    alias

    This column is for the short form of the alias name. 

    expanded_alias

    This column is for the expanded alias name. 

    option

    This column is reserved for future use. 

    comments

    This column is used for comments about the individual alias, such as a name for the alias. 

    If you leave the option column blank, type an empty pair of quotation marks ("") and add the comments.

    The order of the entries is not important to the NIS+ mail_aliases table. The aliasadm -l command sorts the list and displays the entries in alphabetical order.

    For more information, refer to Mail Alias Files and the aliasadm(1M) man page.

Example—Editing Entries in an NIS+ mail_aliases Table

To edit entries in the table, follow these instructions.

  1. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  2. Display the alias entry.


    # aliasadm -m alias
    

    alias

    Use the assigned alias name. 

  3. Edit the alias entry, as necessary.


    # aliasadm -c alias expanded_alias [options comments]
    

    alias

    If necessary, edit the alias name. 

    expanded_alias

    If necessary, edit the expanded alias name. 

    options

    If necessary, edit the option. 

    comments

    If necessary, edit the comment for this entry. 

    For more information, refer to the aliasadm(1M) man page, as well as Mail Alias Files.

  4. Display the entry that you have edited and ensure that the entry is correct.


    # aliasadm -m alias
    

For more information, refer to the aliasadm(1M) man page.

Example—Deleting Entries From an NIS+ mail_aliases Table

To delete entries from the table, follow these instructions.

  1. Either be a member of the NIS+ group that owns the table, or become root on the mail server, or assume an equivalent role.

    For information about roles, refer to “Using Privileged Applications” in System Administration Guide: Security Services.

  2. Delete an entry from the table.


    # aliasadm -d alias
    

    alias

    Use the alias name for the entry that you are deleting. 

For more information, refer to the aliasadm(1M) man page.