Manage your Blog

Create your blog now! Easy and Free

Ubuntuland

Get Paid to Blog About the Things You Love

Category: Mail

19/04/2008 GMT 1

sSMTP, a simple alternative to Sendmail

ubuntuland @ 08:30

Linux distributions have relied on the venerable Sendmail package since the early days of Slackware. But Sendmail's rich mail server features aren't an ideal solution for the typical desktop user whose primary mail support is delivered through a remote ISP. That's the perfect place for a simpler solution: sSMTP.

Many years ago, before the Internet standardized on Simple Mail Transfer Protocol (SMTP), applications known as mail transfer agents (MTA) were designed to help process email and determine the best route for message delivery. One of the earliest MTAs, Sendmail, became extremely popular for dealing with the delivery of email across multiple networks. It was the only viable open source mechanism for delivering email at the time Linux was introduced to the world, so it became the default MTA provided on many Linux distributions.

ssmtp.jpg

There has always been a division of labor for email processing. MTAs handle delivery of email and mail user agents (MUA) such as GNOME's Evolution, KDE's KMail, and Mozilla Thunderbird let users create and manage messages. MUAs have only a very basic concept of how to deliver mail. They don't need to know how to send a message to its intended recipient; they know only about delivering mail to a specific generally server-based MTA, which is then responsible for routing email to the ultimate recipient.

If you run cron jobs or some automated system that sends you alerts via email, the default method the system uses for sending the message is Sendmail, because it is the default MTA for the built-in Linux mail command (typically /bin/mail). This means you not only have to configure your mail reader to send email to your ISP, but you also need to configure Sendmail to do the same thing.

Unfortunately, Sendmail configuration is a mass of twisty passages that even the most experienced user avoids if at all possible. That means it is not the best tool for the typical desktop user.

Two popular Sendmail MTA alternatives, QMail and Postfix, started off simple, but have become complex systems on their own, with capabilities far beyond the needs of a typical desktop user who seeks to simply route email from his machine to his ISP. Alternatively, you could choose a tool other than /bin/mail to send email through direct use of SMTP, such as elm or pine, but these are full MUA clients that provide lots of options that are overkill for addressing the primary problem of mail delivery to an ISP.


300X250 Free Ringtones, Games, Wallpapers, And Mor

The simplified solution: sSMTP

Instead of finding a complicated replacement for mail, you can replace the complicated Sendmail with a simple alternative: sSMTP. sSMTP simplifies configuring your SMTP options with a small configuration file that allows you to specify items like the name of the remote SMTP server, your authorization (username and password), and the domain for your outbound email in much the way you configure your mail reader.

You can install sSMTP through your distribution's package manager, or build and install it from source. In the latter case, unpack the source, change into the source directory, and run the command ./configure --prefix=/usr/local/ssmtp --enable-ssl --enable-md5auth. Enabling SSL and MD5Auth allows you to communicate with an ISP that requires SMTP login. You can also enable IPv6 support if you need it; see --help for details.

After the configuration is complete, build and install the package using the normal make and sudo make install commands. When you run the install command you will be prompted for a few items. Follow the displayed instructions. Once installation completes you should find a directory called /usr/local/ssmtp with the sSMTP binary under the sbin subdirectory, and the configuration file under the etc/ssmtp subdirectory.

Now you can stop Sendmail and replace it with sSMTP. To stop Sendmail under Linux distributions that use the System V init scripts (and most distributions these days do) you can try the service command:

sudo service sendmail stop
sudo chkconfig --levels 2345 sendmail off

The first command stops the currently running instance of Sendmail, and the second prevents it from starting again on reboots. If your version of Linux does not use the SysVInit package you may need to kill the sendmail process manually with a command like sudo killall sendmail.

To replace Sendmail you can simply copy it to another file, then create a symbolic link from sSMTP to sendmail:

sudo mv /usr/sbin/sendmail /usr/sbin/sendmail.orig
sudo ln -s /usr/local/ssmtp/sbin/ssmtp /usr/sbin/sendmail

The first command moves the original sendmail out of the way, while the second makes sSMTP the program that gets run when any system command calls sendmail. With this approach, if you run into problems using sSMTP, just remove the symbolic link and move the sendmail copy back to its original name.

ref_468x60_green_bidvertiser.gif

Configuration

The configuration file for sSMTP, based on the --prefix option we used with the configure command while building from the source code, is /usr/local/ssmtp/etc/ssmtp/ssmtp.conf. This file has only four common options, plus some hidden options for authentication.

After a sample build, sSMTP created the following configuration file for me (lines starting with a # symbol are comments):

# /etc/ssmtp.conf -- a config file for sSMTP sendmail.
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=postmaster
# The place where the mail goes. The actual machine name is required
# no MX records are consulted. Commonly mailhosts are named mail.domain.com
# The example will fit if you are in domain.com and you mailhub is so named.
mailhub=mail
# Where will the mail seem to come from?
#rewriteDomain=graphics-muse.org
# The full hostname
hostname=kepler.graphics-muse.org

Change the root= value to an email address that will receive all system-generated email, such as output from cron jobs that encounter errors or log file analysis. I changed this line to my personal email address.

mailhub= defines the SMTP server to which email should be sent. Set this line to the host you specify in your mail reader for the SMTP server.

hostname= is the name of the mail host that you'd like recipients of your email to see it. Since I want responses to my email to be sent to back to my ISP domain so I can use my mail reader to retrieve it, I set this line to the ISP domain. This is the domain part of all outbound messages; all users on your system will appear to be coming from this domain.

You can use rewriteDomain= to spoof who you say you are. Since I'm already spoofing the server address with the hostname line, I leave this line commented out.

The initial configuration does not include information on how to log in to SMTP servers that require authentication. This information is the same information you must provide in your mail reader in order for it to send email through your ISP. To specify this information, you can add the following lines:

AuthUser=your username
AuthPass=your password
AuthMethod=CRAM-MD5

With this configuration, every time my system sends mail using /bin/mail, sendmail gets called, which is actually sSMTP. sSMTP uses the authentication I provided in the configuration file to log in to my ISP's SMTP server and deliver my outgoing email.

Caveats

Replacing Sendmail with sSMTP works well for desktop PCs that have only a single user configured. If you have multiple users, you may not want to use sSMTP, since by default all email sent via the mail command will look like it comes from a single user. An additional configuration file, revaliases, allows you to map a local user to a specific From: address on outbound mail and to route that mail through a specific mailhub. Still, there is no way to configure different logins on different mailhubs that use different different authentication credentials. With sSMTP, your outbound mail can only have one remote MTA to which it can connect.

Also, in order for any user on your system to use sSMTP, they will need to have read permissions on the ssmtp.conf file. Placing your ISP login information in a configuration file that is world-readable allows anyone who uses your system to see your email authentication information. This is another reason why use of sSMTP is appropriate only for home users who are the sole users of that system. You can fix this problem through normal user and group permissions and by running sSMTP as a setuid program, but not if you want to make things as simple as possible, as we set out to do.

While sSMTP is a replacement for Sendmail, it is not a complete replacement. One important distinction is that it is not intended to receive mail, as Sendmail does. You need to use a mail reader to retrieve and read email from your ISP.

sSMTP also does not manage mail queues, so it sends outbound email immediately. Although the man page for sSMTP shows support for all the same command-line options that Sendmail supports, sSMTP ignores most of those options.

Finally, the sSMTP implementation enforces a limit on the size of outbound message headers. Try not to write long subject lines or include long lists of recipients. If you need to send something to a large list of recipients, set up an alias instead of manually listing all the recipients on the command line.

sSMTP is exactly as advertised: simple. It requires only minimal effort to set up and little to no long-term maintenance. But it isn't appropriate for all users. Its greatest value is to the non-technical home user with only one user configured on a machine. To those users, sSMTP can be an easy way to improve messaging management.

Michael J. Hammel is a principal software engineer for Colorado Engineering, Inc. (CEI) in Colorado Springs, Colo. He has more than 20 years of software development and management experience, and has written more than 100 articles for numerous online and print magazines. He is the author of multiple open source related texts, including three books on the GIMP.

ipod_lord_ipod_by_kiubito.jpg

Latest Posts

 

Linux Links

06/03/2008 GMT 1

Evolution, E-mail, Calendaring and Collaboration

ubuntuland @ 11:36

News plugins for Evolution 2.1.2.1

Evolution Email Client

Evolution is a full featured email client, supporting POP and IMAP, addressbook and calendaring application for the GNOME desktop.  Evolution also features:

  • Spam filtering
  • GPG security and key signing
  • Search Folders, allowing you to filter email based on your criteria
  • Web calendar integration
  • Manage multiple email accounts

Evolution is one of the most feature rich applications for the GNOME desktop.  The below topics are just an overview of what Evolution can do.  To learn more, visit the Evolution User Guide, available in the GNOME help.  Click System in your panel, then help, and enter "Evolution" in the search box.  Or visit the Evolution homepage for more information.

Adding an account

The first time you start Evolution, you will be prompted to enter your email account details.   Enter your name and email address, and click next.  Choose your "Server Type", most users will use POP, and your server information and username.   (This information should be available from your ISP).  Click next, and enable any of the receiving options such as automatically checking email every ten minutes.  Click next and configure your sent mail settings.  Choose your "Server Type, most users will use SMTP, and enter your server name.  Click next, and enter the name you wish to use for the account in Evolution, usally your email address, and you're finished.  To add additional email accounts, click Edit in the menu, Preferences, Mail Accounts, and Add.

To receive new email, click the Send / Receive button in the left hand corner.

Evolution Contacts

In Evolution, Contacts are individuals you add to your addressbook.  A single contact is called a Card.  To add a new Card to Evolution, click on Contacts on the left hand menu, and then New and Contact.  Enter the contact information, including name, email address, address or instant messenger contact information.

Calendars

Evolution supports the ability to manage multiple calendars, both local, CalDAV and web based calendars.   To create a new calendar, click File, then New, then Calendar.  If the calendar is one to be saved only on your computer, enter the name and color.  If it is an internet based calendar, enter the name, color, URL and how often the calendar should be refreshed for changes and updates.

Features

Standards Support

Novell Evolution embraces mail, calendar and address book standards to ease data sharing.

Supported mail protocols include IMAP, POP, SMTP and Authenticated SMTP, as well as Microsoft Exchange 2000 and 2003. Novell GroupWise support is currently in beta.

iCalendar support allows users in disparate collaboration servers to share meeting information, publish this information and subscribe to calendars published on the Web (webcal).

Lightweight Directory Access Protocol (LDAP) support enables users to access their existing company address books. Users can also share contact information using vCard message attachments.

Security and Encryption

Industry-standard encryption, including support for PGP/GPG, SASL and SSL/TLS, ensures message security.

E-mail Client

Novell Evolution connects to corporate communications architectures, including Microsoft Exchange and Novell GroupWise.

The message composer auto-completes e-mail addresses stored in the Contacts list.

View options allow users to view e-mail chronologically, by author or by thread. Custom folders can be color-coded to note priority or type, and vFolders, dynamic saved searches, provide convenient access to messages spread across multiple folders.

User-defined filters automatically move or process incoming and outgoing mail into specific, customizable folders. Account-management tools enable users to receive, manage and organize messages from multiple e-mail accounts.

Integration with SpamAssassin enables client-side junk-mail filtering.

Enhanced offline access for IMAP mail is also included in Novell Evolution.

Calendar

Users can create customized reminders for their events that open windows or play sounds. A "snooze-button" feature allows users to delay the reminder.

iCalendar support enables users to arrange appointments and schedule meetings with Microsoft Exchange, and other applications that support the iCalendar standard.

Group scheduling helps users schedule meetings, view attendee availability and allocate resources with other users in organizations running on Microsoft Exchange.

Free/busy searches enable users to publish and view schedules to facilitate the planning of group meetings.

The new overlay feature enables users to view multiple calendars so they can see their personal calendars as well as those of coworkers, work groups and others in a single color-coded view. This allows users to see conflicts or possible events without using the free/busy search.

Support for Web-based and multiple local calendars extends the ability to add any valid .ics file to calendar views, allowing users or workgroups to track events without leaving their Novell Evolution Calendar view.

Click for large view
Click for large view


Contact Management

Users can keep track of their business associates, friends and family by adding them to their contact list and maintaining multiple contact folders.

LDAP support enables users to access their existing company address books without changing collaboration infrastructure.

Userscan save time with address auto-completion, a feature that uses locally stored contacts or those found in LDAP directories to automatically complete e-mail addresses. They can also share, receive and save contacts using built-in vCard support.

Task and To-do List

Users can organize their work by entering to-do items into the task component. Summary, description, due dates, priorities, and categories can be entered. Users can then view their items by date, priority, deadlines and other criteria or view tasks in the integrated calendar view.

Extensible Architecture

Novell Evolution 2.0 includes the new Novell Evolution Data Server component that exposes Evolution-accessible data (such as mail, calendar and contacts) to the rest of the desktop applications. For example, users can view appointments and tasks in the desktop panel calendar, display appointment reminders in the panel notification area and add buddies to their Gaim instant messaging client by adding them to the Novell Evolution address book. This enables independent application developers to access collaboration server data (such as Novell GroupWise) without writing code for each server type.

Users can access, edit and update e-mail, address book, calendars, and task folders on Novell GroupWise servers from within Novell Evolution. They can also access the GroupWise Address Book for names, addresses and other contact information. Furthermore, they can enter Novell GroupWise Messenger information in the Personal Contacts feature for easy, secure, instant messaging via Gaim.

Users can issue meeting invitations and view colleague availability.

Built-in Microsoft Exchange Support

Users can communicate directly with built-in WebDAV support, eliminating the need to maintain separate IMAP e-mail server access to support Linux and UNIX users.

From within Novell Evolution, users can view, edit and update e-mail, address books, calendars and task folders on the Exchange server.

Using existing global address lists, users can access names, addresses and contact information from the Exchange Global Address List.

Public folder support allows users to share documents and files in existing Exchange public folders. They can also create new public folders for collaboration.

Through the Manage Permissions feature, users can control access to personal and public folders, calendars and task lists.

With the proper authorization, users can open other users' calendars or shared folders.

The Out-of-Office Assistant helps users create custom vacation or notification messages that run on the Exchange server.

Through the Calendar Delegation feature, users can set permissions to allow others to view their calendars. Users can also delegate permission to a colleague (for example, an administrative assistant) to accept and schedule meetings in their calendars.

Direct resource booking reserves resources such as conference rooms or vehicles for your meetings and appointments.

The new mailbox- and folder-size features display Exchange server quota notifications to keep mailbox sizes down.

S/MIME protocol support

S/MIME certificate support gives users a higher level of authentication in their correspondence. This feature ensures that messages are digitally signed and encrypted. Users can view, manage and import certificates and recognize additional certificate authorities with a centralized certificate-management tool.

Palm Device Support

Users can access the latest information with two-way synchronization between Novell Evolution (calendar, address book and task list) and their Palm handheld devices.

Overview

Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop.

Feature Highlights

Screenshot collage

View screenshots

  • No viruses or worms

  • Junk filtering

  • Desktop integration

  • Developer Platform (EDS)

  • Evolution#

  • EPlugin

  • Advanced email searching

  • Web calendars

  • User-defined filters

  • Multiple accounts

  • Palm device support

  • Customized reminders

  • Multiple calendar views

  • iCalendar support

  • To-Do list

  • LDAP compatible

  • Share vCards

  • Security and encryption

  • Open Source

  • (read more...)

Get Evolution Now

Already Included

Evolution most likely ships with your Linux distribution of choice. To get your latest supported version, you will want to check with your distribution supplier.

Use the Source

For those of you in the compiling-from-source know, you can download the latest stable or unstable releases. Grab the latest version of the source from below and have fun compiling!

Current Stable Release

Package Version

Evolution

2.12.3

Evolution Data Server

1.12.3

GtkHTML

3.16.3

libsoup

2.3.4

Evolution Exchange

2.12.3

Previous Stable Releases

Current Unstable Release

Package Version

Evolution

2.21.92

Evolution Data Server

2.21.92

GtkHTML

3.17.92

libsoup

2.3.2

Evolution Exchange

2.21.92

Grab the Source From SVN

SVN Checkout

Please refer to the GNOME SVN FAQ page.

 

Latest  Post
Linux Links

12/02/2008 GMT 1

How do I backup Thunderbird mail and profile under Linux

ubuntuland @ 07:19
rss_orange1.png

 

GMail adds group mailing list functions

ubuntuland @ 06:34


gmail

The uzi fire rapid rate of GMail feature releases has slowed a bit, but it hasn’t quite stopped.  Today, Robby Stein one of Google’s Product Marketing Managers, announced the ability to create personal mailing lists with the GMail contact manager.

It comes in handy particular for Web 2.0-style businesses like Mashable, where almost everything we do operates out of the Google suite of tools, or other similar Web 2.0 tools.  Being able to send out an email to the “Writer’s Department” or “Entire Mashable Crew” is a big time saver, as opposed to plucking out each individual’s emails from the address book.

The new features are compatible with IE7 and Firefox2, and are extremely simple to do (I had a few groups set and actually used in under five minutes). From the instructions at the GMail blog:

To create contact groups, click “Contacts” from the left-hand navigation list and then click the groups icon:

After naming your group, browse for contacts you want to add to it. You can find them by clicking “All Contacts” or by searching by name or email address. Once you locate the contact you’d like to add to your group, click on the contact name, and select the “Groups” drop down menu in the right-most pane. You can add any contact to a group this way — or make impromptu new groups. (You can also add people to groups by clicking a group name and then typing email addresses or names in the search box at the bottom of the middle pane).

The great thing about creating contact groups is that they “auto-complete”: you can type the group name as you normally would type email addresses or contact names, and by selecting the group from the drop down menu, the group’s contacts are automatically inserted. Your email recipients will not see your group name when they receive the email, but instead will see all the individual contact names and email addresses listed as normal.

While this feature is great for creating efficient ways to email small groups, we encourage you to use Google Groups to manage large ones.

31/12/2007 GMT 1

FileBunker 1.1.2 for Linux

ubuntuland @ 20:03


rss_orange1.png

FileBunker is a file backup application which uses one or more GMail accounts as its backup repository.

Because each GMail account supplies 1000 megabytes of storage, it serves as an excellent facility for this purpose.

Files are compressed and encrypted for security and efficiency, and can be restored on demand.

FileBunker will automatically use a new account as old ones are filled up.
NOTE If you delete an account that already has files backed up to it, those files will not be accessible from FileBunker.


no one deals like we do!

 

http://filebunker.sourceforge.net/ScreenShots/screenshot_win.png

Configuring Filebunker:

Before FileBunker can be used to backup your files, you need to configure the application. This is done by choosing Configuration from the File menu. The following describes the information that must be provided to complete this configuration.

FileBunker Password:

First and foremost, FileBunker requires you to establish a password. This password is used to encrypt the data that you backup so that it is secure.

Longer passwords are better, and you should not use a password which coincides with the password to any of the GMail accounts that you are using for backups. Note in order to make sure your password is correctly recorded, you must type it again in the Confirm Password field.

SMTP Server:

FileBunker transfers files to GMail by sending them using the standard email transfer protocol SMTP. You must identify an SMTP server that will send your email. This is usually an address like smtp.mycompany.com, or mail.myisp.com.

If you are not sure what to specify, check the account configuration in your email application (such as Outlook or Eudora), or contact your ISP. Some SMTP servers require authentication in order to transfer messages.

This involves specifying a user name and password which is used to authenticate you to the SMTP server. If your server requires this authentication, check the Requires Authentication checkbox, and click the Configure button to specify the user name and password.

As with establishing your FileBunker password, you will need to confirm your password to make sure it is correctly recorded. Again, check the configuration of your email application, or contact your ISP, if you are not sure whether your SMTP server requires authentication.

uBid is the 			marketplace you can trust!

no one 			deals like we do!

Email Repositories:

Finally, and perhaps most importantly, in order to perform any backups you need to specify one or more GMail accounts which your files will be sent to.

Clicking the New button will prompt you to specify the email address and password for an existing GMail account. Note the '@gmail.com' is already specified, so you will only need to specify the user name (e.g. jsmith).

As with other password fields in this configuration, you will need to confirm the password to ensure it is recorded correctly. After pressing OK you will be returned to the main configuration dialog, and you will see the new account in the Email Repositories list.

You can select it, and click Edit to change the details of that account, or Delete to remove it. Each GMail account gives you 1000 megabytes of storage. You can register multiple accounts at any time as your storage requirements grow.

FileBunker will automatically use a new account as old ones are filled up.
NOTE If you delete an account that already has files backed up to it, those files will not be accessible from FileBunker.

FileBunker 1.1.2 Screenshot 1

DOWNLOAD LOCATIONS FOR FILEBUNKER

Please choose your desired download format and mirror below.

Sources mirror 1 (tar.bz2) (4.85 MB)

Sources mirror 2 (tar.bz2) (4.85 MB)

Sources mirror 3 (tar.bz2) (4.85 MB)


Toys! Free 			shipping on Toys!

Free 			Shipping!

 

Latest Posts

 

Linux Links

Toys! Free 			shipping on Toys!

Free 			Shipping!

01/12/2007 GMT 1

Enigmail 0.95.6, extension to the mail client of Mozilla Thunderbird and Mozilla Seamonkey

ubuntuland @ 21:18

The latest version of Enigmail is 0.95.6, working with Thunderbird 2.0 and Seamonkey 1.1

Enigmail is an extension to the mail client of Mozilla Thunderbird and Mozilla Seamonkey which allows users to access the authentication and encryption features provided by GnuPG (see screenshots).

Enigmail is open source and dually-licensed under the GNU General Public License and the Mozilla Public License.

You can download and install Enigmail from the Download page. See the Help page for post-installation instructions.

Mozilla toolbar showing Enigmail decrypt button

Main Features
  • Encrypt/sign mail when sending, decrypt/authenticate received mail
  • Support for inline-PGP (RFC 2440) and PGP/MIME (RFC 3156)
  • Per-Account based encryption and signing defaults
  • Per-Recipient rules for automated key selection, and enabling/disabling encryption and signing
  • OpenPGP key management interface

See the Features page for a full list of Enigmail's features.

Enigmail is cross-platform like all Mozilla products, although binaries are supplied only for selected platforms on this website. Enigmail uses inter-process communication to execute command-line versions of GnuPG to carry out encryption/authentication.

Screenshots

(Taken from Enigmail version 0.95.3)
OpenPGP menu and Main Thunderbird window with Decrypt button
 
 





OpenPGP menu and Compose window with OpenPGP Security button

 


Banner1_468x60

Enigmail Preferences

Enigmail per-account Settings

Enigmail Downloads

Please Note:

  • New users should read the installation instructions first.
  • Enigmail does not install GnuPG for you. You need to do that yourself.
  • If you have any problems, please check the FAQ.
  • Some users may want to check the OpenPGP signature
  • And don’t forget to check the Help Page for HOWTOs, user guides, and more.



468x60.gif Parla ItaliaSenzaLimiti

  • 01/05/2008 The new website has been launched.

  • 01/03/2008 Enigmail v0.95.6 has been released. This release fixes a signature verification bug and several problems with localized builds.

  • 10/27/2007 Enigmail v0.95.5 has been released. This release fixes a bug leading to garbled PGP/MIME messages.

  • 10/17/2007 Enigmail v0.95.4 has been released. This release fixes an incomaptibility with GPGOL.

  • 08/04/2007 Enigmail v0.95.3 has been released. This release fixes an incomaptibility with gpg4win v1.1.1

  • 07/01/2007 Enigmail v0.95.2 has been released. This release contains again more languages

  • 06/25/2007 Enigmail v0.94.4 has been released. This release fixes a compatibility issue with Thunderbird 1.5.0.12

  • 06/07/2007 Enigmail v0.95.1 has been released. This release contains many more languages

  • 04/13/2007 Enigmail v0.95.0 has been released. Simplified preferences for non-advanced users added

  • 03/06/2007 Important Security fix for Enigmail. A security bug detected by Core Security Technologies has been fixed in Enigmail v0.94.3.

  • 01/11/2007 Enigmail v0.94.2 has been released. A crash bug that could affect security has been fixed.

  • 08/06/2006 Enigmail v0.94.1 has been released. Added support for signing attachments with inline-PGP.

  • 01/11/2006 Enigmail v0.94.0 has been released. Many fixed bugs for Thunderbird 1.5.

  • 12/10/2005 Enigmail v0.93.2 has been released. Fixed bug with attachments and inline PGP.



Amici_News/468x60.jpg
  • 11/28/2005 Enigmail v0.93.1 has been released. Better compatibility with Thunderbird 1.5.

  • 10/02/2005 Enigmail v0.93.0 has been released. New setup wizard for beginners added.

  • 09/11/2005 A security bug has been detected in Enigmail. Users are adviced to upgrade to v0.92.1 as soon as possible.

  • 06/20/2005 Linux Magazine published Patrick and Olav's article on eMail security using Thunderbird and Enigmail.

  • 06/11/2005 Enigmail v0.92.0 has been released. New support for OpenPGP SmartCards

  • 03/27/2005 Enigmail v0.91.0 has been released. New support for OpenPGP: MIME header

  • 03/12/2005 Enigmail v0.90.2 has been released. Use this version for Thunderbird 1.0.2.

  • 02/12/2005 Enigmail v0.90.1 has been released.

  • 01/10/2005 NewsForge: Securing Thunderbird email with OpenPGP

  • 01/05/2005 Enigmail v0.90.0 has been released. Complete OpenPGP key management

  • 12/18/2004 Enigmail v0.89.6 has been released. Fixed compatibility issued with GnuPG 1.4

  • 12/05/2004 Enigmail v0.89.5 has been released. Enhanced OpenPGP key management

  • 11/08/2004 Thunderbird with Enigmail on OS/2 Warp!

  • 11/07/2004 Enigmail v0.89.0 has been released. New OpenPGP key management frontend

  • 09/15/2004 Enigmail v0.86.1 has been released. Fixed improper decoding of Umlauts and non-ASCII characters

  • 08/30/2004 Enigmail v0.86.0 has been released. Extended signature information in message preview header and some bug fixes.

  • 07/24/2004 Enigmail v0.85.0 has been released. Lots of fixed bugs.

  • 06/29/2004 Enigmail v0.84.2 has been released. New feature for downloading missing keys when sending messages.

  • 06/06/2004 Enigmail v0.84.1 has been released. Contains a better dialog for per recipient settings and some bug fixes.


no one deals like we do!
  • 05/08/2004 Enigmail v0.84.0 has been released. New user friendly frontend for per-recipient encryption settings.

  • 04/05/2004 Enigmail v0.83.6 has been released. New backend support for per-recipient encryption settings.

  • 03/14/2004 Enigmail v0.83.5 has been released.

  • 02/12/2004 Enigmail v0.83.3 has been released.

  • 02/04/2004 Enigmail v0.83.2 has been released.

  • 01/22/2004 Enigmail 0.83.1 has been released. This version works with the latest Thunderbird 0.5a release.

  • 15/01/2004 Enigmail 0.83.0 has been released. Enhanced user interface for message composition, lots of bugs fixed

  • 12/30/2003 Enigmail 0.82.6 and 0.76.8 have been released. They avoid triggering a Mozilla bug that causes frequent crashes at startup

  • 12/15/2003 Enigmail 0.82.5 has been released. Adds support for 'sign only encrypted messages'

  • 12/03/2003 Enigmail 0.82.4 has been released. Supports Mozilla 1.6b and Thunderbird 0.4

  • 11/07/2003 Enigmail 0.82.2 has been released

  • 11/03/2003 Enigmail 0.82.1 has been released for Mozilla 1.x. Provides the same user interface as for Thunderbird

  • 10/29/2003 Enigmail 0.82.0 has been released. Contains a reworked preferences dialog and several bug fixes

  • 10/6/2003 Enigmail 0.81.7 has been released. Contains a new encryption settings dialog for message composition

  • 9/8/2003 Enigmail 0.81.6 and 0.76.7 have been released to fully support GnuPG 1.2.3

  • 8/29/2003 Bugfix versions Enigmail 0.81.4 and 0.76.6 have been released

  • 8/10/2003 Bugfix versions Enigmail 0.81.3 and 0.76.5 have been released

  • 7/30/2003 Bugfix versions Enigmail 0.81.2 and 0.76.4 have been released

  • 7/24/2003 Enigmail 0.81.0 for Thunderbird has been released. Major parts of user interface have been redesigned

  • 7/21/2003 Bugfix release 0.76.3 for Mozilla 1.4/Netscape 7.1

  • 6/20/2003 Enigmail 0.80.0 for Mozilla Thunderbird released


uBid is the marketplace you can trust!
  • 6/18/2003 Version 0.76.1 for Mozilla 1.4-rc2

  • 6/8/2003 Version 0.76.0 for Mozilla 1.4-rc1 with enhanced support for encrypting/decrypting attachments

  • 5/2/2003 Bugfix Version 0.74.3 for Mozilla 1.3

  • 4/28/2003 New enhanced version 0.75.0 for Mozilla 1.4a

  • 28/4/2003 First information on Enigmail support for Mozilla Thunderbird (0.1-pre)

  • 4/4/2003 Version 0.74.1 for Mozilla 1.4a

  • 3/31/2003 Version 0.74.0 for Mozilla 1.3

  • 2/17/2003 Version 0.73.1 for Mozilla 1.3b

  • 2/14/2003 Version 0.73.0 for Mozilla 1.3b

  • 1/10/2003 Version 0.72.0 for Mozilla 1.3a

  • 12/20/2002 Version 0.71.3 for Mozilla 1.3a

  • 10/17/2002 Version 0.70.0 for Mozilla 1.2b

  • 9/13/2002 Branch version 0.65.4 for Mozilla 1.2a

  • 8/27/2002 Branch version 0.65.2 for Mozilla 1.1

  • 7/24/2002 Branch version 0.65.1 for Mozilla 1.1b

  • 7/12/2002 Version 0.63.1 for Mozilla 1.0 and 1.1a


Get Paid to Blog About the Things You Love
  • 5/31/2002 PGP/MIME support added in Version 0.60.0 for Mozilla 1.0 RC3

  • 5/23/2002 Version 0.49.5 for Mozilla 1.0 RC2 and Netscape7 PR1

  • 4/27/2002 Version 0.49.3 for Mozilla 1.0 RC1. Linux/PPC and FreeBSD platforms also supported now

  • 4/12/2002 Version 0.49.1 for Mozilla 1.0 Release Candidate

  • 3/12/2002 Version 0.39 for Mozilla 0.9.9; RPMs also available

  • 2/21/2002 Version 0.28 for Mozilla 0.98

  • 1/21/2002 Improved version that automatically verifies/decrypts

  • 12/26/2001 A version that works with Mozilla 0.9.7

  • 12/13/2001 A version that works with Mozilla 0.9.6

  • 11/5/2001 Incorporating new button icons contributed by Jochen Eisinger!

  • 10/29/2001 A version that works with Mozilla 0.9.5

  • 8/3/2001 A version that works with mailnews and Mozilla 0.9.3

  • 5/15/2001 Finally a version that works with mailnews and Mozilla 0.9

  • 3/15/2001 Initial source/XPI files created


Get Paid for Your Opinion
Features List


Scarica Biagio Antonaccio subito!

Latest Posts