Main > Free Download Search >

Free to communicate software for linux

to communicate

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 371
SAP R/3 Communications Suite 0.9 Beta1

SAP R/3 Communications Suite 0.9 Beta1


SAP R/3 Communications Suite allows SAP R/3 servers to communicate with external devices such as fax and GSM modems. more>>
SAP R/3 Communications Suite allows SAP R/3 servers to communicate with external devices such as fax and GSM modems by sending and receiving a fax or SMS.

SAP R/3 Communications Suite provides an easy configuration through a Web interface and a JMX console.
<<less
Download (28.6MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
702 downloads
Clickatell SMS API 1.5

Clickatell SMS API 1.5


Clickatell SMS API provides a tool for sending SMS messages using the Clickatell gateway. more>>
Clickatell SMS API provides a tool for sending SMS messages using the Clickatell gateway.
It provides support to authenticate to this service and query for the current account balance.
This class use the fopen or CURL module to communicate with the gateway via HTTP/S.
Enhancements:
- Fixed bug in function encode_message (tnx Neil)
<<less
Download (0.033MB)
Added: 2007-02-15 License: BSD License Price:
996 downloads
MetaMonitor 0.4.5

MetaMonitor 0.4.5


MetaMonitor is a simple program watches the syslogs or metalogs log file and pops up the window whenever the new message comes more>>
MetaMonitor is a software which watches the syslogs or metalogs log file and pops up the window whenever the new message comes. You can specify the file to watch and a regular expression for parsing the log line, so you can watch other than log files too.
Main features:
- Ability to monitor Syslogs, Metalogs or custom file
- Ability to change default regular expression for parsing the logline
- Ability to change interval between single file checks
- Ability to communicate via DCOP
- Ability to configure popups (groupping, lifetime)
Enhancements:
- Added spanish translation (Alejandro Araiza Alvarado)
- Updated other translations files
- Added themes support (can set the skin, text colors and body layout with the qt richtext)
- Commands button -> Commands anchor
- Complete rebuild of the configuration window
- Fixed popups positioning. Now its sensitive on the trays position and doesnt hide kicker
- Fixed keyboard shortcuts in the advanced config (thanks Florian)
- Changed the text in About-Window to a little less stupid ;)
- Added ability to clear the log window
- Updated AUTHORS file
<<less
Download (MB)
Added: 2005-12-13 License: GPL (GNU General Public License) Price:
1411 downloads
Chipcard::CTAPI 0.2

Chipcard::CTAPI 0.2


Chipcard::CTAPI is a Perl module for communication with chipcard terminals. more>>
Chipcard::CTAPI is a Perl module for communication with chipcard terminals.

SYNOPSIS

use Chipcard::CTAPI;

my $ct = new Chipcard::CTAPI(interface => Χpcard::CTAPI::PORT_COM1)
or die "Cant communicate with card terminal";

my $memory_size = $ct->getMemorySize();

$ct->read(0, $memory_size)
or die "Cant read data from card.n";
$ct->dumpCommunication("Content: ", $ct->getData, $ct->getDataLength);

my $content = "Hello, world!n";
$ct->setData($content);
$ct->write(0, $ct->getDataLength)
or die "Cant write new content to card.n";

$ct->close;

ABSTRACT

Chipcard::CTAPI enables Perl programs to communicate with chipcard terminals based on the low-level CTAPI driver.

Using the CTAPI (card terminal application programming interface) is a simple yet powerful way to communicate with chipcard terminals. There are more advanced APIs available, like PC/SC, but in general they are not as easy and fast to set up as CTAPI. Especially when an application is not all about chipcards but just includes some features which can make use of them, CTAPI is often the best way to go as it implies less overhead for the end user.

Chipcard::CTAPI is a Perl module which provides direct access to the low-level CTAPI functions (which are, in fact, only three), but focusses on a couple of convenience methods for reading and writing memory cards.

<<less
Download (0.028MB)
Added: 2007-04-12 License: Perl Artistic License Price:
931 downloads
ScitePM 1.6.8

ScitePM 1.6.8


ScitePM is a lightweight, Gtk-based project manager for use with the SciTE editor. more>>
ScitePM is a lightweight, Gtk-based project manager for use with the SciTE editor. It allows the user to organize a set of files as a project, like most IDEs, and then open them within SciTE.
ScitePM uses the SciTE "Director" interface to communicate with SciTE. Note also that SciTE must be named "SciTE" or "scite" to allow ScitePM to correctly launch it. If this is not the case on your system, create a symlink something like this:
ln -s /usr/local/bin/scite_exec_blah_blah ~/bin/scite (Obviously that assumes that SciTE is /usr/local/bin/scite_exec_blah_blah on your system)
Usage:
ScitePM is very simple to use. Click the "Open Project," "Save Project," or "Add Files" buttons to do the obvious things. Right-click on the main pane of the app to add files or groups (i.e. folders). Drag and drop folders and files within the app to arrange to your satisfaction.
To open a file, double-click it or highlight it and press return/enter. Note that the SciTE executable must be named "SciTE" for ScitePM to launch it!
The command line syntax for scitepm is:
scitepm [-q|--quiet] [-v|--version] [-h|--help] [project-path]
-q | --quiet = do not show the "About" dialog at startup.
-v | --version = print the application version to stdout at startup
-h | --help = print the usage (what youre reading now) to stdout
[project-path] = the path to a ScitePM project file to load at startup
Enhancements:
- rrwood - 2006/05/27 - Activate SciTE via "_NET_ACTIVE_WINDOW" message to ewmh-compliant window manager
<<less
Download (0.056MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1196 downloads
SpoonRPC 0.1.1

SpoonRPC 0.1.1


SpoonRPC is a python module that provides a distributed communication system for interprocess communication. more>>
SpoonRPC is a python module that provides a distributed communication system for interprocess communication. The project doesnt actually provide RPC at the moment, because message passing turned out to be a lot easier, and probably more useful anyway.
Main features:
- Safe, efficient object serialization with ASN.1 BER
- Simple, easy messaging between nodes
- Message routing
- Transport agnostic, just needs a stream of some kind.
- Can create ad-hoc networks of nodes with multiple links for reliability
- Licensed under the MIT license.
poonRPC provides the ability to connect many different processes together and send messages between them. The processes can be running across any number of hosts. Security is up to the implementation, but by using SSL or paramiko adding a layer of security is easy.
A message consists of a string to identify the message type, and an arbitrary object attachment. Messages can be dispatched, by the message type, to functions by using a decorator. Arbitrary python objects are serialized using BER, however only the data members of the object are serialized. Code cannot be serialized, this is a feature, not an oversight. Each process must have a copy of the class for the objects serialized.
Each node has one or more links to other nodes which forms a larger network of nodes. Messages are routed using a dynamic routing algorithm, the most efficient route is chosen as nodes and links come and go. This allows nodes that do not have a direct connection between eachother to communicate.
<<less
Download (0.023MB)
Added: 2006-11-30 License: MIT/X Consortium License Price:
1058 downloads
MP-MPICH 1.4.0

MP-MPICH 1.4.0


MP-MPICH provides a Multi-platform MPI implementation. more>>
MP-MPICH provides a Multi-platform MPI implementation.

MP-MICH is a Multi-platform uniform MPI implementation, based on MPICH and SCI-MPICH, resulting in a high performance, consistent MPI across both ethernet and SCI networks in a hybrid environment. There is a single, standardized source tree for all platforms. It is compliant with the MPI-1 standard.

MP-MPICH uses one common source tree for this purpose. It has a new device for Windows NT/2000/2003 to communicate via sockets, and an adapted shared memory device for SMP systems. Additionally, MP-MPICH is a superset of SCI-MPICH, that means that it includes another new device to support direct communication via a fast SCI interconnect. With SCI-MPICH, inter-process message latencies for small messages (for processes running on separate nodes) below 4 us are achieved, and the current measured maximum inter-node (PingPong-)bandwidth is at about 310 MB/s.

In fact, the development of MP-MPICH started when the first release of SCI-MPICH was finished. This release was designed for Solaris and Linux, but since it uses our SMI library which is also available for Windows NT, we thought it would be fun to port SCI-MPICH to NT. The initial port took only 4 hours and we were up and running with SCI-MPICH for NT. The additional/modified devices which are necessary to use MPICH on NT without these extremely fast SCI boards required more time to develop.

<<less
Download (11.8MB)
Added: 2007-03-02 License: BSD License Price:
977 downloads
IRC BotNET 1.0

IRC BotNET 1.0


BotNET is an IRC bot that has two modes: stand-alone and BotNET mode. more>>
IRCBotNET is a Botnet. It is a network of IRC bots that communicate with one another. They share a means of communication whereby all bots speak to one another and exchange information. They are useful for keeping and maintaining a channel by acting as a group of channel bots that work together with a common goal.

Say, for instance, you have one IRC bot keeping a channel and a netsplit occurs or the bot dies for some reason. Immediately the channel becomes chaotic and anarchic without an IRC bot keeping the peace. With a Botnet, even if an IRC bot dies, here still remains the rest of the bots on the Botnet to continue maintaining the channel and the loss of the one bot means nothing as the other bots do its exact same job.

BotNET is an extremely powerful IRC BOT and has many features.
BotNET doesnt necessarily have to run as a Botnet, it can run as a normal IRC bot and in fact does this by default. It has a massive collection of functions that can be seen in the BotNET man pages. When run as a Botnet, BotNET has supreme capabilities that have never been attempted before in Botnets. When a BotNET bot is run in Botnet mode, it connects to a BotNET Communication Stream Server (botserv) that is included in this package.

It uses this server to communicate with the other bots on the Botnet. The difference here is that not only can it do whatever any other Botnet can do, but it also uses this stream of communication with its added IRC Stand-alone bot functionality. For instance, if you add a user to the bot, immediately, all other bots connected to the database add this user to their local databases and a global-wide Botnet database is maintained. So you can use any one of the bots on the Botnets for anything that you so desire. This powerful feature makes BotNET very predominant over other Botnets.
<<less
Download (0.027MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
1322 downloads
Echomine Feridian 1.0b4

Echomine Feridian 1.0b4


Echomine Feridian is an easy-to-use Java API that gives you quick and easy access to the XMPP network. more>>
Echomine Feridian is an easy-to-use Java API that gives you quick and easy access to the XMPP network used in IM services such as Google Talk.
Echomine Feridian allows you to communicate with XMPP/Jabber servers for sending and receiving instant messages, presence management, and custom extensions to the XMPP protocol.
Enhancements:
- This release fixes a show-stopping bug where connections are closed when a packet is programmatically sent.
- It also fixes some other issues.
- In addition, there are many fixes to the maven distribution mechanism.
- Distribution files are now properly managed under maven.
<<less
Download (1.7MB)
Added: 2006-10-10 License: The Apache License 2.0 Price:
1111 downloads
GnomeICU 0.99.12

GnomeICU 0.99.12


GnomeICU is one of the most popular UN*X-based ICQ programs in the world. more>>
GnomeICU project is one of the most popular UN*X-based ICQ programs in the world. Internet chatting has quickly become one of the most popular uses of the Internet - second only to Email.
Instant messaging allows users to communicate in real time with friends, family members, and coworkers in an efficient, unobtrusive manner.
Main features:
- Server-side list storage
- Basic messaging
- File transfer (temporarily broken due to protocol change)
- Contact history
- Visible/Invisible/Ignore lists
- Ability to interface ICU from the command line
- Icon themes
- and many, many more.
<<less
Download (1.8MB)
Added: 2006-10-26 License: GPL (GNU General Public License) Price:
1094 downloads
Net::Milter 0.08

Net::Milter 0.08


Net::Milter provides a masquerade as the MTA to communicate with email filters through a milter interface. more>>
Net::Milter provides a masquerade as the MTA to communicate with email filters through a milter interface.

SYNOPSIS

use Net::Milter;
my $milter = new Net::Milter;
$milter->open(127.0.0.1,5513,tcp);

my ($milter_version,$returned_actions_ref,$returned_protocol_ref) =
$milter->protocol_negotiation();

my (@results) = $milter->send_header(From,martin@localhost);
foreach (@results) {
if ($$_{action} eq reject) {exit;}
}
Also see example in scripts directory.

Perl module to provide a pure Perl implementation of the MTA part the milter interface. The goal of this module is to allow other email systems to easily integrate with the various email filters that accept content via milter.

This implementation of milter is developed from the description provided by Todd Vierling, cvs.sourceforge.net/viewcvs.py/pmilter/pmilter/doc/milter-protocol.txt?rev=1.2 and from examining the tcp output from Sendmail.

<<less
Download (0.010MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1184 downloads
smtp-vilter 1.3.4

smtp-vilter 1.3.4


smtp-vilter is a high-performance content filter for sendmail, which detects email viruses and spam. more>>
smtp-vilter is a high-performance content filter for sendmail, which detects email viruses and spam.

smtp-vilter can pass, discard, or simply mark an email based on the results of a content scan. It relies on third-party products for the actual content scan. It uses the milter API to communicate with sendmail, and backends to communicate with the actual scanning engines.

The backends can be chained to perform a series of checks on each message in one run.

<<less
Download (0.065MB)
Added: 2006-11-12 License: GPL (GNU General Public License) Price:
1090 downloads
ScatterChat 1.0.1

ScatterChat 1.0.1


ScatterChat is a HACKTIVIST WEAPON designed to allow non-technical human rights activists and political dissidents. more>>
ScatterChat is a HACKTIVIST WEAPON designed to allow non-technical human rights activists and political dissidents to communicate securely and anonymously while operating in hostile territory. ScatterChat is also useful in corporate settings, or in other situations where privacy is desired.

It is a secure instant messaging client (based upon the Gaim software) that provides end-to-end encryption, integrated onion-routing with Tor, secure file transfers, and easy-to-read documentation.

Its security features include resiliency against partial compromise through perfect forward secrecy, immunity from replay attacks, and limited resistance to traffic analysis... all reinforced through a pro-actively secure design.
<<less
Download (5.8MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1195 downloads
Pandorabots Chat Bot Interface 1.0

Pandorabots Chat Bot Interface 1.0


Pandorabots Chat Bot Interface is a learning tool for implementing AJAX to communicate between the browser and a server. more>>
Pandorabots Chat Bot Interface project is a learning tool for implementing AJAX to communicate between the browser and a server. The chat bot interface communicates via XML with a free chat bot you create and host at pandorabots.com. The client script controlls a div that records your ongoing conversation. The final product is an embedded chat bot in your Web sit

An AI chat bot is nothing more than a computer program which has been trained to interact with humans using common communication languages. Some have the ability to learn on the fly, others have a "trainer" that tells them what to say for keywords, etc.
<<less
Download (MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
972 downloads
Ubuntu Live Chat Support 0.3.14-7

Ubuntu Live Chat Support 0.3.14-7


UbuntuLiveChatSupport aims to provide an interface to communicate to other ubuntu users with the same language & location. more>>
The UbuntuLiveChatSupport aims to provide an interface to communicate to other ubuntu users with the same language & location, as well as to connect to the official ubuntu channel in Freenode.org. Ubuntu Live Chat Support also aims to get live chat support from ubuntu users right into the desktop menu, via "System > Help > Live Chat Support".
Rationale
People who dont speak english and want local support in their language will face a challenge to gain help in existing documentations, specially when there are just a few documentations for their language. But if they speak to someone that can understand their language, they can talk to an experienced user to provide them with answers. It might as well be positive, because there might be a good chance that they will collaborate on translation of documentations and software for their language, as well as contributing to the Ubuntu work.
Another problem with the current way of getting help in Ubuntu requires the user to read and browse documentations, but what most users really want is getting the right answers to the questions straight. Browsing and reading documentations sometimes require one to research on a particular problem. But to get the right answer from an experience user is the most easiest way.
Scope
This will use Gaim as an IRC client, but will not alter the main Gaim configurations. It will add the IRC channels defined in InternetRelayChat in Gaim buddy list, namely, Localized Channels, Support Channels, and Team Collaboration Channels.
Enhancements:
- Change the name "Auto-Join Default" to "Default"
- Overhaul the Local Channel names
- A new channel will be autojoined based on language.
- Added the language to "Local Languages" group
- Change the name of "Local Ubuntu Channels" to "Local Channels"
- UI improvements, in Nick registration, add a "Passwords do not match" warning.
- Impliment a settings in login page to choose from 2 different layout, the default top channels tab and alternative left channels tab. The static xchat-gnome look is removed.
- Add a new checkbox for privacy, when registration.
- Impliment registration privacy when the checkbox is toggled.
<<less
Download (0.077MB)
Added: 2006-05-15 License: GPL (GNU General Public License) Price:
1258 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5