incoming calls
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3002
Routing incoming ppp0
Routing incoming ppp0 is a netfilter firewall. more>>
Routing incoming ppp0 is a netfilter firewall.
Sample:
#!/bin/bash
# Load required modules
insmod ip_tables
insmod ip_conntrack
insmod iptable_nat
insmod ipt_MASQUERADE
# Then flush all rules
iptables -F
iptables -t nat -F
# In the NAT table (-t nat), Append a rule (-A) after routing
# (POSTROUTING) for all packets going out ppp0 (-o ppp0) which says to
# MASQUERADE the connection (-j MASQUERADE).
#iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
# Below means route 192.168.1.x
iptables -t nat -A POSTROUTING -d ! 192.168.1.0/24 -j MASQUERADE
iptables -A FORWARD -s 192.168.1.0/24 -j ACCEPT
iptables -A FORWARD -d 192.168.1.0/24 -j ACCEPT
iptables -A FORWARD -s ! 192.168.1.0/24 -j DROP
# Disallow NEW and INVALID incoming or forwarded packets from ppp0.
#iptables -A INPUT -i ppp0 -m state --state NEW,INVALID -j DROP
#iptables -A FORWARD -i ppp0 -m state --state NEW,INVALID -j DROP
# port 113 is evil ;)
iptables -A INPUT --protocol udp --source-port 113 -j DROP
iptables -A INPUT --protocol udp --destination-port 113 -j DROP
# Turn on IP forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward
#iptables -A INPUT --protocol udp --source-port 113 -j DROP
# Route incoming ppp0 at port 80, to 192.168.1.18:80
iptables -A PREROUTING -t nat -p tcp -i ppp0 --dport 80 -j DNAT --to 192.168.1.18:80
# Route incoming ppp0 at port 21, to 192.168.1.18:21
iptables -A PREROUTING -t nat -p tcp -i ppp0 --dport 21 -j DNAT --to 192.168.1.18:21
<<lessSample:
#!/bin/bash
# Load required modules
insmod ip_tables
insmod ip_conntrack
insmod iptable_nat
insmod ipt_MASQUERADE
# Then flush all rules
iptables -F
iptables -t nat -F
# In the NAT table (-t nat), Append a rule (-A) after routing
# (POSTROUTING) for all packets going out ppp0 (-o ppp0) which says to
# MASQUERADE the connection (-j MASQUERADE).
#iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
# Below means route 192.168.1.x
iptables -t nat -A POSTROUTING -d ! 192.168.1.0/24 -j MASQUERADE
iptables -A FORWARD -s 192.168.1.0/24 -j ACCEPT
iptables -A FORWARD -d 192.168.1.0/24 -j ACCEPT
iptables -A FORWARD -s ! 192.168.1.0/24 -j DROP
# Disallow NEW and INVALID incoming or forwarded packets from ppp0.
#iptables -A INPUT -i ppp0 -m state --state NEW,INVALID -j DROP
#iptables -A FORWARD -i ppp0 -m state --state NEW,INVALID -j DROP
# port 113 is evil ;)
iptables -A INPUT --protocol udp --source-port 113 -j DROP
iptables -A INPUT --protocol udp --destination-port 113 -j DROP
# Turn on IP forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward
#iptables -A INPUT --protocol udp --source-port 113 -j DROP
# Route incoming ppp0 at port 80, to 192.168.1.18:80
iptables -A PREROUTING -t nat -p tcp -i ppp0 --dport 80 -j DNAT --to 192.168.1.18:80
# Route incoming ppp0 at port 21, to 192.168.1.18:21
iptables -A PREROUTING -t nat -p tcp -i ppp0 --dport 21 -j DNAT --to 192.168.1.18:21
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
989 downloads
ivcall 0.4
ivcall is a small utility which may be used to make automated telephone calls with your isdn4linux supported ISDN card. more>>
ivcall is a small utility which may be used to make automated telephone calls with your isdn4linux supported ISDN card. Outgoing calls are supported as well as incoming calls.
The audio data recieved from the peer is written to STDOUT, audio data read from STDIN is send to the peer. The audio data is in raw 8 bit uLaw 8 KHz format, without any headers.
Installation:
./configure
make
make install
Enhancements:
- cleanups
- add softfax support using spandsp.
<<lessThe audio data recieved from the peer is written to STDOUT, audio data read from STDIN is send to the peer. The audio data is in raw 8 bit uLaw 8 KHz format, without any headers.
Installation:
./configure
make
make install
Enhancements:
- cleanups
- add softfax support using spandsp.
Download (0.11MB)
Added: 2005-10-14 License: GPL (GNU General Public License) Price:
1470 downloads
Python Call Graph 0.4.0
Python Call Graph (pycallgraph) is a Python library that creates call graphs for Python programs more>>
Python Call Graph (pycallgraph) is a Python library that creates call graphs for Python programs
pycallgraph is quite new. It seems to work well and I will most likely improve it in the near future!
<<lesspycallgraph is quite new. It seems to work well and I will most likely improve it in the near future!
Download (0.004MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
853 downloads
iaxcomm 1.2.0
IaxComm is an Open Source softphone (VOIP) using iax protocol. more>>
IaxComm is an Open Source softphone (VOIP) using iax protocol. iaxComm works on Win32, Linux and Mac OS X (Panther) systems.
The source code is in the simpleclient/iaxcomm subdirectory of the iaxclient source code tree, which is is available via SVN.
Main features:
- iLBC support
- speex support
- Music on Hold.
- Blind Transfer.
- Custom Ringtones per CallerID
- Speakerphone mode.
- Register with multiple servers (ie enterprise server and iaxtel).
- Multiple call appearances.
- User selectable audio devices.
- User defined ringtones.
- Autoanswer intercom calls (with password protection).
- Registration with an asterisk server prior to dialing is no longer required.
- Simplified Directory dialogs.
- Incoming callers automatically added to phone book.
<<lessThe source code is in the simpleclient/iaxcomm subdirectory of the iaxclient source code tree, which is is available via SVN.
Main features:
- iLBC support
- speex support
- Music on Hold.
- Blind Transfer.
- Custom Ringtones per CallerID
- Speakerphone mode.
- Register with multiple servers (ie enterprise server and iaxtel).
- Multiple call appearances.
- User selectable audio devices.
- User defined ringtones.
- Autoanswer intercom calls (with password protection).
- Registration with an asterisk server prior to dialing is no longer required.
- Simplified Directory dialogs.
- Incoming callers automatically added to phone book.
Download (1.4MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1226 downloads
LineControl Server 2.1.21
LineControl allows you to remotely control the Internet connection of a Linux masquerading server using multiple clients. more>>
LineControl allows you to remotely control the Internet connection of a Linux masquerading server using multiple clients. It takes care with the number of clients using the connection and decides upon this number whether the connection should be up or down.
The clients show the time the connection is up and throughput statistics. Different connection types are supported, such as analog modems, ISDN, or even cable modems and ADSL devices.
Main features:
- user accounting using Linux-PAM or passwd/shadow file
- controlling multiple lines
- throughput measuring
- logging & analizing (view example)
- logging to a MySQL database (view example)
- html formatted status report via webserver (view example)
- different line types (analog, isdn, adsl, ... it should be possible to run LC with any line!)
- pinger (to avoid line-drops)
- reporting data (time, nr, ...) about incoming isdn calls to the clients (inclusive addressbook lookup)
- client dependant modifications of the NAT servers firewall (using an external script whenever a client goes on- or offline)
<<lessThe clients show the time the connection is up and throughput statistics. Different connection types are supported, such as analog modems, ISDN, or even cable modems and ADSL devices.
Main features:
- user accounting using Linux-PAM or passwd/shadow file
- controlling multiple lines
- throughput measuring
- logging & analizing (view example)
- logging to a MySQL database (view example)
- html formatted status report via webserver (view example)
- different line types (analog, isdn, adsl, ... it should be possible to run LC with any line!)
- pinger (to avoid line-drops)
- reporting data (time, nr, ...) about incoming isdn calls to the clients (inclusive addressbook lookup)
- client dependant modifications of the NAT servers firewall (using an external script whenever a client goes on- or offline)
Download (0.20MB)
Added: 2005-09-19 License: GPL (GNU General Public License) Price:
1496 downloads
IRCM 1.42
IRCM is a webbased Incident Registration and Configuration Management tool. more>>
IRCM is a webbased Incident Registration and Configuration Management tool that supports helpdesk operations in an ICT-environment.
With IRCM, helpdesk agents can register and dispatch service calls. These calls can be related to agents, customers, SLA-defined activities, devices, incoming or outgoing mail and timers. Service levels are guarded depending on call type, call status and service window.
The customers infrastructure is managed in the configuration management module, providing full 2D-tracing through related devices.
IRCM is protected by GNU/GPL and is available for download on this site.
IRCM supports multiple customers, helpdesks, Service Level Agreements, mailboxes etc in one database. If multiple databases are used (e.g. to separate customer data) the user can switch dynamically between databases within the browser window.
For configuration management, a black-box approach is used. This maximizes flexibility in modelling the customer infrastructure. The only predefined (system) entity is the user, all other entities and their properties are defined per customer. Hierarchical relations between configuration items can be displayed in a 2D overview.
A valuable aspect of IRCM is that you dont have to use the features summed up here. If you want to use the Configuration Management module as an address book and want Incident Registration to be a todo list, you wont be punished with overhead.
Main features:
- Multiple customers
- Multiple Service Level definitions (incident types, resolv time, SLA defined activities)
- Multiple users and customizable incident queues.
- IMAP based mail (Exchange)
- Multilevel authentication, authorisation and logging
- Report designer module
- 2D-trace based patching
- Bulk data import and export
- Client Link Module (real time events, timers and messaging)
- Callcenter linkable
<<lessWith IRCM, helpdesk agents can register and dispatch service calls. These calls can be related to agents, customers, SLA-defined activities, devices, incoming or outgoing mail and timers. Service levels are guarded depending on call type, call status and service window.
The customers infrastructure is managed in the configuration management module, providing full 2D-tracing through related devices.
IRCM is protected by GNU/GPL and is available for download on this site.
IRCM supports multiple customers, helpdesks, Service Level Agreements, mailboxes etc in one database. If multiple databases are used (e.g. to separate customer data) the user can switch dynamically between databases within the browser window.
For configuration management, a black-box approach is used. This maximizes flexibility in modelling the customer infrastructure. The only predefined (system) entity is the user, all other entities and their properties are defined per customer. Hierarchical relations between configuration items can be displayed in a 2D overview.
A valuable aspect of IRCM is that you dont have to use the features summed up here. If you want to use the Configuration Management module as an address book and want Incident Registration to be a todo list, you wont be punished with overhead.
Main features:
- Multiple customers
- Multiple Service Level definitions (incident types, resolv time, SLA defined activities)
- Multiple users and customizable incident queues.
- IMAP based mail (Exchange)
- Multilevel authentication, authorisation and logging
- Report designer module
- 2D-trace based patching
- Bulk data import and export
- Client Link Module (real time events, timers and messaging)
- Callcenter linkable
Download (0.58MB)
Added: 2005-10-25 License: GPL (GNU General Public License) Price:
817 downloads
Automated support for compound RPC calls 0.2
Automated support for compound RPC calls is a project which augments RPCGEN to support NFSv4-style compound procedures. more>>
Automated support for compound RPC calls is a project which augments RPCGEN to support NFSv4-style compound procedures.
NFSv4 specifies that the RPC calls be batched into a "compound" call. There is no support for this in RPCGEN.
By rearranging the ONC IDL for NFSv4 into AutoGen definitions, these templates will emit the original IDL *plus* all the code to package, send, distribute, collect, return, and dispatch the results.
The distributed program author merely needs to call and supply server procedures for the routines specified in the IDL.
Templates for these calls and service routines is provided, too. The NFSv4 definitions are included.
<<lessNFSv4 specifies that the RPC calls be batched into a "compound" call. There is no support for this in RPCGEN.
By rearranging the ONC IDL for NFSv4 into AutoGen definitions, these templates will emit the original IDL *plus* all the code to package, send, distribute, collect, return, and dispatch the results.
The distributed program author merely needs to call and supply server procedures for the routines specified in the IDL.
Templates for these calls and service routines is provided, too. The NFSv4 definitions are included.
Download (0.022MB)
Added: 2007-04-05 License: BSD License Price:
938 downloads
Dream Print Tracking System 1.0.1
Dream Print Tracking System is a powerful and user-friendly system for tracking print distribution and circulation. more>>
Dream Print Tracking System is a powerful and user-friendly system for tracking print distribution and circulation.
It uses many principles from customer relationship management (CRM) systems, but in a way specific to print publishers.
The Media Development Loan Fund commissioned Dream based on its experience in working with print publishers in more than 30 countries worldwide, where it provides support to independent media in the form of financing, training and technology.
In many of these countries, print distribution is one of the biggest difficulties independent publishers face because it is tightly controlled. Many countries have print distribution monopolies or cartels, which are either politically tied to the government, corrupt or incompetent.
Dream is a tool for tracking print circulation. In a similar way to customer relationship management (CRM) systems such as Campwares Cream software, Dream allows you to maintain a clear picture of your distribution business based on regularly entered contracts, orders, and shipment information. This is handled primarily through Dreams Report functions. Dream is designed to look and feel like an email application. Its inbox is used for tracking inbound communications such as new customer e-mails and customer phone calls.
Because Dream works with any standard SMTP mail server, it also manages outbound customer communications and keeps records of your responses.
Dream does two things: It is a database that stores all the relevant information you supply about the publications you produce, who distributes, who sells it, and how you connect with these people.
It is also a tool for retrieving and presenting this information in several different ways. It contains utilities for tracking products, promotions, and communications.
Dream handles four types of information:
1. Information about what you produce and the people to whom you provide it. This information is entered on the Options tab of the screen and appears primarily in the menus on the Main tabs screens. One example is a product category in which you describe a periodical you produce.
2. Information about specific products such as books or individual issues of what you produce, specific distributors and specific sellers, and tracking of these items from contract to order to shipment to return.
3. Communications, including records of incoming messages from various sources, outgoing emails to individuals, and newsletters.
4. User information including usernames, passwords, preferences and permissions.
Enhancements:
- Minor bugfixes were made.
- A Russian localization was added.
<<lessIt uses many principles from customer relationship management (CRM) systems, but in a way specific to print publishers.
The Media Development Loan Fund commissioned Dream based on its experience in working with print publishers in more than 30 countries worldwide, where it provides support to independent media in the form of financing, training and technology.
In many of these countries, print distribution is one of the biggest difficulties independent publishers face because it is tightly controlled. Many countries have print distribution monopolies or cartels, which are either politically tied to the government, corrupt or incompetent.
Dream is a tool for tracking print circulation. In a similar way to customer relationship management (CRM) systems such as Campwares Cream software, Dream allows you to maintain a clear picture of your distribution business based on regularly entered contracts, orders, and shipment information. This is handled primarily through Dreams Report functions. Dream is designed to look and feel like an email application. Its inbox is used for tracking inbound communications such as new customer e-mails and customer phone calls.
Because Dream works with any standard SMTP mail server, it also manages outbound customer communications and keeps records of your responses.
Dream does two things: It is a database that stores all the relevant information you supply about the publications you produce, who distributes, who sells it, and how you connect with these people.
It is also a tool for retrieving and presenting this information in several different ways. It contains utilities for tracking products, promotions, and communications.
Dream handles four types of information:
1. Information about what you produce and the people to whom you provide it. This information is entered on the Options tab of the screen and appears primarily in the menus on the Main tabs screens. One example is a product category in which you describe a periodical you produce.
2. Information about specific products such as books or individual issues of what you produce, specific distributors and specific sellers, and tracking of these items from contract to order to shipment to return.
3. Communications, including records of incoming messages from various sources, outgoing emails to individuals, and newsletters.
4. User information including usernames, passwords, preferences and permissions.
Enhancements:
- Minor bugfixes were made.
- A Russian localization was added.
Download (6.9MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1382 downloads

fring Linux- Make free mobile calls 1.02
a free mobile internet service & community more>> fring is a free mobile application application that enables free mobile internet calls, live chat (IM) and file transfer to other fringsters and PC-based services including Skype, Google Talk, ICQ, MSN Messenger, Twitter, Yahoo! and AIM, using free Wi-Fi or your 3G or GPRS internet data plan instead of costly mobile airtime minutes.
With fring, youll gain benefits previously only found only on the PC and get empowered with mobility as never before: make cheap mobile internet calls, see whos online before dialing with contact availability indicators (presence), live chat instead of SMS, engage in multiple conversations simultaneously, view conversation history and more! Take all your fring, Skype, Google Talk, ICQ, MSN Messenger and Twitter buddies with you wherever you go and view them, along with your regular phone contacts, from one integrated and search-able contact list.
Also make cheap calls to landlines and regular cellular contacts using your SkypeOut account or hundreds of SIP-based providers such as Eutelia, GizmoProject, VoipCheap, VoipStunt, Free World & SIPNET over fring, even from non-SIP enabled handsets.
As fring automatically roams between Wi-Fi and 3G networks, you can effortlessly login to recognized Wi-Fi hotspots, mindlessly gaining access to the best network for optimal call quality and savings.
Easily download fring into your handset and begin fringing in less than a minute.
fring bypasses traditional mobile voice and SMS text messaging services by utilizing the mobile handsets native internet connection. fring does not require any dedicated hardware or airtime and works with phones purchased through any mobile operator. The patent-pending peer-to-peer mobile VoIP technology delivers full-duplex voice quality with rich internet functionality and maximum network efficiency.<<less
Download (350KB)
Added: 2009-04-15 License: Freeware Price: Free
242 downloads
TurboCall 1.0.3+
TurboCall is an extension which adds a phone call function to your browser. more>>
TurboCall is an extension which adds a phone call function to your browser.
Select any phone number on any web page, or click on a phone number in your contact list in the integrated panel, and you will receive an incoming call from the desired destination number within seconds.
Main features:
- No obligation to subscribe after trial period
- Use your regular landline or cell phone
- Low international rates!
- Accessible worldwide
- Store your personal contact list
- No connection fee, no maintenance fee!
<<lessSelect any phone number on any web page, or click on a phone number in your contact list in the integrated panel, and you will receive an incoming call from the desired destination number within seconds.
Main features:
- No obligation to subscribe after trial period
- Use your regular landline or cell phone
- Low international rates!
- Accessible worldwide
- Store your personal contact list
- No connection fee, no maintenance fee!
Download (0.026MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
930 downloads
FritzCallerID 0.2
FritzCallerID is a SuperKaramba theme that shows number, name and address (if available) for incomming and outgoing calls. more>>
FritzCallerID is a SuperKaramba theme that shows number, name and address (if available) for incoming and outgoing calls via the AVM FritzBox (http://avm.de).
It searches for the name and address for a certain number in the German phone book www.dasoertliche.de.
Phone numbers are fetched via the integrated callmonitor of the FritzBox, available on Port 1012. Before using it, you first have to open this Port of your FritzBox by dialing #96*5* from any connected phone. Firmware version xx.03.99 or newer is required.
It is still very experimental, no error handling.
<<lessIt searches for the name and address for a certain number in the German phone book www.dasoertliche.de.
Phone numbers are fetched via the integrated callmonitor of the FritzBox, available on Port 1012. Before using it, you first have to open this Port of your FritzBox by dialing #96*5* from any connected phone. Firmware version xx.03.99 or newer is required.
It is still very experimental, no error handling.
Download (0.042MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1222 downloads
Sys::AlarmCall 1.2
Sys::AlarmCall is a package to handle the logic in timing out calls with alarm() and an ALRM handler. more>>
Sys::AlarmCall is a package to handle the logic in timing out calls with alarm() and an ALRM handler, allowing nested calls as well.
SYNOPSIS
use Sys::AlarmCall;
$result = alarm_call($timeout1,$func1,@args1);
@result = alarm_call($timeout2,$func2,@args2);
Sys::AlarmCall provides a straightforward function call to use the alarm handler. It also handles the logic which allows nested time out calls if timeout calls are run thorugh the alarm_call() functions.
The main advantages of Sys::AlarmCall are that:
1. simple calls, e.g.
@result = &func(@args); #Normal function call with &
$result = func(@args);; #Normal function call
@result = &$code_reference(@args);
@result = $obj->func(@args); #Object method call
become simple calls:
@result = alarm_call($timeout,&func,@args);
$result = alarm_call($timeout,func,@args);
@result = alarm_call($timeout,$code_reference,@args);
@result = alarm_call($timeout,->func,$obj,@args);
<<lessSYNOPSIS
use Sys::AlarmCall;
$result = alarm_call($timeout1,$func1,@args1);
@result = alarm_call($timeout2,$func2,@args2);
Sys::AlarmCall provides a straightforward function call to use the alarm handler. It also handles the logic which allows nested time out calls if timeout calls are run thorugh the alarm_call() functions.
The main advantages of Sys::AlarmCall are that:
1. simple calls, e.g.
@result = &func(@args); #Normal function call with &
$result = func(@args);; #Normal function call
@result = &$code_reference(@args);
@result = $obj->func(@args); #Object method call
become simple calls:
@result = alarm_call($timeout,&func,@args);
$result = alarm_call($timeout,func,@args);
@result = alarm_call($timeout,$code_reference,@args);
@result = alarm_call($timeout,->func,$obj,@args);
Download (0.005MB)
Added: 2007-04-13 License: Perl Artistic License Price:
925 downloads
DangoTalk 1.0
DangoTalk is a widget that allows you to make free anonymous phone calls. more>>
DangoTalk project is a OS X Dashboard Widget that allows you to use the Interconnect API to make free phone calls between any two PSNT DIDs.
The system is built using Asterisk.
Upon request the Interconnect service will call the two numbers and connect them... similar to click-to-talk... but initated from a desktop application instead of a web application.
<<lessThe system is built using Asterisk.
Upon request the Interconnect service will call the two numbers and connect them... similar to click-to-talk... but initated from a desktop application instead of a web application.
Download (0.23MB)
Added: 2006-09-22 License: GPL (GNU General Public License) Price:
1129 downloads
KMobileTools 0.5 Beta 3
KMobileTools is a nice KDE-based application that allows to control mobile phones with your PC. more>>
KMobileTools is a nice KDE-based application that allows to control mobile phones with your PC.
It handles full SMS control, dialing calls, reading from phonebook, last dials, received and unanswered calls and phone status monitoring (battery and signal for now).
KMobileTools is based on a Motorola C350 mobile phone, buts also tested on some Nokia and Ericsson phones.
Enhancements:
- This beta includes one of the most wanted features: the Gammu Engine.
- Its still a bit too difficult to configure, but its fully working and ready to be tested.
- This version also includes a lot of bugfixes and full support for the incoming kdebluetooth version, which will be an important release.
- KNotify support was added for notifying the user about events.
<<lessIt handles full SMS control, dialing calls, reading from phonebook, last dials, received and unanswered calls and phone status monitoring (battery and signal for now).
KMobileTools is based on a Motorola C350 mobile phone, buts also tested on some Nokia and Ericsson phones.
Enhancements:
- This beta includes one of the most wanted features: the Gammu Engine.
- Its still a bit too difficult to configure, but its fully working and ready to be tested.
- This version also includes a lot of bugfixes and full support for the incoming kdebluetooth version, which will be an important release.
- KNotify support was added for notifying the user about events.
Download (1.0MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
884 downloads
Call center software 0.93
Call center software is one of the most important aspects of any call help center. more>>
Call center software is one of the most important aspects of any call help center, being able to track and manage calls can be the key to high customer safisfacation. Our 100% free call center software solution is based on php and the mysql database.
A call center is a place where customers calls are handled by an organization, usually with some amount of computer automation.
Call center refers to the IT function or process applied to support tasks across all operations. A method of Dealing with incoming calls and requests in a customer service environment.
Enhancements:
- A problem with the change password function was fixed to improve the error messages.
<<lessA call center is a place where customers calls are handled by an organization, usually with some amount of computer automation.
Call center refers to the IT function or process applied to support tasks across all operations. A method of Dealing with incoming calls and requests in a customer service environment.
Enhancements:
- A problem with the change password function was fixed to improve the error messages.
Download (0.030MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1133 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above incoming calls search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed