[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Source Compilation (more advice)



At 10:52 AM 4/21/98 -0600, John Williams wrote:
>My sendmail.sh looks like this:
>
>     #!/bin/sh
>     cat - | tee $PBMHOME/log/lastsendmail | (

The first cat - is a null statement, you can omit it:

#!/bin/sh
tee $PBMHOME/log/lastsendmail | (
    # ... insert other stuff
)

>One other necessary file is "$PBMSERV/etc/users".  When you are first
>setting up the server you can simply type a couple users into this file.
>    user1:pass1:email1
>    user2:pass2:email2

There are some other fields to fill there:

user:pass:Real Name:d:email

user:       is the userid (must be in all lowercase)
pass:       is the user's password (must also be in all lowercase)
Real Name:  the real name (e.g. John Williams), shown by 'list'
d:          digest status (0 is pbmserv-users, 1 is pbmserv-users-digest;
            apparently it is no longer used due to presence of esquire!)
email:      e-mail address (generally in all lowercase)

Example:
akur:password:Andy Kurnia:0:akur@bsdi.com