|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3667 ] | Gedam Europe S.r.L. |
---|---|
Organisation name | Gedam Europe S.r.L. |
Short name or acronym | Gedam Europe S.r.L. |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | C.so Re Umberto 21 |
Postal Code | 10100 |
City | Turin |
Country | Italy |
Phone | +39 01119824516 |
Fax | +39 01119715006 |
info_(on)_gedameurope.com | |
Organisation URL | http://www.gedameurope.com |
Logo | Description |
![]() |
Gedam Europe is an Italian company 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 GEDAM Europe is born from the experience of GEDAM Advanced Communication Ltd and SINEAPPS Ltd, companies based in Dunedin, New Zeland, with the objective of diffusing and developing the same kind of services and products worldwide, contributing each other to the consolidation of the technological know-how of the group. For more information on SINEDIALER and/or any other question, please fell free to contact us at: E-MAIL: info@gedameurope.com URL: http://www.gedameurope.com FREEVOIP: our free softphone and VoIP community [http://freevoip.gedameurope.com] |
Contact | |
Name | Mr. Luca Aroasio |
Function | CEO |
Department | CEO |
aroasio_(on)_gedameurope.com | |
Phone | +39 01119824516 |
Fax | +39 01119715006 |
![]() |
Last update: 2006-06-22 00:10:12 #!/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" |