#!/bin/sh FINGER=`which finger` echo Content-type: text/html echo if [ -x $FINGER ]; then if [ $# = 0 ]; then cat << EOM X.500 Gateway

X.500 Gateway

This System takes a full name and queries the Auburn X.500 Database for information. If the name is matched by one person, information on that person will be displayed.

If the name matches several people, then a list will be displayed which shows their names, e-mail id's and job titles. If this is the case, scan the list for the person for whom you are looking, take note of their userid, and look them up using the USERID search facility.

This is a gateway to X.500 Directory Services. Please use a full name as your search string.

Note--Your browser must support forms for this feature to work

(Please be patient, this can take awhile...)

<<<< Return To AU Home Page EOM else echo \ $FINGER "$*"@ducserv.duc.auburn.edu fi else echo Cannot find finger on this system. fi