# if it is a SGML install from scratch, you need a /var/spool/mail dir,
# and a /var/spool/mail/root file...
if [ ! -d /var/spool/mail ]; then
  if query "/var/spool/mail directory missing... do you want to create one ?" y
  then
    mkdir /var/spool/mail
  fi
fi

if [ ! -e /var/spool/mail/root ] && [ -d /var/spool/mail ]; then
  if query "/var/spool/mail/root mailbox is missing... do you want to create one ?" y
  then
    touch /var/spool/mail/root
    chmod 660 /var/spool/mail/root
  fi
fi

message "${MESSAGE_COLOR}You mail want to add alias mail='nail' in your profile file...${DEFAULT_COLOR}"
