On Wed, Jul 18, 2001 at 02:41:12PM +0300, Constantine Koulis wrote:
> virtual users to my virtual DOmains.
> Do i need or to take care anything special about all this?
> i am at the final step of the mailman.
> how do i setup an aliasses for a user in qmail cause mailman wants aliases
> with a user.
> i dont have any etc/aliasses
I believe mailman comes with a script to generate the necessary qmail
aliases. If not, it's available on the 'net' or write one yourself.
something like this should work....
#!/bin/sh
for f in $*
do echo "|/home/mailman/mail/wrapper post ${f}" > /var/qmail/alias/.qmail-$f
echo "|home/mailman/wrapper mailowner ${f}" >
/var/qmail/alias/.qmail-$f-admin
echo "&{f}-admin" > /var/qmail/alias/.qmail-$f-owner
echo "|/home/mailman/wrapper mailcmd ${f}" >
/var/qmail/alias/.qmail-$f-request
done