#!/bin/sh

# add a provider to the account file in TechInfo
# (pips.providers) and add this person to the
# techinfo-providers mailing list.

USERNAME=`echo $1 | awk -F: '{print $2}'`

echo 'Creating account for [' $USERNAME ']:'
newprov.bin

echo ""
echo 'Adding [' $USERNAME '] to techinfo-providers mailing list:'
blanche -a $USERNAME techinfo-providers

echo ""
echo 'done'

