OfflineIMAP 5.99.8 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News OfflineIMAP 5.99.8 (Default branch)
# 1  
Old 03-10-2008
OfflineIMAP 5.99.8 (Default branch)

ImageOfflineIMAP is a tool to simplify email reading.It allows you to read the same mailbox frommultiple computers and ensures that your changeswill be automatically reflected on all computers.You can use various mail clients to read a singlebox or read mail while offline with fullsynchronization when you reconnect. You can readIMAP mail with readers that lack IMAP support(same goes for SSL). OfflineIMAP's multithreadedsynchronization algorithm performs between 10 and60 times faster than many mail readers' internalIMAP support, and it can be used even with mailreaders that support IMAP already. There are fiveavailable user interface modules, includingscripted execution, an interactive terminalinterface, and GUI interfaces.License: GNU General Public License (GPL)Changes:
Kerberos support has been added. Gmail and LocalStatus bugs have been fixed. There are Debian enhancements.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Mail::Mbox::MessageParser::Grep(3)			User Contributed Perl Documentation			Mail::Mbox::MessageParser::Grep(3)

NAME
Mail::Mbox::MessageParser::Grep - A GNU grep-based mbox folder reader SYNOPSIS
#!/usr/bin/perl use Mail::Mbox::MessageParser; my $filename = 'mail/saved-mail'; my $filehandle = new FileHandle($filename); my $folder_reader = new Mail::Mbox::MessageParser( { 'file_name' => $filename, 'file_handle' => $filehandle, 'enable_grep' => 1, } ); die $folder_reader unless ref $folder_reader; # Any newlines or such before the start of the first email my $prologue = $folder_reader->prologue; print $prologue; # This is the main loop. It's executed once for each email while(!$folder_reader->end_of_file()); { my $email = $folder_reader->read_next_email(); print $email; } DESCRIPTION
This module implements a GNU grep-based mbox folder reader. It can only be used when GNU grep is installed on the system. Users must not instantiate this class directly--use Mail::Mbox::MessageParser instead. The base MessageParser module will automatically manage the use of grep and non-grep implementations. METHODS AND FUNCTIONS The following methods and functions are specific to the Mail::Mbox::MessageParser::Grep package. For additional inherited ones, see the Mail::Mbox::MessageParser documentation. $ref = new( { 'file_name' => <mailbox file name>, 'file_handle' => <mailbox file handle> }); <file_name> - The full filename of the mailbox <file_handle> - An opened file handle for the mailbox The constructor for the class takes two parameters. The file_name parameter is the filename of the mailbox. The file_handle argument is the opened file handle to the mailbox. Returns a reference to a Mail::Mbox::MessageParser object, or a string describing the error. BUGS
No known bugs. Contact david@coppit.org for bug reports and suggestions. AUTHOR
David Coppit <david@coppit.org>. LICENSE
This software is distributed under the terms of the GPL. See the file "LICENSE" for more information. HISTORY
This code was originally part of the grepmail distribution. See http://grepmail.sf.net/ for previous versions of grepmail which included early versions of this code. SEE ALSO
Mail::Mbox::MessageParser perl v5.12.1 2009-08-09 Mail::Mbox::MessageParser::Grep(3)