Main > Free Download Search >

Free send text message software for linux

send text message

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5989
Secure Messaging 1.0

Secure Messaging 1.0


Secure Messaging is a Web-based, alternative mail system for sending and receiving messages. more>>
Secure Messaging is a Web-based, alternative mail system for sending and receiving messages.

Use secure messaging to send and receive messages from a alternative web-based mail system. Using the secure messaging system no actual mail is transmitted through any 3rd party servers.

Only an optional message notice is sent to the recepient, the user needs to visit the site in order to read the message.

Normal SMTP mail can hit multiple servers and can possibly be read, stored, or changed anywhere within the process.

Setup secure messaging on an SSL enabled website to enhance the privacy even more.
<<less
Download (0.15MB)
Added: 2005-10-20 License: GPL (GNU General Public License) Price:
1466 downloads
Kopete Massive Messenger 0.1

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
Gtk2::Ex::Dialogs::Message 0.11

Gtk2::Ex::Dialogs::Message 0.11


Gtk2::Ex::Dialogs::Message provides a simple message dialog. more>>
Gtk2::Ex::Dialogs::Message provides a simple message dialog.

SYNOPSIS

use Gtk2::Ex::Dialogs::Message ( destroy_with_parent => TRUE,
modal => TRUE,
no_separator => FALSE );

# do some stuff like creating your apps main $window then,
# to ensure that all messages use the right parent, set it:
$Gtk2::Ex::Dialogs::Message::parent_window = $window;

# now popup a new dialog ( blocking the main loop if there is one )
new_and_run
Gtk2::Ex::Dialogs::Message ( title => "Dialog Title",
text => "This is a simple message" );

# now popup a somwhat useful dialog that doesnt block any main loop
# but on the other side of the coin, if there is no main loop the
# dialog will be completely unresponsive.
new_show
Gtk2::Ex::Dialogs::Message ( title => "Uhm",
text => "Use when there is a main loop." );

This module provides a simple dialog api that wraps Gtk2::Dialog objectively. The objective is a clean and simple message dialog (only an "OK" button).

<<less
Download (0.020MB)
Added: 2006-07-19 License: Perl Artistic License Price:
1192 downloads
Smarty and MIME message integration 2007-05-21

Smarty and MIME message integration 2007-05-21


Smarty and MIME message integration is a PHP class library that can send e-mail messages using Smarty templates. more>>
Smarty and MIME message integration is a PHP class library that can send e-mail messages using Smarty templates.

This package can be used to compose and send e-mail messages using Smarty templates.

It wraps around Smarty and MIME message class by Manuel Lemos, and prepares the body and headers of the messages to send.

It can set several message options at once passing an array of options values.

Currently it supports options to define HTML or text message template files, the sender, recipient, bounce and reply names and addresses, whether to send messages in plain text, HTML or both, whether to automatically wrap the message text, message character set, and the bulk precedence header to prevent that notification messages be returned due to temporary delivery errors.

Once the message options are set, the class composes and send message according to the specified option values.

<<less
Download (MB)
Added: 2007-05-24 License: LGPL (GNU Lesser General Public License) Price:
884 downloads
Phone Manager 0.10

Phone Manager 0.10


Phone Manager is a program created to allow you to control aspects of your mobile phone. more>>
Phone Manager project is a program created to allow you to control aspects of your mobile phone.
Main features:
- Runs in the background; indicates status on the panel notification area.
- Display on-screen alert when text message (SMS) arrives
- Text message (SMS) sending facility
<<less
Download (0.88MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
512 downloads
SMSSender 0.1

SMSSender 0.1


SMSSender is an application for sending SMS messages. more>>
SMSSender is an application for sending SMS messages.

It provides a user interface with a drop-down list of available cell phone carriers and text areas for the telephone number, subject, and SMS body.
<<less
Download (0.47MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1676 downloads
Message::Style 0.002

Message::Style 0.002


Message::Style is a Perl module to perform stylistic analysis of messages. more>>
Message::Style is a Perl module to perform stylistic analysis of messages.

SYNOPSIS

use Message::Style;

my $score=Message::Style::score(@article);
# or
my $score=Message::Style::score(@article);

This Perl library does an analysis of a RFC2822 format message (typically email messages or Usenet posts) and produces a score that, in the authors opinion, gives a good indication as to whether the poster is a fsckwit, and therefore whether their message should be ignored.

<<less
Download (0.005MB)
Added: 2006-08-29 License: Perl Artistic License Price:
1153 downloads
mod_text2html 1.0

mod_text2html 1.0


mod_text2html is an Apache module which is designed to replace Apaches internal text/plain handler. more>>
mod_text2html is an Apache module which is designed to replace Apaches internal text/plain handler. It converts carriage returns into "BR" tags.

If it finds valid URLs it turns them into "A HREF" tags, and it does a good job of trying to not muddle up HTML that has been flagged as text. It converts commas and ampersands into HTML entities.

It uses the same method as the Unix find utility to determine if a file is text in the first place. If it determines that the file is not text it sends the file, but does so as application/octet-stream.
<<less
Download (0.005MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
850 downloads
Mail::Message::Body 2.065

Mail::Message::Body 2.065


Mail::Message::Body is the data of a body in a message. more>>
Mail::Message::Body is the data of a body in a message.

INHERITANCE

Mail::Message::Body has extra code in
Mail::Message::Body::Construct
Mail::Message::Body::Encode

Mail::Message::Body
is a Mail::Reporter

Mail::Message::Body is extended by
Mail::Message::Body::File
Mail::Message::Body::Lines
Mail::Message::Body::Multipart
Mail::Message::Body::Nested
Mail::Message::Body::String

Mail::Message::Body is realized by
Mail::Message::Body::Delayed

SYNOPSIS

my Mail::Message $msg = ...;
my $body = $msg->body;
my @text = $body->lines;
my $text = $body->string;
my IO::Handle $file = $body->file;
$body->print(*FILE);

my $content_type = $body->type;
my $transfer_encoding = $body->transferEncoding;
my $encoded = $body->encode(mime_type => text/html,
charset => us-ascii, transfer_encoding => none);n";
my $decoded = $body->decoded;

The encoding and decoding functionality of a Mail::Message::Body is implemented in the Mail::Message::Body::Encode package. That package is automatically loaded when encoding and decoding of messages needs to take place. Methods to simply build an process body objects are implemented in Mail::Message::Body::Construct.

The body of a message (a Mail::Message object) is stored in one of the many body types. The functionality of each body type is equivalent, but there are performance differences. Each body type has its own documentation with details about its implementation.

<<less
Download (0.57MB)
Added: 2006-06-08 License: Perl Artistic License Price:
1233 downloads
SMS::Send::TW::PChome 0.01

SMS::Send::TW::PChome 0.01


SMS::Send::TW::PChome is a SMS::Send driver for sms.pchome.com.tw. more>>
SMS::Send::TW::PChome is a SMS::Send driver for sms.pchome.com.tw.

SYNOPSIS

use SMS::Send::TW::PChome;

my $sender = SMS::Send->new(TW::PChome,
_username => UserName,
_password => Password,
_authcode => AuthCode,
);

my $sent = $sender->send_sms(
text => My very urgent message,
to => 0912345678,
);

<<less
Download (0.003MB)
Added: 2007-03-26 License: Perl Artistic License Price:
946 downloads
Beepage 1.2.1

Beepage 1.2.1


Beepage is a Unix-based text paging package. more>>
Beepage is a Unix-based text paging package. Text pages sent by the client over TCP/IP are received by the provided server, which queues and transmits the data to any paging service providers that support the Telocator Alpha-numeric Protocol.
The beepage package includes two programs, a cleint and a server: beepaged, the Text Page Protocol daemon which accepts pages on a well-known TCP port and transmits them over one or more modems to a TAP (aka PET, IXA) paging-service provider; and beep, a command-line TPP client.
Two beepage clients are currently available:
"beep" a Unix command-line interface
"winbeepage" a Windows graphical interface
A Mac OS X version is nearing release.
The server is supported on the following platforms:
Solaris
Linux
OpenBSD
It probably works on other Unix-like operating systems.
Enhancements:
- Improved TAP banner detection
- First of several fixes related to the addition of MIME support
- Cleaned up exit codes
<<less
Download (0.29MB)
Added: 2006-09-08 License: BSD License Price:
1143 downloads
KTTS - KDE Text-to-Speech System 0.3.0

KTTS - KDE Text-to-Speech System 0.3.0


KTTS - KDE Text-to-Speech is a subsystem within the KDE desktop for conversion of text to audible speech. more>>
KTTS - KDE Text-to-Speech is a subsystem within the KDE desktop for conversion of text to audible speech.
KTTS is currently under development and aims to become the standard subsystem for all KDE applications to provide speech output.
Main features:
User Features:
- Speak any text from the KDE clipboard.
- Speak any plain text file.
- Speak all or any portion of a text file from Kate.
- Speak all or any portion of an HTML page from Konqueror.
- Use as the speech backend for KMouth and KSayIt.
- Speak KDE notifications (KNotify).
- Long text is parsed into sentences. User may backup by sentence or paragraph, replay, pause, and stop playing.
- Audio output via aRts or GStreamer (version 0.8.7 or later)
Programmer Features:
- Priority system for screen reader outputs, warnings and messages, while still playing regular texts.
- Plugin-based architecture for support of a wide variety of speech synthesis engines and drivers.
- Permit generation of speech from the command line (or via shell scripts) using the KDE DCOP utilities.
- Provide a lightweight and easily usable interface for applications to generate speech output.
- Applications need not be concerned about contention over the speech device.
- FUTURE: Provide support for speech markup languages, such as VoiceXML, Sable, Java Speech Markup Language (JSML), and Speech Markup Meta-language (SMML).
- FUTURE: Provide limited support for embedded speech markers.
- Asynchronous to prevent system blocking.
<<less
Download (4.0MB)
Added: 2005-06-14 License: GPL (GNU General Public License) Price:
1605 downloads
OpenChatterBox 1.0.1

OpenChatterBox 1.0.1


OpenChatterBox is an LANChat-like software which is designed for talking in Local Area Network (LAN). more>>
OpenChatterBox is an LANChat-like software which is designed for talking in Local Area Network (LAN). ChatterBoxes uses port 7777/UDP.

Public messages are plain-text, but private messages are encrypted (XOR). OpenChatterBox UI (User Interface) is Ncurses based, so you can use it via telnet/ssh, from local console or in Xterm.

<<less
Download (0.10MB)
Added: 2006-01-05 License: GPL (GNU General Public License) Price:
1387 downloads
SMS::Send::DE::MeinBMW 0.02

SMS::Send::DE::MeinBMW 0.02


SMS::Send::DE::MeinBMW is an SMS::Send driver for the www.meinbmw.de website. more>>
SMS::Send::DE::MeinBMW is an SMS::Send driver for the www.meinbmw.de website.

SYNOPSIS

use SMS::Send;
# Get the sender and login
my $sender = SMS::Send->new(DE::MeinBMW,
_login => xx@yyy.de, # your email address
_password => mypasswd, # your reqistered password from www.meinbmw.de
);

# Send a message to ourself
my $sent = $sender->send_sms(
text => Messages have a limit of 160 chars,
to => +49 4 444 444,
);

# Did it send?
if ( $sent ) {
print "Sent test messagen";
} else {
print "Test message failedn";
}

SMS::Send::DE::MeinBMW is an regional SMS::Send driver for Germany that delivers messages via the http://www.meinbmw.de.

You must register to use this FREE service for all BMW drivers.
guesses, what I drive for a car.

<<less
Download (0.005MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1011 downloads
Band Saw 0.3.0

Band Saw 0.3.0


Band Saw is a syslog monitoring program for the GNOME desktop. more>>
Band Saw is a syslog monitoring program for the GNOME desktop. Band Saw project allows the user to setup filters that define which messages should generate alerts.

Combined with syslogs remote logging functionality it provides a scalable and easily deployed monitoring solution.

How does it work?

Band Saw is really quite simple; it monitors messages that are fed to it from a suitably configured syslog server, looking out for messages that contain text that the administrator is interested in. Any log message that matches the administrators filters will be brought to the users attention via a dialog box that pops up on screen.

Because syslog itself supports propagating messages between seperate computers, with syslog and Band Saw you can easily monitor a large number of computers for critical errors.

<<less
Download (0.18MB)
Added: 2006-03-09 License: GPL (GNU General Public License) Price:
1325 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5