how to restrict user for local mail ??

BERES Laszlo beres.laszlo at sys-admin.hu
Fri Jun 2 09:51:51 UTC 2006


nilesh vaghela írta:

> How can I restrict a user for sending mail to the local domain only.??

If you use Postfix, try this:

http://www.postfix.org/RESTRICTION_CLASS_README.html

/etc/postfix/main.cf:
    smtpd_recipient_restrictions =
        check_sender_access hash:/etc/postfix/restricted_senders
        ...other stuff...

    smtpd_restriction_classes = local_only
    local_only =
        check_recipient_access hash:/etc/postfix/local_domains, reject

/etc/postfix/restricted_senders:
    foo at domain      local_only
    bar at domain      local_only

/etc/postfix/local_domains:
    this.domain     OK      matches this.domain and subdomains
    that.domain     OK      matches that.domain and subdomains

-- 

BÉRES László           RHCE
senior IT engineer, trainer




More information about the redhat-list mailing list