readers.conf

Russ Allbery rra at stanford.edu
Sat Aug 18 20:59:13 UTC 2001


madog <madog at madogcc.myip.org> writes:

> auth "public" {
>     hosts: "*"
>     default: "<public>"
> }
> auth "me" {
>     hosts: "192.168.168.6"
>     default: "<me>"
> }
> access "public" {
>     users: "<public>"
>     read: "*"
>     post: "*,!read-only"
> }
> access "me" {
>     users: "<me>"
>     read: "*"
>     post: "*"
> }

Change all those *'s to *,!control*,!junk like you had before.  In other
words, the access groups should look like:

access "public" {
    users: "<public>"
    read: "*,!control*,!junk"
    post: "*,!control*,!junk,!read-only"
}
access "me" {
    users: "<me>"
    newsgroups: "*,!control*,!junk"
}

(when read and post are identical, you can just use newsgroups).  Those
are the only two access blocks that you need.

-- 
Russ Allbery (rra at stanford.edu)             <http://www.eyrie.org/~eagle/>


More information about the inn-workers mailing list