messenger im
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 552
PlanetaMessenger 03
PlanetaMessenger.org, the universal Instant Messenger fully written in java. more>>
PlanetaMessenger.org, the universal Instant Messenger fully written in java. Welcome to PlanetaMessenger.org. This site is the home of PlanetaMessenger.org, the universal Instant Messenger fully written in java.
You have 2 first, and better, possibilities to install PlanetaMessenger.org. If youre in Windows, you can install it using the native installer. To install using the native installer, please go to http://sourceforge.net/project/showfiles.php?group_id=40468 and get the latest Windows release (type exe 32-bit Windows). The installer creates all shortcuts needed to launch and uninstall the application.
The other possibility is download the Platform independent installer and install it using the command (in command line):
java -jar planetamessenger*.jar
The java based installer will guide you throught installation process. After finish the installation process, go to PlanetaMessenger.orgs installation directory, enter in bin directory, then you can launch the following files:
planetamessenger.sh (for Linux/Solaris and other UNIXes users)
planetamessenger.bat (for Windows users)
Main features:
- Plugin support for many IM networks like, ICQ, AIM, MSN, ComVC, Yahoo, Jabber and so on.
- Multi-profile support.
- Future improvements:
- Support to internationalization.
- Skins, and much more
<<lessYou have 2 first, and better, possibilities to install PlanetaMessenger.org. If youre in Windows, you can install it using the native installer. To install using the native installer, please go to http://sourceforge.net/project/showfiles.php?group_id=40468 and get the latest Windows release (type exe 32-bit Windows). The installer creates all shortcuts needed to launch and uninstall the application.
The other possibility is download the Platform independent installer and install it using the command (in command line):
java -jar planetamessenger*.jar
The java based installer will guide you throught installation process. After finish the installation process, go to PlanetaMessenger.orgs installation directory, enter in bin directory, then you can launch the following files:
planetamessenger.sh (for Linux/Solaris and other UNIXes users)
planetamessenger.bat (for Windows users)
Main features:
- Plugin support for many IM networks like, ICQ, AIM, MSN, ComVC, Yahoo, Jabber and so on.
- Multi-profile support.
- Future improvements:
- Support to internationalization.
- Skins, and much more
Download (3.7MB)
Added: 2007-02-25 License: GPL (GNU General Public License) Price:
972 downloads
Yahoo Messenger 1.0.4
Yahoo! Messenger for UNIX is an instant messenger. more>>
Yahoo! Messenger for Unix sends instant messages to your Windows and Unix friends!
Enhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
<<lessEnhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
Download (0.91MB)
Added: 2005-06-15 License: LGPL (GNU Lesser General Public License) Price:
1171 downloads
Devel::Messenger 0.01
Devel::Messenger is a Perl module who let your code talk to you. more>>
Devel::Messenger is a Perl module who let your code talk to you.
SYNOPSIS
use Devel::Messenger qw{note};
# set up localized subroutine
local *note = Devel::Messenger::note {
output => print,
level => 2,
pkgname => 1,
linenumber => 1,
wrap => ["< !--", "-- >n"],
};
# print a note
note "This is a sample noten";
# print a multipart note
note "This is line two. ";
note "continue", "This is still line two.n";
# print if level is high enough
note 2, "This is debug level twon";
Do you want your program to tell you what it is doing? Send this messenger into the abyss of your code to bring back to you all the pertinent information you want.
First, set notes in your code, in-line comments that start with note instead of #.
# this is an in-line comment (it is boring)
note "this is a note (things start getting exciting now)n";
To keep your program from giving you terrible errors about note not being defined, give it something to do.
use subs qw{note};
sub note {}
Or you could import the slightly more powerful note subroutine defined in Devel::Messenger.
use Devel::Messenger qw{note};
By itself, note does not do anything. Right now, all it is doing is making sure Perl doesnt give you an error message and die.
<<lessSYNOPSIS
use Devel::Messenger qw{note};
# set up localized subroutine
local *note = Devel::Messenger::note {
output => print,
level => 2,
pkgname => 1,
linenumber => 1,
wrap => ["< !--", "-- >n"],
};
# print a note
note "This is a sample noten";
# print a multipart note
note "This is line two. ";
note "continue", "This is still line two.n";
# print if level is high enough
note 2, "This is debug level twon";
Do you want your program to tell you what it is doing? Send this messenger into the abyss of your code to bring back to you all the pertinent information you want.
First, set notes in your code, in-line comments that start with note instead of #.
# this is an in-line comment (it is boring)
note "this is a note (things start getting exciting now)n";
To keep your program from giving you terrible errors about note not being defined, give it something to do.
use subs qw{note};
sub note {}
Or you could import the slightly more powerful note subroutine defined in Devel::Messenger.
use Devel::Messenger qw{note};
By itself, note does not do anything. Right now, all it is doing is making sure Perl doesnt give you an error message and die.
Download (0.007MB)
Added: 2007-05-08 License: Perl Artistic License Price:
906 downloads
Net::YahooMessenger 0.16
Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol. more>>
Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol.
SYNOPSIS
use Net::YahooMessenger;
my $yahoo = Net::YahooMessenger->new(
id => your_yahoo_id,
password => your_password,
);
$yahoo->login or die "Cant login Yahoo!Messenger";
$yahoo->send(recipient_yahoo_id, Hello World!);
MAINTAINERS WANTED
This module is not in active maintenance now. Thus it doesnt play well with recent Yahoo! protocol updates. If you are interested in taking over this module on CPAN, please let me know your CPAN author ID to me at miyagawa[at]cpan.org.
Net::YahooMessenger is a client class for connecting with the Yahoo!Messenger server, and transmitting and receiving a message.
Since implement of a protocol is the result of analyzing and investigating a packet, it has an inadequate place. However, it is working as expected usually.
<<lessSYNOPSIS
use Net::YahooMessenger;
my $yahoo = Net::YahooMessenger->new(
id => your_yahoo_id,
password => your_password,
);
$yahoo->login or die "Cant login Yahoo!Messenger";
$yahoo->send(recipient_yahoo_id, Hello World!);
MAINTAINERS WANTED
This module is not in active maintenance now. Thus it doesnt play well with recent Yahoo! protocol updates. If you are interested in taking over this module on CPAN, please let me know your CPAN author ID to me at miyagawa[at]cpan.org.
Net::YahooMessenger is a client class for connecting with the Yahoo!Messenger server, and transmitting and receiving a message.
Since implement of a protocol is the result of analyzing and investigating a packet, it has an inadequate place. However, it is working as expected usually.
Download (0.016MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1052 downloads
Galaxium Messenger 0.4.6
Galaxium Messenger is an Instant Messenger for GNOME using the MSN service. more>>
Galaxium is a MSN service messenger application that runs in the GNOME environment on Linux. Galaxium Messenger is written by Adam Peck and Philippe Durand, students of the Southern Alberta Institute of Technology.
Here you will find information about the development of this new instant messenger and have an opportunity to involve yourself in the process!
<<lessHere you will find information about the development of this new instant messenger and have an opportunity to involve yourself in the process!
Download (0.63MB)
Added: 2007-01-01 License: GPL (GNU General Public License) Price:
1055 downloads
Linux MSN Messenger Engine 1.0
Linux MSN Messenger Engine is a fully asynchronous, and fully multithreaded MSN messenger engine. more>>
Linux MSN Messenger Engine is a fully asynchronous, and fully multithreaded MSN messenger engine.
Preliminary releases will be statically combined with an ncurses console-based EPIC4-like interface for instant messaging functionality.
Enhancements:
- Code cleanup
<<lessPreliminary releases will be statically combined with an ncurses console-based EPIC4-like interface for instant messaging functionality.
Enhancements:
- Code cleanup
Download (0.056MB)
Added: 2006-05-30 License: GPL (GNU General Public License) Price:
827 downloads
MezzengerKlient 0.1
MezzengerKlient (MZK) is a simple PHP class for making MSN Messenger bots. more>>
MezzengerKlient (MZK) is a simple PHP class for making MSN Messenger bots. It uses object oriented programming, with the use of Events, for handling and processing the actions made in the Notification Session and SwitchBoard sessions. The project uses the MSNP9 protocol.
<<less Download (MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
Kopete Massive Messenger 0.1
Kopete Massive Messenger is a Kommander script that lets you send repetitive messages to your Kopete contacts. more>>
Kopete Massive Messenger is a Kommander script that lets you send repetitive messages to your Kopete contacts.
<<less Download (0.016MB)
Added: 2006-02-22 License: GPL (GNU General Public License) Price:
1355 downloads
Yafumato Web Messenger 0.7.1
Yafumato Web Messenger is a Web-based instant messenger client. more>>
Yafumato Web Messenger is a Web-based instant messenger client. Users can connect to supported instant messenger services using only a Web browser via HTTP (or HTTPS).
The Yafumato server connects to the messengers by proxy and provides the Web interface to the user, allowing instant messaging from computers where a desktop client cannot be used.
Yafumato Web Messenger is currently alpha software; as such, it has minimal error handling and is not feature complete.
Enhancements:
- The database is now an optional package; users can now login using messenger credentials rather than single sign-on using the database.
- Messenger session handling has been improved; any active messenger sessions are restored upon signin.
- Unstable messenger sessions can be disconnected and replaced using the new "Reset Messenger" link on the status page.
<<lessThe Yafumato server connects to the messengers by proxy and provides the Web interface to the user, allowing instant messaging from computers where a desktop client cannot be used.
Yafumato Web Messenger is currently alpha software; as such, it has minimal error handling and is not feature complete.
Enhancements:
- The database is now an optional package; users can now login using messenger credentials rather than single sign-on using the database.
- Messenger session handling has been improved; any active messenger sessions are restored upon signin.
- Unstable messenger sessions can be disconnected and replaced using the new "Reset Messenger" link on the status page.
Download (11.4MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
1142 downloads
SIM Instant Messenger 0.9.4.3
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols. more>>
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols.
Based on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
<<lessBased on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
Download (MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
979 downloads
Net::YahooMessenger::CRAM 0.16
Net::YahooMessenger::CRAM is a Yahoo Messenger Challenge-Response Authentication Mechanism. more>>
Net::YahooMessenger::CRAM is a Yahoo Messenger Challenge-Response Authentication Mechanism.
SYNOPSIS
my $cram = Net::YahooMessenger::CRAM->new();
$cram->set_id($your_yahoo_id);
$cram->set_password($your_password);
$cram->set_challenge_string($string_from_server);
my ($response_type6, $response_type96) = $cram->get_response_strings();
Net::YahooMessenger::CRAM is Challenge-Response Authentication Mechanism for Yahoo Messenger protocol version 9.
<<lessSYNOPSIS
my $cram = Net::YahooMessenger::CRAM->new();
$cram->set_id($your_yahoo_id);
$cram->set_password($your_password);
$cram->set_challenge_string($string_from_server);
my ($response_type6, $response_type96) = $cram->get_response_strings();
Net::YahooMessenger::CRAM is Challenge-Response Authentication Mechanism for Yahoo Messenger protocol version 9.
Download (0.016MB)
Added: 2006-12-12 License: Perl Artistic License Price:
621 downloads
Wooden Fish Messenger 1.0 beta1
Wooden Fish Messenger is an instant messenging client application based on the open Jabber Standard Protocals and the SMACK API. more>>
Wooden Fish Messenger is an instant messenging client application based on the open Jabber Standard Protocals and the SMACK API.
The application is written in Java and can be launched directly from your browser through Java Web Start.
Main features:
- Multiple Jabber accounts,
- Chat, groupchat, message,
- Sounds for presence and incoming message notifications,
- Animated icons,
- Various skins,
- Run on any platform that supports JRE 1.4.x or higher
- Integrated bookmark and room discovery functions to join a group chat room,
- Tabbed group chat interface,
- Conversation history,
- Chat Room configuration,
- and more..
Wooden Fish Messenger is a Java Web Start enabled application. Please click on the image below to install and launch the application.
Wooden Fish Messenger will be installed automatically from your browser and work as standalone desktop application. Before launching the application, please check the Java Runtime section of the requirements page and verify that the Java Runtime Environment is installed and the web browser is configured properly to support Java Web Start JNLP file extension.
<<lessThe application is written in Java and can be launched directly from your browser through Java Web Start.
Main features:
- Multiple Jabber accounts,
- Chat, groupchat, message,
- Sounds for presence and incoming message notifications,
- Animated icons,
- Various skins,
- Run on any platform that supports JRE 1.4.x or higher
- Integrated bookmark and room discovery functions to join a group chat room,
- Tabbed group chat interface,
- Conversation history,
- Chat Room configuration,
- and more..
Wooden Fish Messenger is a Java Web Start enabled application. Please click on the image below to install and launch the application.
Wooden Fish Messenger will be installed automatically from your browser and work as standalone desktop application. Before launching the application, please check the Java Runtime section of the requirements page and verify that the Java Runtime Environment is installed and the web browser is configured properly to support Java Web Start JNLP file extension.
Download (MB)
Added: 2005-09-09 License: GPL (GNU General Public License) Price:
846 downloads
SNIMMER 1.0
SNIMMER stands for Single Network Instant Messaging Mediation and Relay. more>>
SNIMMER stands for Single Network Instant Messaging Mediation and Relay. SNIMMER can talk to any IM network, and can relay instant messages from one IM network to another.
Currently, one cannot use AOL messenger to chat with users on MSN, Yahoo!, or GTalk and vice-versa. SNIMMER overcomes instant messenger non-interoperability.
It has been designed primarily to help webmasters to chat with Web visitors on any IM network using any instant messenger.
What you will need:
1) Internet connection
2) IM account that you always use
3) Create a set of IM accounts for all networks (eg. AOL, ICQ, Yahoo, MSN) that you want to receive visitors from. It is essential that you create brand new accounts that were not used by you for personal chat, otherwise snimmer will clash with you online.
4) Web server where you can run a CGI script. A sample script that comes with this package is written in python but you can re-write it in your favorite language - it is very simple.
5) You neeed Python to be installed on your web server. Also you will need python-xmpp library installed too.
You can grab python here: http://www.python.org/
XMPPPY library download:
http://sourceforge.net/project/showfiles.php?group_id=97081&package_id=103821
6) You should know how to add CGI scripts to pages and how to display results. Sample script works but youll probably want a better integration with your page.
7) You have to know what jabber servers and what jabber transports you are going to use.
You can deploy your own or you can try the ones that are publicly available. You can refer to this page to find the server for you:
http://www.jabber.org/user/publicservers.shtml
In the simplest case youll need to replace example.com with the name of the server you have picked. Though it is not neccessary that transport should be on the same server. You can use transports from other servers if their policies allow that.
How to install it:
1) get it from http://www.snimmer.com/snimmer/snimmer.tar and unpack it
2) open credentials.py with a text editor. You will see something like this (lines numbers are added for readability - they should not be present in the actual file):
1 clients={
2 snimmer@example.com:{
3 login:snimmer,
4 server:example.com,
5 password:snimmer,
6 transports:{
7 xmpp:(example.com,,),
8 # icq:(icq.example.com,123456789,ICQ_password,),
9 # yahoo:(yahoo.example.com,Yahoo_login,Yahoo_password),
10 # msn:(msn.example.com,MSN_login@hotmail.com,MSN_password),
11 # aim:(aim.example.com,AIM_screenname,AIM_password),
13 },
14 },
15
16 ## This is another connection. If you want to be able to receive two calls at the same time
17 ## uncomment it. To receive even more calls - add more such sections
18 # snimmer2@example.com:{
19 # login:snimmer2,
20 # server:example.com,
21 # password:snimmer,
22 # transports:{
23 # icq:(icq.example.com,123456780,ICQ_password2,),
24 # },
25 # },
26
27 }
28
29 SPOOL=rc:snimmerspool
30 SPOOL=r/tmp/snimmerspool
31
32 publisher_im=icq
33 publisher_screenname=123456789
34
35 blocked_ips=blocked.txt
<<lessCurrently, one cannot use AOL messenger to chat with users on MSN, Yahoo!, or GTalk and vice-versa. SNIMMER overcomes instant messenger non-interoperability.
It has been designed primarily to help webmasters to chat with Web visitors on any IM network using any instant messenger.
What you will need:
1) Internet connection
2) IM account that you always use
3) Create a set of IM accounts for all networks (eg. AOL, ICQ, Yahoo, MSN) that you want to receive visitors from. It is essential that you create brand new accounts that were not used by you for personal chat, otherwise snimmer will clash with you online.
4) Web server where you can run a CGI script. A sample script that comes with this package is written in python but you can re-write it in your favorite language - it is very simple.
5) You neeed Python to be installed on your web server. Also you will need python-xmpp library installed too.
You can grab python here: http://www.python.org/
XMPPPY library download:
http://sourceforge.net/project/showfiles.php?group_id=97081&package_id=103821
6) You should know how to add CGI scripts to pages and how to display results. Sample script works but youll probably want a better integration with your page.
7) You have to know what jabber servers and what jabber transports you are going to use.
You can deploy your own or you can try the ones that are publicly available. You can refer to this page to find the server for you:
http://www.jabber.org/user/publicservers.shtml
In the simplest case youll need to replace example.com with the name of the server you have picked. Though it is not neccessary that transport should be on the same server. You can use transports from other servers if their policies allow that.
How to install it:
1) get it from http://www.snimmer.com/snimmer/snimmer.tar and unpack it
2) open credentials.py with a text editor. You will see something like this (lines numbers are added for readability - they should not be present in the actual file):
1 clients={
2 snimmer@example.com:{
3 login:snimmer,
4 server:example.com,
5 password:snimmer,
6 transports:{
7 xmpp:(example.com,,),
8 # icq:(icq.example.com,123456789,ICQ_password,),
9 # yahoo:(yahoo.example.com,Yahoo_login,Yahoo_password),
10 # msn:(msn.example.com,MSN_login@hotmail.com,MSN_password),
11 # aim:(aim.example.com,AIM_screenname,AIM_password),
13 },
14 },
15
16 ## This is another connection. If you want to be able to receive two calls at the same time
17 ## uncomment it. To receive even more calls - add more such sections
18 # snimmer2@example.com:{
19 # login:snimmer2,
20 # server:example.com,
21 # password:snimmer,
22 # transports:{
23 # icq:(icq.example.com,123456780,ICQ_password2,),
24 # },
25 # },
26
27 }
28
29 SPOOL=rc:snimmerspool
30 SPOOL=r/tmp/snimmerspool
31
32 publisher_im=icq
33 publisher_screenname=123456789
34
35 blocked_ips=blocked.txt
Download (0.020MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1107 downloads
gtmess 0.92
gtmess is a console MSN Messenger client for Linux and other Unix systems that conform to the POSIX standard. more>>
gtmess is a console MSN Messenger client for Linux and other Unix systems that conform to the POSIX standard. gtmess project supports the MSNP9 protocol version.
Main features:
- supports MSNP9 protocol version
- portable to many unix (POSIX) systems
- console interface (using curses)
- full unicode (UTF-8) support for input and output
- multiple threads (using pthreads)
- SSL support (using OpenSSL)
- notification window (external Tcl/Tk script)
- spoof typing user
- sound effects
<<lessMain features:
- supports MSNP9 protocol version
- portable to many unix (POSIX) systems
- console interface (using curses)
- full unicode (UTF-8) support for input and output
- multiple threads (using pthreads)
- SSL support (using OpenSSL)
- notification window (external Tcl/Tk script)
- spoof typing user
- sound effects
Download (0.30MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1083 downloads
SimpServer 2.1.0
SimpServer acts as a proxy between your IM client and the server, encrypting all conversations. more>>
SimpServer is the first lightweight instant messaging security gateway for Unix systems. Install SimpServer on a Unix system and configure IM clients on your local network, and conversations with Simp-equipped parties will be automatically encrypted. SimpServer can indeed accept simultaneous remote connections and thus secure local and/or remote clients.
With SimpServer, corporate environments can now benefit from centralized instant messenger encryption. Linux fans can now secure their MSN conversations. SimpServer is beta and is free for any use.
Main features:
- This version of SimpServer supports MSN Messenger, ICQ, Yahoo! and AIM encryption using the Diffie-Hellman key-agreement scheme. It does not currently support authenticated modes such as the RSA modes of the Windows version, nor does it support other IM protocols. That limitation brings an important advantage: SimpServer can be used as a security server for multiple IM clients, not only the one on the local machine, but others on the network. It is indeed possible to configure clients to use SimpServer as a proxy server, which will secure all outgoing IM flows.
-
-As for the Windows version, the Unix edition can be highly customized: messages can be colored depending on their cryptographic state and contact names can be prefixed during conversations (MSN) to quickly see if the conversation is secure.
<<lessWith SimpServer, corporate environments can now benefit from centralized instant messenger encryption. Linux fans can now secure their MSN conversations. SimpServer is beta and is free for any use.
Main features:
- This version of SimpServer supports MSN Messenger, ICQ, Yahoo! and AIM encryption using the Diffie-Hellman key-agreement scheme. It does not currently support authenticated modes such as the RSA modes of the Windows version, nor does it support other IM protocols. That limitation brings an important advantage: SimpServer can be used as a security server for multiple IM clients, not only the one on the local machine, but others on the network. It is indeed possible to configure clients to use SimpServer as a proxy server, which will secure all outgoing IM flows.
-
-As for the Windows version, the Unix edition can be highly customized: messages can be colored depending on their cryptographic state and contact names can be prefixed during conversations (MSN) to quickly see if the conversation is secure.
Download (0.59MB)
Added: 2006-06-17 License: Free for non-commercial use Price:
1226 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 messenger im 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