#!/bin/sh
# This script should be called via tcpclient to consult recipient existence

while read rcpt; do
  echo $rcpt >&7
  read result <&6
  echo $result
done
