-->

Breve panorama dei client email presenti nella nuova versione di Ubuntu 8.10 Intrepid Ibex

Non solo Evolution (Novell), Thunderbird (Mozilla), oppure Kmail. Tante new entry e novità almeno da provare.

Ci sono tanti altri email client e utility per loro dentro i repository Universe di Ubuntu 8.10 Intrepid Ibex pronti all'installazione.

Nei prossimi post continueremo con questa carrellata dei programmi open source poco conosciuti ed anche dimenticati delle principali home page.




Oggi segnaliamo:

Personal Address Manager e la nuova versione 0.4.7-1 build1 version

This package contains a couple of things that might be of use:

adgnu mail converter
A tool that will merge your GNUMail address book into the Addresses
database.

adserver
A stand-alone Addresses network server.

adtool
A command-line tool for address database manipulation.

Un completo tutorial potete trovarlo in Ubuntuland


Seafight 468x60


Abook Address Manager


Basato sul protocollo Mutt Mail Client

Abook is a text-based addressbook program designed to use with Mutt mail client. Abook runs on Linux, FreeBSD and some other UNIXes.

Mutt 1.5.18 was released on May 17, 2008. This release contains 6 months of bug fixes, documentation improvements and performance enhancements since the release of 1.5.17, but only one new feature ($time_inc, for controlling the rate at which status updates are displayed).


Anche in questo caso per approfondire potete andare in Ubuntuland


468x60.gif Parla ItaliaSenzaLimiti

Alpine


Alpine è un programma con interfaccia testuale (non grafica) che permette di gestire velocemente, anche grazie ai comodi comandi da tastiera, grandi quantità di messaggi. E’ adatto quindi a chi riceve o spedisce - e a molti succede, soprattutto al lavoro - notevoli quantità di posta elettronica. Poi funziona su tutte le versioni di Linux/Unix e su Windows, e ora c’è anche la versione web.

E’ disponibile poi anche nei repository di Ubuntu Linux, per cui può essere semplicemente installato su questo tramite Synaptic o con il comando

apt-get install alpine

Pine (a Program for Internet News & Email) è un software a marchio registrato, mentre Alpine viene distribuito con licenza Apache 2.0. Entrambi sono stati sviluppati dallo stesso team della University of Washington che ha inventato il protocollo IMAP, ed è quindi ideale per l’accesso a caselle IMAP.

Da qualche tempo Gmail, il servizio email gratuito di Google, ha reso disponibile l’accesso IMAP a tutte le sue caselle. E’ possibile quindi, dopo aver attivato l’accesso IMAP sulla nostra casella Gmail, configurare Alpine per utilizzarle.

Scheda completa e istruzioni per il download

TI468x60.gif

AlterMIME

Aggiungere per tutti i client mail di una rete la firma automatica (Es. informativa privacy) diventa piuttosto lavorioso e noioso. A questo problema ci viene incontro Altermime che integrato con postfix ci permette di raggiungere il nostro scopo. Ecco alcune indicazioni su come procedere :

1. Installing alterMIME

# wget http://www.pldaniels.com/altermime/altermime-0.2.2.tar.gz
# tar -xzvf altermime-0.2.2.tar.gz
# cd altermime-0.2.2
# make

# cp altermime /usr/bin/
# chown root.root /usr/bin/altermime
# chmod 755 /usr/bin/altermime

2. Aggiunta utente con privilegi “user” per Altermime

# useradd -r -c “Postfix Filters” -d /var/spool/filter filter
# mkdir /var/spool/filter
# chown filter.filter /var/spool/filter
# chmod 750 /var/spool/filter

3. Creare lo script per attivare alterMIME

#!/bin/sh
INSPECT_DIR=/var/spool/filter
SENDMAIL=/usr/sbin/sendmail
# Exit codes from
EX_TEMPFAIL=75
EX_UNAVAILABLE=69
# Clean up when done or when aborting.
trap “rm -f in.$$” 0 1 2 3 15
# Start processing.
cd $INSPECT_DIR || { echo $INSPECT_DIR does not exist; exit $EX_TEMPFAIL; }
/bin/cat > in.$$ || { echo Cannot save mail to file; exit $EX_TEMPFAIL; }
/usr/local/bin/altermime –input=in.$$ –verbose –force-for-bad-html –log-syslog –disclaimer=/etc/postfix/sign.text –disclaimer-html=/etc/postfix/sign.text –xheader=”X-Copyrighted-Material: Please visit http://www.miosito.it” || { echo Message content rejected; exit $EX_UNAVAILABLE; }
$SENDMAIL “$@” <>

4. Creare il Disclaimer Files

# joe /etc/postfix/sign.text
All’interno ci aggiungiamo ad esempio la informativa sulla privacy.

5. ora configuriamo postfix nel seguente modo:

#joe /etc/postfix/master.cf
Subito dopo la prima riga “smtp inet….” aggiungiamo il dfilt come indicato di seguito:

dfilt unix - n n - - pipe flags=Rq user=filter argv=/etc/postfix/disclaimer -f ${sender} ${recipient}

6. Restart Postfix

# postfix reload

Scheda completa e istruzioni per il download



Amavisd-new

Con spamassassin & amavisd, recapitiamo lo spam nella cartella posta indesiderata con postfix.

Amavisd-new is a high-performance interface between mailer (MTA) and content checkers: virus scanners, and/or SpamAssassin.

It is written in Perl for maintainability, without paying a significant price for speed. It talks to MTA via (E)SMTP or LMTP, or by using helper programs.

Best with Postfix, fine with dual-sendmail setup and Exim v4, works with sendmail/milter, or with any MTA as a SMTP relay. For Courier and qmail MTA integration there is a patch in the distributed package.

Come al solito il tutorial completo in Ubuntuland



Anteater

The Anteater project is a Mail Traffic Analyser. Anteater supports currently the logformat produced by Sendmail and by Postfix. The tool is written in 100% C++ and is very easy to customize. Input, output, and the analysis are modular class objects with a clear interface. There are eight useful analyse modules, writing the result in plain ASCII or HTML, to stdout or to files.

Anteater is a testing framework for HTTP and SOAP applications, built as an extension of Ant. The way you write scripts is by using a declarative syntax, where you specify actions to be taken and a set of expected output(s). You can check the output in various ways, including string equality, regular expressions or XPath expressions.

In addition to emulating an HTTP or SOAP client, Anteater can also be used to emulate the server side, in order to test an HTTP or SOAP client application, or to test asynchronous Web services. Anteater embeds a full blown servlet container (Tomcat 3.3), which is used to receive incoming HTTP requests. You can apply the same checks as described above not only on the response received, but also on an incoming request. With this functionality, Anteater can be used to implement test scripts for asynchronous Web services, including ebXML and BizTalk. Anteater can also be used to quickly test Web applications by deploying them on its internal servlet container, making testing such applications a real breeze.

If you're familiar with Ant for writing build scripts, you should be able to grasp Anteater very easily. And since is based on Ant, Anteater is extensible, you can define new tasks and matchers that fit your needs very easily. Check out Anteater's user manual for more information on what it is and how it works.

Un tutorial completo in questa pagina



ArchiveMail
Archivia e comprime la vecchia posta
Archivemail rimuove la vecchia posta dalla mailbox (in formato Maildir, MH, mbox o tramite IMAP) e la archivia in un file mailbox, in formato mbox compresso. E' particolarmente adatto per essere eseguito tramite cron per l'archiviazione automatica della posta vecchia.

Un tutorial completo in questa pagina


Seafight 468x60

Archmbox

Archmbox è un semplice archiviatore per la posta elettronica. Consente una selezione dei messaggi in base a diversi tipi di parametri ed è in grado di visualizzare, archiviare eliminare o fare copia dei messaggi selezionati. E` scritto in perl ed è disponibile per tutte le principali varianti di UNIX.

archmbox 4.10.0 was released.

It's been more than three years from the last release of archmbox, and now here we are again. I'd like to than all contributors for their enthusiasm that pushed me to start working again on this piece of software. This release is not a milestone, and won't probably change the way you archive emails; by the way, there are some nice features that worth a try:

* option to customize the archive mailbox name was added
* support for logical and in regular expressions based archiving was added

The usual code cleanups and revisions were performed as well.

Changelog

release 4.10.0

* option to customize the archive mailbox name was added (thanks to
Juergen Descher).
* support for logical and in regular expressions based archiving was
added (thanks to Juergen Descher).
* code cleanups and other improvents were performed.

Un tutorial completo in questa pagina

L'immagine “http://download.skype.com/share/banners/affiliate/2007/sw/it/skypein/it_skypein_468x60.gif” non può essere visualizzata poiché contiene degli errori.


asMail

Prima di tutto, asMail NON è un client di posta elettronica come molti sembrano credere. asMail xbiff è un clone, vale a dire che appena ti dice se hai e-mail o meno. Non scaricare, inviare o eliminare tutti i messaggi.

E 'solo un indicatore che mostra se avete posta o meno.

Caratteristiche più importanti della versione corrente (0.55):

* POP3 Support
* IMAP Support
* Maildir Support (standard Unix mailfile)
* Multiple mailboxes
* Afterstep wharf

Features

First of all, asMail is NOT an e-mail client as many seem to believe. asMail is a xbiff clone, i.e. it just tells you if you got e-mail or not. It does not download, send or delete any messages.

It is just a sweet little indicator that shows you if you have got mail or not.

Download
download from sourceforge: www.sourceforge.net

latest debian package: www.debian.org

Scheda completa e istruzioni per il download

TI468x60.gif
BBDV, programma database tipo rolodex


BBDB è un programma database tipo rolodex per GNU Emacs. BBDB sta per Insidious Big Brother Database e non è, ripeto, *non* è un riferimento nascosto alla serie TV Buck Rogers.

Download Source Package bbdb:

Un tutorial completo con tutte le istruzioni per il download in questa pagina


bbmail invia un messaggio quando arriva un'email

bbmail è un piccolo strumento per la notifica della posta (mostra la posta letta e non) che può essere usato nei window manager Blackbox o Fluxbox.

È simile agli altri strumenti di notifica come xbiff, ma con alcune funzionalità aggiuntive:

    * All the colors an gradients can be changed.
* Support for multiple mail boxes and provides a menu showing
all of them (and their unread/total mail count)
* Support for counting mail through external programs, it can be
used to notify on POP or IMAP checkboxes with fetchpop/fetchmail
* Possibility to 'copy' Blackbox toolbar style
* Ability to start command when new mail arrives (eg. to play sound)

Download Source Package bbmail:

Package bbmail
  • etch (stable) (mail): Notifica di posta per Blackbox/Fluxbox
    0.8.3-5+b1: hppa
    0.8.3-5: alpha amd64 arm i386 ia64 mips mipsel powerpc s390 sparc
  • etch-m68k (mail): Notifica di posta per Blackbox/Fluxbox
    0.8.3-5: m68k
  • lenny (testing) (mail): Notifica di posta per Blackbox/Fluxbox
    0.8.3-6: alpha amd64 arm armel hppa i386 ia64 mips mipsel powerpc s390 sparc
  • sid (unstable) (mail): Notifica di posta per Blackbox/Fluxbox
    0.8.3-6: alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 m68k mips mipsel powerpc s390 sparc
Un tutorial completo e istruzioni per il download in questa pagina
Biabam

Biabam Is A Bash Attachment Mailer. In other words, BIABAM is a tool that is used for mailing attachments from the commandline. It is similar to using Mutt to send attachments on the commandline, but without the overhead of a complete email client.
biabam bash attachment mailer

Un tutorial completo in questa pagina

biff a mail notification tool
Biff è un piccolo programma che invia un messaggio quando arriva un'email. Di default il servizio viene disattivato. Per attivarlo bisogna lanciare: 'update-inetd --enable biff dopo l'installazione del pacchetto.
Un tutorial completo in questa pagina
bincimap IMAP server for Maildir depositories


Ecco un'ottima utility per la vostra posta: Binc Imap is a well designed, modular Imap server for Maildir.
Binc IMAP is a well designed, modular IMAP server for Maildir. Its goals are to be secure, stable, and fast, yet flexible and easy to maintain.

For those familiar with qmail-pop3d, this IMAP server will be the natural choice. It is invoked similarily and uses checkpassword to authenticate.

Binc IMAP 1.2 is a Maildir only IMAP server (no traditional mbox support).

Scheda completa e istruzioni per il download in questa pagina

Bogofilter, filtro antispam bayesiano


Bogofilter è un filtro antispam bayesiano, risulta essere molto veloce, e piuttosto preciso nei risultati.

Bogofilter è una sorta di bogometro, esso cerca di identificare i messaggi di spam misurandone la bogosità.

Bogofilter è stato inizialmente sviluppato da Eric S. Raymond nel 2002e ha fin da subito acquisito una grande popolarità, tanto che il gruppo di sviluppatori si è man mano ampliato, restando un progetto completamente Open Source.

Scheda completa e istruzioni per il download in questa pagina

bsd-mailx (8.1.2-0.20071201cvs-3)
A simple mail user agent
bsfilter (1:1.0.15-2ubuntu1) [universe]
Bayesian spam filter
c-sig (3.8-12) [universe]
A signature tool for GNU Emacs
checkgmail (1.13-3ubuntu1) [universe]
Alternative Gmail Notifier for Linux via Atom feeds
checkpw (1.02-1) [universe]
checks password which is stored in ~/Maildir/.password
chewmail (1.2-1) [universe]
mail archiver for various mailbox formats
citadel-client (7.37-5) [universe]
complete and feature-rich groupware server (command line client)
citadel-common (7.37-5) [universe]
complete and feature-rich groupware server
citadel-mta (7.37-5) [universe]
complete and feature-rich groupware server (mail transport agent)
citadel-server (7.37-5) [universe]
complete and feature-rich groupware server
citadel-suite (7.37-5) [universe]
complete and feature-rich groupware server; metapackage for full installation

Claws Mail client di posta e un newsreader basato su GTK+

Claws Mail, (precedentemente conosciuto come Sylpheed-Claws), è un client di posta e un newsreader basato su GTK+.

Il suo sviluppo è iniziato nell'aprile del 2001 come supporto per Sylpheed, dove nuove funzioni potevano essere provate e controllate, ma ben presto il progetto si è evoluto in un programma completamente separato.

Il fork definitivo è avvenuto nell'agosto del 2005.

Il software è stato pensato per essere leggero ed ha un'interfaccia utente che ricorda ancora quella di Sylpheed.

Scheda completa e istruzioni per il download in questa pagina
compface (1:1.5.2-4) [universe]
Compress/decompress images for mailheaders, user tools
cone (0.75-1) [universe]
COnsole Newsreader and Emailer
coolmail (1.3-10) [universe]
Mail notifier with 3d graphics
courier-authdaemon (0.61.0-1ubuntu1) [universe]
Courier authentication daemon
courier-authlib (0.61.0-1ubuntu1) [universe]
Courier authentication library
courier-authlib-dev (0.61.0-1ubuntu1) [universe]
Development libraries for the Courier authentication library
courier-authlib-ldap (0.61.0-1ubuntu1) [universe]
LDAP support for the Courier authentication library
courier-authlib-mysql (0.61.0-1ubuntu1) [universe]
MySQL support for the Courier authentication library
courier-authlib-pipe (0.61.0-1ubuntu1) [universe]
External authentication support for the Courier authentication library
courier-authlib-postgresql (0.61.0-1ubuntu1) [universe]
PostgreSQL support for the Courier authentication library
courier-authlib-userdb (0.61.0-1ubuntu1) [universe]
userdb support for the Courier authentication library
courier-base (0.60.0-1ubuntu2) [universe]
Courier mail server - base system
courier-faxmail (0.60.0-1ubuntu2) [universe]
Courier mail server - Fax<->mail gateway
courier-imap (4.4.0-1ubuntu2) [universe]
Courier mail server - IMAP server
courier-imap-ssl (4.4.0-1ubuntu2) [universe]
Courier mail server - IMAP over SSL
courier-ldap (0.60.0-1ubuntu2) [universe]
Courier mail server - LDAP support
courier-maildrop (0.60.0-1ubuntu2) [universe]
Courier mail server - mail delivery agent
courier-mlm (0.60.0-1ubuntu2) [universe]
Courier mail server - mailing list manager
courier-mta (0.60.0-1ubuntu2) [universe]
Courier mail server - ESMTP daemon
courier-mta-ssl (0.60.0-1ubuntu2) [universe]
Courier mail server - ESMTP over SSL
courier-pcp (0.60.0-1ubuntu2) [universe]
Courier mail server - PCP server
courier-pop (0.60.0-1ubuntu2) [universe]
Courier mail server - POP3 server
courier-pop-ssl (0.60.0-1ubuntu2) [universe]
Courier mail server - POP3 over SSL
courier-ssl (0.60.0-1ubuntu2) [universe]
Courier mail server - SSL/TLS Support
courier-webadmin (0.60.0-1ubuntu2) [universe]
Courier mail server - web-based administration frontend
courierpassd (1.1.2-1) [universe]
Change courier user passwords using poppassd interface
courierpasswd (1.1.2-1) [universe]
Authenticate courier passwords with checkpassword interface
courieruserinfo (1.1.2-1) [universe]
Retrieve courier user account information
crashmail (0.71-2) [universe]
JAM and *.MSG capable Fidonet tosser
crm114 (20080330-2) [universe]
The Controllable Regex Mutilator and Spam Filter
cyrus-admin-2.2 (2.2.13-14ubuntu2) [universe]
Cyrus mail system (administration tools)
cyrus-clients-2.2 (2.2.13-14ubuntu2) [universe]
Cyrus mail system (test clients)
cyrus-common-2.2 (2.2.13-14ubuntu2) [universe]
Cyrus mail system (common files)
cyrus-imapd-2.2 (2.2.13-14ubuntu2) [universe]
Cyrus mail system (IMAP support)
cyrus-murder-2.2 (2.2.13-14ubuntu2) [universe]
Cyrus mail system (proxies and aggregator)
cyrus-nntpd-2.2 (2.2.13-14ubuntu2) [universe]
Cyrus mail system (NNTP support)
cyrus-pop3d-2.2 (2.2.13-14ubuntu2) [universe]
Cyrus mail system (POP3 support)
dbmail (2.2.10-1build1) [universe]
base package for the dbmail email solution
dbmail-mysql (2.2.10-1build1) [universe]
MySQL module for Dbmail
dbmail-pgsql (2.2.10-1build1) [universe]
PostgreSQL module for Dbmail
dk-filter (1.0.0.dfsg-1ubuntu1) [universe]
DomainKeys for Sendmail
dkim-filter (2.6.0.dfsg-1ubuntu2) [universe]
DomainKeys Identified Mail (DKIM) Milter implementation
dkimproxy (1.0.1-6) [universe]
an SMTP-proxy that signs and/or verifies emails, using the Mail::DKIM module
dovecot-common (1:1.1.4-0ubuntu1.2) [security]
secure mail server that supports mbox and maildir mailboxes
dovecot-dev (1:1.1.4-0ubuntu1.2) [security]
header files for the dovecot mail server
dovecot-imapd (1:1.1.4-0ubuntu1.2) [security]
secure IMAP server that supports mbox and maildir mailboxes
dovecot-pop3d (1:1.1.4-0ubuntu1.2) [security]
secure POP3 server that supports mbox and maildir mailboxes
dspam (3.6.8-8ubuntu2) [universe]
is a scalable, fast and statistical anti-spam filter
dspam-webfrontend (3.6.8-8ubuntu2) [universe]
DSPAM is a scalable and statistical anti-spam filter
ecartis (1.0.0+cvs.20030911-11) [universe]
Fast, Flexible Mailing List Manager
ecartis-cgi (1.0.0+cvs.20030911-11) [universe]
CGI front-end for Ecartis
echolot (2.1.8-6) [universe]
Pinger for anonymous remailers such as Mixmaster
elmo (1.3.0-1.2) [universe]
text-based mail-reader supporting SMTP and POP3
email-reminder (0.7.3-3) [universe]
Send event reminders by email
emil (2.1.0-beta9.dfsg-1) [universe]
Conversion Filter for Internet Messages
enemies-of-carlotta (1.2.6-1) [universe]
mailing list manager
Enigmail, potente estensione per l'autenticazione e cifratura.


Enigmail è un'estensione open source per il client e-mail della suite Mozilla / Netscape e per Mozilla Thunderbird.

Permette agli utenti di utilizzare il sistema di autenticazione e cifratura offerto dallo standard OpenPGP facendo uso dell'implementazione offerta da GnuPG.

Principali caratteristiche:

* Cifratura/Firma delle mail inviate, Decifrazione/Autenticazione delle mail ricevute
* Supporto per la cifratura inline-PGP (RFC 2440) e PGP/MIME (RFC 3156)
* Gestione multiutente della cifratura, delle firme e delle preferenze
* Possibilità di creare regole per automatizzare la firma e la cifratura dei messaggi

Trattandosi di un'estensione per i software Mozilla, può essere utilizzato su Windows, Macintosh e Linux. Enigmail viene solitamente usato con GnuPG, anch'esso gratuito, open source e disponibile per Windows, Macintosh e Linux.

Scheda completa e istruzioni per il download in questa pagina
esmtp (0.6.0-1) [universe]
User configurable relay-only MTA
esmtp-run (0.6.0-1) [universe]
User configurable relay-only MTA
etpan-ng (0.7.1-5.1build2) [universe]
console mail user agent based on libEtPan!
exim4 (4.69-5ubuntu2)
meta-package to ease Exim MTA (v4) installation
exim4-base (4.69-5ubuntu2)
support files for all Exim MTA (v4) packages
exim4-config (4.69-5ubuntu2)
configuration for the Exim MTA (v4)
exim4-daemon-heavy (4.69-5ubuntu2)
Exim MTA (v4) daemon with extended features, including exiscan-acl
exim4-daemon-heavy-dbg (4.69-5ubuntu2)
debugging symbols for the Exim MTA (v4) packages
exim4-daemon-light (4.69-5ubuntu2)
lightweight Exim MTA (v4) daemon
exim4-daemon-light-dbg (4.69-5ubuntu2)
debugging symbols for the Exim MTA (v4) packages
exim4-dbg (4.69-5ubuntu2)
debugging symbols for the Exim MTA (v4) packages
exim4-dev (4.69-5ubuntu2)
header files for the Exim MTA (v4) packages
eximon4 (4.69-5ubuntu2)
monitor application for the Exim MTA (v4) (X11 interface)
exmh (1:2.7.2-16) [universe]
extensible X user interface for MH mail

Ultimi post pubblicati


Universo Linux


2 commenti:

Random Posts

I miei preferiti in Instagram

Archivio