thunderbird extension
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1825
Thunderbird Service Menu
Thunderbird Service Menu will allow you to right click on a file and attach it to a new E-mail from Thunderbird. more>>
Thunderbird Service Menu is a service menu that will allow you to right click on a file and attach it to a new E-mail from Thunderbird.
Just extract the "AttachToThunderbirdMail" config file to "/usr/share/apps/konqueror/servicemenus" and it should work.
<<lessJust extract the "AttachToThunderbirdMail" config file to "/usr/share/apps/konqueror/servicemenus" and it should work.
Download (MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
943 downloads
PHP WebDAV extension 1.1
PHP WebDAV extension project allows easy access to remote resources with PHP through the DAV protocol. more>>
PHP WebDAV extension project allows easy access to remote resources with PHP through the DAV protocol.
Installation
This extension requires the Neon library and the related header files.
Neon can be downloaded from: http://www.webdav.org/neon/
Pre-built packages and ports are already available for most operating systems and distributions.
In order to compile and install the PHP WebDAV extension, just follow the standard PECL procedure :
$ phpize
$ ./configure --enable-dav
# make install
On OpenBSD systems, use
$ env AUTOCONF_VERSION=2.61 phpize
(replace 2.61 with any of the currently installed versions of autoconf on your system)
Basic example
webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt);
webdav_put(/your/nice/thing.txt, $data);
webdav_unlink(/unwanted_resource.txt);
webdav_rename(/dir/old_name, /dir/new_name);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE);
webdav_close();
Named resource example
$res = webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt, $res);
webdav_put(/your/nice/thing.txt, $data, $res);
webdav_unlink(/unwanted_resource.txt, $res);
webdav_rename(/dir/old_name, /dir/new_name, $res);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE, $res);
webdav_close($res);
Enhancements:
- This release fixes a bug in webdav_put() and introduces a wrapper to access DAV resources through PHP streams.
<<lessInstallation
This extension requires the Neon library and the related header files.
Neon can be downloaded from: http://www.webdav.org/neon/
Pre-built packages and ports are already available for most operating systems and distributions.
In order to compile and install the PHP WebDAV extension, just follow the standard PECL procedure :
$ phpize
$ ./configure --enable-dav
# make install
On OpenBSD systems, use
$ env AUTOCONF_VERSION=2.61 phpize
(replace 2.61 with any of the currently installed versions of autoconf on your system)
Basic example
webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt);
webdav_put(/your/nice/thing.txt, $data);
webdav_unlink(/unwanted_resource.txt);
webdav_rename(/dir/old_name, /dir/new_name);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE);
webdav_close();
Named resource example
$res = webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt, $res);
webdav_put(/your/nice/thing.txt, $data, $res);
webdav_unlink(/unwanted_resource.txt, $res);
webdav_rename(/dir/old_name, /dir/new_name, $res);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE, $res);
webdav_close($res);
Enhancements:
- This release fixes a bug in webdav_put() and introduces a wrapper to access DAV resources through PHP streams.
Download (0.23MB)
Added: 2007-04-08 License: BSD License Price:
939 downloads
Send To Thunderbird like sendToTb 1.1
Send To Thunderbird like sendToTb you can quick send images to Thunderbird or just resize it trought Service Menu. more>>
Send To Thunderbird like sendToTb you can quickly send images to Thunderbird or just resize it through Service Menu.
Just select images (.jpg only), right click -> Actions -> Send to Thunderbird.
<<lessJust select images (.jpg only), right click -> Actions -> Send to Thunderbird.
Download (0.12MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1112 downloads
Thunderbird for Linux 2.0.0.14
Mozilla Thunderbird for Linux version. more>> Mozillas Thunderbird 2 email application is more powerful than ever. Its now even easier to organize, secure and customize your mail.
Advanced Folder Views
Thunderbird 2 offers a variety of ways for you to organize and display your folders, whether by favorites, recently viewed or folders containing unread messages. As always, you can also set up RSS and newsgroup folders to stay on top of news and your interests. Thunderbird 2 also allows you to maximize your message view pane by opting for a folder drop down menu instead of the traditional sidebar.
Message Tagging
Thunderbird 2 allows you to tag messages with descriptors such as To Do or Done or even create your own tags that are specific to your needs. Tags can be combined with saved searches and mail views to make it easier to organize email.
Phishing Protection
Thunderbird protects you from email scams which try to trick users into handing over personal and confidential information by indicating when a message is a potential phishing attempt. As a second line of defense, Thunderbird warns you when you click on a link which appears to be taking you to a different Web site than the one indicated by the URL in the message.
Robust Privacy
Thunderbird 2 offers improved support for user privacy and remote image protection. To ensure a users privacy, Thunderbird 2 automatically blocks remote images in email messages.
System Requirements
Please note that Linux distributors may provide packages for your distribution which have different requirements.
Linux kernel - 2.2.14 with the following libraries or packages minimums:
glibc 2.3.2
gtk+2.0
XFree86-3.3.6
fontconfig (also known as xft)
libstdc++5
Thunderbird has been tested on Linux Fedora Core 4<<less
Download (10.91MB)
Added: 2009-03-31 License: Freeware Price: Free
212 downloads
Lua Networking Extension Library 0.5
LUA is a small scripting language designed to be embedded inside your application to provide extensibility. more>>
LUA is a small scripting language designed to be embedded inside your application to provide extensibility.
It is also possible to extend the Lua scripting language itself via the use of extensions written in C. This page describes such an extension which provides a small number of basic networking and filesystem primitives.
By installing this extension you will be able to write networking applications in the Lua!
Enhancements:
- Added some filesystem primitives.
- Added API documentation & examples.
- The HTTP server now falls back to a default virtual host if none is specified, or if the attempted one doesnt exist.
- The HTTPD server now supports directory indexing if no index.html file is found in a directory.
- The HTTPD server now writes access.log files to each virtualhost.
<<lessIt is also possible to extend the Lua scripting language itself via the use of extensions written in C. This page describes such an extension which provides a small number of basic networking and filesystem primitives.
By installing this extension you will be able to write networking applications in the Lua!
Enhancements:
- Added some filesystem primitives.
- Added API documentation & examples.
- The HTTP server now falls back to a default virtual host if none is specified, or if the attempted one doesnt exist.
- The HTTPD server now supports directory indexing if no index.html file is found in a directory.
- The HTTPD server now writes access.log files to each virtualhost.
Download (0.017MB)
Added: 2005-11-01 License: LGPL (GNU Lesser General Public License) Price:
1454 downloads
Folder Extension Wizard 1.0.1
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files). more>>
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files).
A wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
<<lessA wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
Download (0.007MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
909 downloads
SynapseLife Toolbar Extension 0.1
SynapseLife Toolbar Extension provides easy access to SynapseLife. more>>
SynapseLife Toolbar Extension provides easy access to SynapseLife.
SynapseLife is a collection of 9 integrated web applications including tools for organizing your life including social bookmarking, rss feed aggregation, tagging, contacts, calendars, to-do lists, and a money ledgers.
Main features:
- Add favorites and feeds easily from the toolbar
- Livesearch of all of your items within SynapseLife
- Overlay of contextual icons and buttons on existing social networking sites for easy addition of contacts, calendar events, feeds and favorites.
<<lessSynapseLife is a collection of 9 integrated web applications including tools for organizing your life including social bookmarking, rss feed aggregation, tagging, contacts, calendars, to-do lists, and a money ledgers.
Main features:
- Add favorites and feeds easily from the toolbar
- Livesearch of all of your items within SynapseLife
- Overlay of contextual icons and buttons on existing social networking sites for easy addition of contacts, calendar events, feeds and favorites.
Download (0.15MB)
Added: 2007-03-31 License: MPL (Mozilla Public License) Price:
965 downloads
Email Files Thunderbird 1.0
Email Files Thunderbird is a very simple service menu script, to email one or more files with Thunderbird. more>>
Email Files Thunderbird is a very simple service menu script, to email one or more files with Thunderbird to any address or to a given address, which i assume is used as a "backup" space.
The subject is automatically updated according to the attached files and, in case you choose to send to your specific email address, details about sending date, user and host are automatically added in the body.
There are other similar service menus around, but i wanted a script that allows to attach more than one file at one time and that automatically updates the subject line.
USAGE: pretty straightforward.. Just make the two .sh files executable (if necessary) and place them in a directory of your path, for example /home/YOUR_USERNAME/bin. Place the service menu file EmailWithThunderbird.desktop in /home/YOUR_USERNAME/.kde/share/apps/konqueror/servicemenus
IMPORTANT: In file EmailWithThunderbirdToMyAddress.sh, you need to specify your email address in to=.... (that is, where i wrote: YOUR_EMAIL_ADDRESS@DOMAIN.NAME)
This project was tested on OpenSuSE 10.2, KDE 3.5.6
<<lessThe subject is automatically updated according to the attached files and, in case you choose to send to your specific email address, details about sending date, user and host are automatically added in the body.
There are other similar service menus around, but i wanted a script that allows to attach more than one file at one time and that automatically updates the subject line.
USAGE: pretty straightforward.. Just make the two .sh files executable (if necessary) and place them in a directory of your path, for example /home/YOUR_USERNAME/bin. Place the service menu file EmailWithThunderbird.desktop in /home/YOUR_USERNAME/.kde/share/apps/konqueror/servicemenus
IMPORTANT: In file EmailWithThunderbirdToMyAddress.sh, you need to specify your email address in to=.... (that is, where i wrote: YOUR_EMAIL_ADDRESS@DOMAIN.NAME)
This project was tested on OpenSuSE 10.2, KDE 3.5.6
Download (0.002MB)
Added: 2007-05-14 License: GPL (GNU General Public License) Price:
547 downloads
MyxerMagic Web Extensions 1.0.0
MyxerMagic Web Extensions is a Firefox extension that allows you to quickly send any image on the web to a mobile phone. more>>
MyxerMagic Web Extensions is a Firefox extension that allows you to quickly send any image on the web directly to your mobile phone - right from the context menu of your favorite web browser!
Grab photos of friends and family from Flickr, Yahoo!, whatever. Better yet, grab photos of more attractive strangers from other places on the web.
Get the hottest celebrity shots from...wherever you surf! Dont hold your breath waiting for Bob Marley action shots to make it onto Cingulars deck.
Want album artwork from your favorite bands? Its waiting for you at their website or MySpace page.
Or, simply round out your stalker lifestyle by carrying around the MySpace profile picture of that hottie you almost asked out that one time but then, well, after that incident with the rabid poodle...
<<lessGrab photos of friends and family from Flickr, Yahoo!, whatever. Better yet, grab photos of more attractive strangers from other places on the web.
Get the hottest celebrity shots from...wherever you surf! Dont hold your breath waiting for Bob Marley action shots to make it onto Cingulars deck.
Want album artwork from your favorite bands? Its waiting for you at their website or MySpace page.
Or, simply round out your stalker lifestyle by carrying around the MySpace profile picture of that hottie you almost asked out that one time but then, well, after that incident with the rabid poodle...
Download (0.036MB)
Added: 2007-07-18 License: MPL (Mozilla Public License) Price:
906 downloads
Smack PubSub Extensions 1.2
Smack PubSub Extensions is a set of extensions to smack. more>>
Smack PubSub Extensions is a set of extensions to smack.
The extensions mainly include support for JEP-0060 aka PubSub but there are also a few utitlity classes. Please refer to the maven-generated documentation for further information.
<<lessThe extensions mainly include support for JEP-0060 aka PubSub but there are also a few utitlity classes. Please refer to the maven-generated documentation for further information.
Download (0.031MB)
Added: 2006-09-11 License: BSD License Price:
1143 downloads
Email This! Bookmarklet Extension 2.0.2
Email This! Bookmarklet Extension is formerly known as GMail This! more>>
Email This! Bookmarklet Extension is formerly known as GMail This!
Email This! (formerly known as GMail This!) will send your recipient the link, title, & highlighted text of the page you are viewing using GMail, Yahoo, and Stand-Alone Mail Clients like Outlook Express, Thunderbird, & More!
After downloading (and restarting Firefox), right click anywhere on the toolbar, push customize, and drag the emailthis icon/button to the toolbar (if you want to use the buttons that is - more options in v1.4).
Youre now ready to use EmailThis!
Red = GMail
Green = Yahoo
Blue = Stand-Alone Client
<<lessEmail This! (formerly known as GMail This!) will send your recipient the link, title, & highlighted text of the page you are viewing using GMail, Yahoo, and Stand-Alone Mail Clients like Outlook Express, Thunderbird, & More!
After downloading (and restarting Firefox), right click anywhere on the toolbar, push customize, and drag the emailthis icon/button to the toolbar (if you want to use the buttons that is - more options in v1.4).
Youre now ready to use EmailThis!
Red = GMail
Green = Yahoo
Blue = Stand-Alone Client
Download (0.022MB)
Added: 2007-07-25 License: Freeware Price:
821 downloads
ffmpeg-php extension 0.5.0
ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio more>>
ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio files.
It has methods for returning frames from movie files as images that can be manipulated using PHPs image functions.
This works well for automatically creating thumbnail images from movie files. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the formats supported by ffmpeg.
Main features:
- Simple object oriented interface.
- Has methods to grab frames from movie files and return them as images that can be manipulated using PHPs built-in image functions. This is great for automatically creating thumbnails for movie files.
- Has the ability to use ffmpegs excellent resampling and cropping features on returned images.
- Provides access to data from mp3 files such as duration, bitrate and track meta information.
<<lessIt has methods for returning frames from movie files as images that can be manipulated using PHPs image functions.
This works well for automatically creating thumbnail images from movie files. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the formats supported by ffmpeg.
Main features:
- Simple object oriented interface.
- Has methods to grab frames from movie files and return them as images that can be manipulated using PHPs built-in image functions. This is great for automatically creating thumbnails for movie files.
- Has the ability to use ffmpegs excellent resampling and cropping features on returned images.
- Provides access to data from mp3 files such as duration, bitrate and track meta information.
Download (1.5MB)
Added: 2006-09-30 License: GPL (GNU General Public License) Price:
1139 downloads
mnoGoSearch extension for PHP 1.0.0
nmGoSearch extension for PHP is a complete PHP binding for the mnoGoSearch API. more>>
nmGoSearch extension for PHP is a complete PHP binding for the mnoGoSearch API.
If used with mysql you should not use bundled mysql library in the php distribution. You should use native mysql library. To do this you should compile php with specefying mysql-dir (for example --with-mysql=/usr, not --with-mysql).
To compile PHP with CVS versions of mnogosearch (not with official releases) you must open configure script of mnogosearch in your editor. Find line like the following:
VERSION=x.x.x-`date "+%d%m%Y"`
where x.x.x is the mnogosearch version number like 3.2.16 or so.
Then just remove -`date "+%d%m%Y"`. After that this line should be VERSION=x.x.x
After complete you should reconfigure, recompile, reinstall mnogosearch and php.
<<lessIf used with mysql you should not use bundled mysql library in the php distribution. You should use native mysql library. To do this you should compile php with specefying mysql-dir (for example --with-mysql=/usr, not --with-mysql).
To compile PHP with CVS versions of mnogosearch (not with official releases) you must open configure script of mnogosearch in your editor. Find line like the following:
VERSION=x.x.x-`date "+%d%m%Y"`
where x.x.x is the mnogosearch version number like 3.2.16 or so.
Then just remove -`date "+%d%m%Y"`. After that this line should be VERSION=x.x.x
After complete you should reconfigure, recompile, reinstall mnogosearch and php.
Download (0.015MB)
Added: 2006-07-19 License: The PHP License Price:
1193 downloads
Zip extension for PHP 1.8.9
Zip extension for PHP is a zip management extension. more>>
Zip extension for PHP is a zip management extension.
It can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
<<lessIt can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
Download (0.038MB)
Added: 2007-05-20 License: The PHP License Price:
542 downloads
Wikipedia Lookup Extension 0.3.2
Lookups up the selected word in the Wikipedia encyclopedia. more>> Wikipedia Lookup Extension 0.3.2 is a powerful tool that makes it quick and easy to look up the selected word in the Wikipedia encyclopedia.<<less
Added: 2009-07-15 License: MPL Price: FREE
19 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 thunderbird extension 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