Results 1 to 2 of 2

Thread: set up e-mail group

  1. #1
    Junior Member
    Join Date
    May 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default set up e-mail group

    Hi,
    I need a small help from you all guys I am trying to create a group for a set of people that have e-mail so sending it to this e-mail it will reach to that set of people
    example

    This is the command that I Use :

    sudo /usr/sbin/groupadd salesman

    then I add each user to the group (the user existed already)

    sudo /usr/sbin/usermod -G salesman okok1
    sudo /usr/sbin/usermod -G salesman okok2
    sudo /usr/sbin/usermod -G salesman okok3

    then I verify that was created correctly

    [alejandro@colon alejandro]$ id okok1
    uid=571(okok1) gid=577(salesman) groups=577(salesman)

    but when I try to send e-mail to the group it send me a Undeliverable message

    can you help me please
    Last edited by karpos; 1st June 2007 at 12:27 AM. Reason: changes

  2. #2
    Senior Member
    Join Date
    Jun 2005
    Posts
    194
    Thanks
    39
    Thanked 13 Times in 10 Posts
    Rep Power
    9

    Default

    No this is not the way to setup email groups. You need to use .forward file or using virtual tables. Do you wanna redirect/sed mail for local recipients (on same mail server) or remote mail server (user@dom.com, user@dom2.net) etc?

    For local user open /etc/mail/aliases or /etc/aliases in wich aliases are specified in the format of <alias name>: <existing account>. The <existing account> should be substituted by one or more account names in form of a coma separated list.

    For sales alias an e-mail sales@dom.net that should be delivered to all the users you, jerry, top etc:
    Code:
    sales: you, jerry, top, user@yahoo.com, admin@gmail.com
    save the changes and restart postfix MTA
    Last edited by jerry; 1st June 2007 at 12:34 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Add multiple users to a group
    By chuckbeattie in forum Linux software
    Replies: 2
    Last Post: 2nd November 2007, 11:04 PM
  2. Ubuntu Linux add a user to group
    By sweta in forum Ubuntu / Debian
    Replies: 0
    Last Post: 1st November 2007, 02:41 AM
  3. Group Policy
    By bubloob_13 in forum Windows Xp/2000/2003 server administration
    Replies: 0
    Last Post: 31st January 2007, 02:31 PM
  4. Group Policy
    By bubloob_13 in forum Windows Xp/2000/2003 server administration
    Replies: 1
    Last Post: 20th December 2006, 03:22 PM
  5. win2k3 Group policy
    By bubloob_13 in forum Windows Xp/2000/2003 server administration
    Replies: 1
    Last Post: 11th December 2006, 12:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41