# ask to the ssh login password for the admin user
# This is then used to create the maildir account
user_account_password=''
data=$(tempfile 2>/dev/null)
trap"rm -f $data" 0 1 2 5 15
dialog --title$"Password"\
--clear\
--passwordbox$"Enter your ssh login password.\n\nThis is the same as the original ssh login password shown when you first installed the system." 12 60 2> $data
ret=$?
case$retin
0)
user_account_password=$(cat$data)
;;
esac
if[${#user_account_password}-lt 2 ];then
echo''
echo$'A password must be provided for your user account.'