Organisation profile: Executone Information Systems, Inc.
[ ID = 0096 ] | Executone Information Systems, Inc. |
Organisation name | Executone Information Systems, Inc. |
Short name or acronym | Executone Information Systems, Inc. |
Organisation type | Company |
Activity type | Call centers |
Address | 478 Wheelers Farms Road |
Postal Code | 06460 |
City | Milford, CT |
Country | United States |
Phone | + +1 203 876 7600 |
Fax | + +1 203 882 0400 |
Email | |
Organisation URL | http://www.executone.com |
Logo | Description |
 |
The Computer Telephony (CT) Division offers a complete
portfolio of applications built upon the robust, scaleable family of
IDS digital telephone systems. Products range from PBXs for small and
medium-sized businesses to standards-compliant CT applications. The
division also produces standalone and LAN-based applications,
including voice mail, unified messaging and Automatic Call
Distribution (ACD).
|
| Contact |
Name | Mr. Bob DiGangi |
Function | |
Department | RSM Information or Comments |
Email | Inter-Tel_(on)_Inter-Tel.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2002-04-10 12:32:58
#!/usr/bin/ksh
# cntr.cgi --
# version 0
DOC=$DOCUMENT_ROOT$DOCUMENT_URI
VSTART=28-08-2008
WRONGLOG=${DOCUMENT_ROOT}/cntr.txt
echo Content-type:text/html
echo
case $DOC in
*experts*) CDIR=${DOCUMENT_ROOT}/cntex ;;
*orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;;
*) WRONG=yes ;;
esac
CFILE=${DOC##*/}
case ${CFILE} in
[0-9][0-9][0-9][0-9].html) WRONG=no ;;
*) WRONG=yes ;;
esac
[ $WRONG = yes ] &&
{ echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG
exit
}
CCNT=${CDIR}/${CFILE%.html}.txt
CLCK=${CDIR}/${CFILE%.html}.lck
[ -s $CCNT ] && COUNT=$(head -1 $CCNT)
COUNT=$(( ${COUNT:-0} + 1 ))
[ -f $CLCK ] ||
{ touch $CLCK
echo $COUNT > $CCNT
rm -f $CLCK
}
echo " Visits since $VSTART: $COUNT"
|
|