mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
211 B

#!/bin/sh
for x in sendmail mailq newaliases; do
echo "$0: Re-creating /usr/bin/$x -> ${x}_@mailer@ ..."
echo -e "#!/bin/sh\nexec -a $x ${x}_@mailer@ \"\$@\"" > /usr/bin/$x
chmod +x /usr/bin/$x
done
exit 0