|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4655 ] | Storm Telecom |
---|---|
Organisation name | Storm Telecom Limited |
Short name or acronym | Storm Telecom |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 89 St Jean Road |
Postal Code | 72109 |
City | Quatre Bornes |
Country | Mauritius |
Phone | +230 4542901 |
Fax | +230 4542854 |
ceo_(on)_stormtelecom.com | |
Organisation URL | http://www.stormtelecom.mu |
Logo | Description |
![]() |
Storm Telecom is a call centre with bilingual expertise (French & English located in Mauritius.We offer a 24/7 service and competitive rates for both outbound and inbound campaigns.Our Outsourcing Solutions include both voice and non-voice and extend to Customer Service, Legal Process Outsourcing, Help Desk and Data Entry. We your customers across a powerful platform that supports both MultiChannel and Cross Channel Communication. We are ready to answer your immediate needs. |
Contact | |
Name | Mr Sadiq Ebrahim Dawood |
Function | CEO |
Department | |
ceo_(on)_stormtelecom.com | |
Phone | +230 4542901 |
Fax | +230 4542854 |
![]() |
Last update: 2014-04-29 09:32:26 #!/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" |