I'm attempting to set up an intranet news server, inn2, and I'm stuck at setting up user authentication.
My readers.conf file looks like this:
auth all {
auth: "ckpasswd -d <pathdb in inn.conf>/newsusers"
auth: "ckpasswd -s"
}
access full {
users: *
newsgroups: *
}
I created a password database using a Perl script named dbmpasswd that I grabbed from somewhere. This script created two files, newsusers.pag
and newsusers.dir
.
In the auth all
block above, I'm referencing a program called ckpasswd
but I can't find this program on my system (CentOS 6.2) anywhere. yum whatprovides
returns nothing and it's not in my path. Google doesn't turn up much either.
Where can I find ckpasswd
and more important, I suppose--is this the right way to set up authentication for inn2?