started messenger
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2819
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
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
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
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
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
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
GOIM - Gamers Own Instant Messenger 1.1.0
GOIM is a full featured jabber / XMPP client with special features (extensions) for gamers. more>>
GOIM is a full featured jabber / XMPP client with special features (extensions) for gamers. (e.g. broadcasting a notification when you join a server.. and see which games others play and join them with one click on the game icon beside their name)
GOIM uses the Eclipse Rich Client Plattform as GUI and SMACK as its jabber library.
You can also use GOIM InsideEclipse IDE.
GOIM is still in an early Beta Stage, which means it may contains bugs and misses features.
Main features:
- Send information about which game is played on which server (This is done by sending a presence with extended information. The information which game on which server will also be visible in the show part, so even people using another client (or icq/msn/..) will see what/where you are playing.
- Current supported games are: Unreal Tournament 2004, Live for Speed, Americas Army, TeamSpeak 2 (not a game, but works the same way)
- Basic Messenging and Presence
- Discover and subscribe to Jabber transports (which allows communication with icq, msn, aim, etc. users)
Enhancements:
- This release includes two new plugins - the InGame Messenger for DirectX 8 games, as well as the GameServer Browser which allows you to query HLSW server lists.
In addition there were many other fixes and enhancements:
- Usability fixes for linux and macOS (including a new chat window which does not use the Browser widget and therefore does not rely on any platform dependent features)
- Added support for jabber File Transfer
- Commands used to launch a game can now be customized
- Fixed bug when autojoining MUC rooms on connecting.
<<lessGOIM uses the Eclipse Rich Client Plattform as GUI and SMACK as its jabber library.
You can also use GOIM InsideEclipse IDE.
GOIM is still in an early Beta Stage, which means it may contains bugs and misses features.
Main features:
- Send information about which game is played on which server (This is done by sending a presence with extended information. The information which game on which server will also be visible in the show part, so even people using another client (or icq/msn/..) will see what/where you are playing.
- Current supported games are: Unreal Tournament 2004, Live for Speed, Americas Army, TeamSpeak 2 (not a game, but works the same way)
- Basic Messenging and Presence
- Discover and subscribe to Jabber transports (which allows communication with icq, msn, aim, etc. users)
Enhancements:
- This release includes two new plugins - the InGame Messenger for DirectX 8 games, as well as the GameServer Browser which allows you to query HLSW server lists.
In addition there were many other fixes and enhancements:
- Usability fixes for linux and macOS (including a new chat window which does not use the Browser widget and therefore does not rely on any platform dependent features)
- Added support for jabber File Transfer
- Commands used to launch a game can now be customized
- Fixed bug when autojoining MUC rooms on connecting.
Download (13.2MB)
Added: 2006-07-02 License: GPL (GNU General Public License) Price:
1216 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
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
Akeni Instant Messaging IM - Pro 1.2.75
Akeni Instant Messaging - Pro is a client/server instant messaging platform. more>>
Akeni Instant Messaging - Pro is a client/server instant messaging platform that allows companies to host their own secured private IM system. The client has an user interface similar to AIM, ICQ, or MSN Messenger. It supports all the standard IM features such as chat, group conference, presence management, file transfer, offline messages and emergency alert/notification. Extra features include contact management and optional tabbed chat sessions.
The server has administration tools like managing user accounts, client-side logging capabilities and peer-to-peer file transfers. Akeni Pro Messenger can be setup on a private network without connecting to the internet and can easily be setup for use inside and outside the company firewall.
<<lessThe server has administration tools like managing user accounts, client-side logging capabilities and peer-to-peer file transfers. Akeni Pro Messenger can be setup on a private network without connecting to the internet and can easily be setup for use inside and outside the company firewall.
Download (3.1MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1225 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
Eureka Encryption Messenger 4 4.0.0
Eureka Messenger 4 software delivers secure and private messaging and unlimited file transfers over the internet. more>>
Eureka Messenger 4 software delivers secure and private messaging and unlimited file transfers over the internet.
This application no longer requires the VB Runtimes, but this new version 4 is not compatible with the previous windows version.
Installation:
Actually there is no install for this application. You can run it right where you unzipped it, or copy the files unzipped wherever you want them.
If there is a firewall on either machine, some configuration may be required in order to make a connection.
The program has a Help file to guide you on how it works, although it is simple enough to run without much assistance.
You probably need to issue a chmod +x messenger before it can run. On some linux systems you may also need to issue a chmod +755 messenger.
<<lessThis application no longer requires the VB Runtimes, but this new version 4 is not compatible with the previous windows version.
Installation:
Actually there is no install for this application. You can run it right where you unzipped it, or copy the files unzipped wherever you want them.
If there is a firewall on either machine, some configuration may be required in order to make a connection.
The program has a Help file to guide you on how it works, although it is simple enough to run without much assistance.
You probably need to issue a chmod +x messenger before it can run. On some linux systems you may also need to issue a chmod +755 messenger.
Download (3.1MB)
Added: 2007-05-10 License: Freeware Price:
900 downloads
IRC to MSN gateway 0.1
This is the IRC gateway for Microsoft(tm) Messenger. more>>
This is the IRC gateway for Microsoft(tm) Messenger.
You probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
<<lessYou probably wonder what this is and why I wrote this. Some more information can be found in the DESIGN document that is included in this package.
This software is written by Johannes Verelst and is licensed through the GPL license (http://www.gnu.org/licenses/gpl.html).
Note that this is pre-alpha code, it probably does a bit that you want, but dont email me bugreports or feature requests. It is under heavy development.
If this program doesnt run try to install corectly all required perl modules yourself.
The idea for this program came when I was getting annoyed by the fact that I had to use different programs for both IRC and MSN. Since I dont know of any good MSN clients that can do IRC too (on unix, ofcourse), I started thinking about the other way around: an IRC client that can do MSN.
When I saw a piece of software written by Adam Swann that allows easy connectivity to MSN with perl, I decided to write an IRC server in perl that would connect to MSN for you. This is the result.
Download (0.009MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1229 downloads
Yahoo! Messenger for RedHat 9 1.0.4-1
Yahoo! Messenger 1.0.4-1 for RedHat 9 more>> Yahoo! Messenger 1.0.4-1 for RedHat 9
Whats New In This Version?
Consistent Look - The popular animated emoticons included in other versions of Messenger are now in the Unix version.
Archiving - Archived messages are now rendered in HTML, work faster, and are more reliable.
Bugfixes - Sound on RedHat kernels now works reliably.
Content - Content added from Address Book.
Performance Improvements - P2P file transfer is now possible from Windows clients.
To install the Linux version of Messenger:
RedHat Linux:
1. Save the appropriate file listed below to your machine.
2. Log in as root and type
rpm -i
with the appropriate filename depending on your version to install the application.
3. Run /usr/bin/ymessenger from X Window to launch the application.<<less
Download (693KB)
Added: 2009-04-28 License: Freeware Price: Free
224 downloads
Other version of Yahoo! Messenger for RedHat
Consistent Look - The popular animated emoticons included in other versions of Messenger are ... To install the Linux version of Messenger: RedHat Linux: 1. Save the appropriate file listedLicense:Freeware
License:Freeware
License:Freeware
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 started messenger 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

