Johan \"Orbit\" Mjönes writes:
 > I'm setting up qmail on my machine (as you might know by my previous
 > messages =).
 > 
 > Anyone, I have just discovered that QMail for some reason is runnning as
 > some of my shell-users, and not the users I set up in the installation.

This is not a problem people commonly have.  Look at your /etc/passwd
and make sure that you don't have any duplicated userids.  Something
like the following will help:

#!/usr/bin/perl

while(<>) {
    chomp;
    split(/:/);
    print "$_[0], $uids{$_[2]} have same uid\n" if defined($uids{$_[2]});
    $uids{$_[2]} = $_[0];
}

-- 
-russ nelson <[EMAIL PROTECTED]>  http://crynwr.com/~nelson
Crynwr supports Open Source(tm) Software| PGPok |   There is good evidence
521 Pleasant Valley Rd. | +1 315 268 1925 voice |   that freedom is the
Potsdam, NY 13676-3213  | +1 315 268 9201 FAX   |   cause of world peace.

Reply via email to