Organisation profile: Cage Communications, Inc
[ ID = 3620 ] | Cage |
Organisation name | Cage Communications, Inc |
Short name or acronym | Cage |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 6 North Main Street |
Postal Code | 06492 |
City | Wallingford |
Country | United States |
Phone | +203 774-0294 |
Fax | + |
Email | info_(on)_cagecommunications.com |
Organisation URL | http://www.cagecommunications.com |
Logo | Description |
 |
Customer Service Follow-up Calls, Order Verification and Appointment Scheduling
and Confirmation Contact Center located in Wallingford CT. Automotive CSI
Solutions.
|
| Contact |
Name | Managing Director Luis Nobrega |
Function | |
Department | |
Email | LNobrega_(on)_cagecommunications.com |
Phone | +203 774-0294 |
Fax | + |
Update this profile
|
Last update: 2005-11-30 23:50:38
#!/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"
|
|