|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3819 ] | eseco |
---|---|
Organisation name | eseco GmbH & Co. KG |
Short name or acronym | eseco |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Herrnwaldstr. 6 |
Postal Code | 64625 |
City | Bensheim |
Country | Germany |
Phone | +49 6251702988 |
Fax | +49 62515836083 |
info_(on)_eseco.de | |
Organisation URL | http://www.eseco.de |
Logo | Description |
![]() |
Eseco is a German company, based in Bensheim/Frankfurt, specialized on Asterisk based VoIP products and services. SINEDIALER: the automatic call generator that works with Asterisk, perfect for CALL CENTERS of great and medium dimensions. SINEDIALER may operates as "Predictive dialer" (based on fuzzy logic mathematical algorithms), or using the standard "call for second" mode. Main features and peculiarities of this innovative tool: facility of use rapid and sensible increment of productivity unparalleled relationship cost/revenue on the market Eseco started in 2002, providing services for IT Security and VoIP applications. Today we implement speech-recognition and text-to-speech functionality with Asterisk PBX and share some knowledge in the open source community. For more information please fell free to contact us at: E-MAIL: info@eseco.de URL: http://www.eseco.de |
Contact | |
Name | Ingmar Schraub |
Function | CEO |
Department | IT |
is_(on)_eseco.de | |
Phone | +49 6251702988 |
Fax | +49 62515836083 |
![]() |
Last update: 2007-10-25 12:08:32 #!/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" |