Dada Mail 3.0 Beta 2 (Feature Development branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Dada Mail 3.0 Beta 2 (Feature Development branch)
# 1  
Old 05-06-2008
Dada Mail 3.0 Beta 2 (Feature Development branch)

ImageDada Mail is an intuitive, Web-based email listmanagement system, which runs on any hostingaccount that can execute custom CGI scripts. DadaMail is also a conceptual art project. Dada Mailhandles double opt-in/opt-out subscriptions, andcan send complex announce-only and/or discussionmailing list messages. It also provides archiving,viewing, searching, resending, and syndicating(through RSS or Atom) sent messages. Dada Mailproduces valid XHTML and sticks to best practiceswhen creating email messages.License: GNU General Public License (GPL)Changes:
This release features bugfixes. Anyone using the 3.0 Beta 1 version is encouraged to upgrade.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. What is on Your Mind?

New Man Page Feature on ToolBar (Beta)

Here by popular request, we have added some (beta) Man Page functionality to the toolbar (see screenshots attached). The feature on the toolbar does not have all the features of our main main page app; it is missing: (1) Recursive search (searches all man dbs during each search) (2)... (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question
Mail::Mbox::MessageParser::Grep(3pm)			User Contributed Perl Documentation		      Mail::Mbox::MessageParser::Grep(3pm)

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.10.1 2009-08-09 Mail::Mbox::MessageParser::Grep(3pm)