Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pali/plist
PList - software for archiving and formatting emails from mailing lists
https://github.com/pali/plist
Last synced: 1 day ago
JSON representation
PList - software for archiving and formatting emails from mailing lists
- Host: GitHub
- URL: https://github.com/pali/plist
- Owner: pali
- License: gpl-2.0
- Created: 2014-05-02T15:51:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-23T00:16:05.000Z (about 8 years ago)
- Last Synced: 2024-05-09T08:25:09.722Z (6 months ago)
- Language: Perl
- Homepage:
- Size: 434 KB
- Stars: 4
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
=== About ===
PList - software for archiving and formatting emails from mailing lists
License: GPLv2+
Author: Pali Rohár
Email: [email protected]PList is written in Perl and it is developed as replacement for Pipermail, Hypermail or MHonArc. It provides terminal application for manipulating with email archives and also provides web based CGI application for browsing emails via internet browser. For each mailing list archive PList needs directory (called index) where it stores emails and other data. Because widely used MIME or MBox formats are not suitable for fast processing PList stores emails in its own internal binary format. Our terminal application, that converts emails to its internal formats, supports reading archives in various MBox formats and also tries to understand lots of incorrect MIME formatted emails. More detailed description and internals about this PList software can be found in my bachelor's thesis: Mailing list archives (in Slovak language) at https://is.cuni.cz/webapps/zzp/detail/132573/
Features:
* reading archives in mboxo, mboxrd, mboxcl, mboxcl2 variants of MBox format (plus mix of all these)
* reading emails in RFC2822 and MIME formats
* incremental imports of MBox archives
* auto pregenerating HTML pages for emails
* support for HTML templates
* support for email attachments
* auto detection of charset encoding and mime type of badly formatted MIME parts
* stable implementation without randomness (result of importing same emails in any order at any time is still same archive)
* interpreting broken emails and those which violate standards in the best possible way
* browse emails by years, months or dates
* flat and tree based view of email list
* sophisticated (and stable) algorithm for grouping emails into threads and subsequently building email trees for these threads
- support for building threads across more months and years
- using Message-Id, In-Reply-To, References headers and option also for matching by similar subjects
- deals with incomplete threads when some emails from In-Reply-To or References headers are missing
- rationally build tree from email thread (=transitive closure of directly acyclic graph)
- deals with possible cycles, inconsistencies or flaws in email threads=== Parts ===
Internal Perl modules:
PList::Email
PList::Email::MIME
PList::Email::Binary
PList::Email::View
PList::List
PList::List::MBox
PList::List::Binary
PList::Index
PList::TemplateTerminal applications:
plist.pl
plist-import-mboxes.plWeb based CGI applications:
plist.cgi
=== Installation ===
This software depends on required Perl modules which must be installed. Here is list of these modules:
CGI::Session
CGI::Simple
Cwd
Date::Format
Date::Parse
DBD::mysql
DBD::SQLite
DBI
Digest::SHA
Email::Address
Email::Folder::Mbox (>= 0.860)
Email::MIME
Email::MIME::ContentType
Encode
Encode::Detect
File::MimeInfo::Magic
File::Path
FindBin
List::MoreUtils
HTML::Entities
HTML::FromText
HTML::Strip
HTML::Template
MIME::Base64
Time::LocalOptionally if Perl module Number::Bytes::Human is installed PList will report size of all email attachments in human readable format (instead default bytes).
To make sure that PList terminal and CGI applications will work correctly all internal PList modules must be installed into the same directory as program applications or into global Perl modules directory. Installation process could be invoked by command:
$ make install
This command copies everything into /usr/share/plist/ and creates launchers for terminal applications in /usr/bin/. With standard Make variables DESTDIR and PREFIX it is possible to change installation directory and system configuration prefix directory.
=== Configuration ===
PList uses HTML templates for generating HTML pages. Default templates are stored in template directory. Different templates can be used by changing global environmental variable PLIST_TEMPLATE_DIR. This variable must contain absolute path to templates directory. If variable does not exist or is empty then the applications are configured to use default templates directory.
For using web application HTTP web server with CGI scripting support is needed. PList was tested with Apache 2 server. PList CGI script is using PList (index) archives in current working directory, so web server must be correctly configured to access these archives. To configure URL links user can use prepared .htaccess file.
=== Usage ===
*** Terminal application plist.pl ***
$ plist.pl
Modes: index, list, bin
** Commands for index mode **
Index mode is used for access to PList (index) archives.
| view |
Shows information about archive in| create [] [] [] [] [=] [...] |
Creates new empty archive with directory name . Uses SQL driver , parameters , username and password . If is not specified SQLite will be used and database will be stored in . Additional list of = options are passed to config command (see below).| config |
Changes configuration value for key of archive . Possible keys are:
* driver, params, username, password - Database connection parameters
* description - Description of archive
* listsize - Average size of list file (default 104857600 = 100MB)
* nomatchsubject - Do not group emails with similar subject to one thread (default 1 = is on)
* templatedir - Absolute path for directory with HTML templates (overwrite PLIST_TEMPLATE_DIR)
* autopregen - Automatically pregenerates HTML pages for emails (default 0 = is off)
* auth - Comma separated cgi authorization keys (secure, session, httpbasic, script)
* authscript - Path to script for cgi authorization (only used when "script" is specified in auth)| add-list [] [silent] |
Adds emails from file into archive . File must be in internal binary format (see list mode). If file is not specified stdin will be used. When argument is used no warnings about duplicate emails will be reported.| add-mbox [] [silent] [unescape] |
Same as add-list but input file must be in one of these MBox formats: mboxo, mboxrd, mboxcl, mboxcl2. For mboxrd format is needed option.| add-email [] |
Adds one email from file into archive . If input file is not specified stdin will be used. Input file must be in text document with RFC2822 email structure. It can contains optional mailbox-like "From " line.| get-bin [] |
Retrieves email with id from archive and stores it into the file in internal binary format (see bin mode). If output file is not specified stdout will be used.| get-part [] |
Retrieves specified part of email with id from archive and stores it into file . To see list of parts in email use command info in bin mode. If output file is not specified stdout will be used.| get-roots [desc] [date1] [date2] [limit] [offset] |
Prints tree roots of email threads from archive . By default output is in ascending order sorted by dates. If is specified then descending order will be used. Additional arguments (start date), (end date), offset, limit (relative to offset) can be used to filter output. Dates must be specified in unix timestamp.| get-tree [] |
Prints tree (thread) for email specified by id from archive . Optionally stores tree into file instead of stdout.| gen-html [] |
Generates HTML page for email with id from archive and stores it into the file . If archive cache contains pregenerated HTML page this cached version will be retrieved. If output file is not specified stdout will be used.| del |
Deletes email with id from archive .| setspam |
Marks email with id as spam (value true) or not spam (value false) in archive .| pregen [] |
Pregenerates HTML page for email with id from archive . Page will be stored in archive cache and next call of command gen-html will return this cached version.** Commands for list mode **
List mode is used for reading and writing email lists in internal binary format.
| list view |
Shows some information (including id, offset and parts) about each email in list file .| list add-mbox [] [ |
Adds all emails from MBox file into the list file . If input file is not specified then stdin will be used. For mboxrd format is needed option.| list add-email [] |
Adds one email from file into the list file . If input file is not specified stdin will be used. Input file must be in text document with RFC2822 email structure. It can contains optional mailbox-like "From " line.| list add-bin [] |
Adds one email from file in internal binary format (see mode bin) into list file . If input file is not specified stdin will be used.| list get-bin [] |
Retrieves email at offset from list and stores it into the file in internal binary format (see bin mode). If output file is not specified stdout will be used.| list get-part [] |
Retrieves email part from email at offset in list and stores it into the file . If output file is not specified stdout will be used.| list gen-html [] |
Generates HTML page for email at offset in list and stores it into the file . If output file is not specified stdout will be used.** Commands for bin mode **
Bin mode is used for reading and generating emails in internal binary format.
| bin view [] |
Shows email (including parts) from file which is in internal binary format. If input file is not specified stdin will be used.| bin from-email [] [] |
Converts email from file into binary file . Input file must be text document with RFC2822 structure. It can contains optional mailbox-like "From " line. If output file is not specified stdout will be used. If input file is not specified stdin will be used.| bin get-part [] [] |
Retrieves email part from email and stores it into the file . If output file is not specified stdout will be used.| bin gen-html [] [] |
Generates HTML page for email and stores it into the file . If output file is not specified stdout will be used.*** Terminal application plist-import-mboxes.pl ***
$ plist-import-mboxes.pl [ ...] [silent] [unescape]
This application adds all emails from all specified MBox files , , ... into archive . It skips all MBox files which were already processed and its modification dates were not changed since last run. If last argument is "silent" than no warnings about duplicate emails will be reported.
=== Examples ===
** Index mode **
Create new empty archive with name lkml and use SQLite:
$ plist.pl index create lkmlCreate new empty archive with name test and use MySQL (db name: testdb, server: localhost, username: user, password: password):
$ plist.pl index create test mysql testdb:localhost user passwordSet description of archive lkml to Linux Kernel Mailing List:
$ plist.pl index config lkml description "Linux Kernel Mailing List"Enable auto pregenerating of HTML pages for all new emails which will be added to archive test:
$ plist.pl index config autopregen 1Add one email from stdin to archive lkml:
$ plist.pl index add-email lkmlAdd one email from file email.rfc822 to archive test:
$ plist.pl index add-email test email.rfc822Add all emails from MBox file archive.mbox to archive lkml (in silent mode - without warnings about duplicate emails):
$ plist.pl index add-mbox lkml archive.mbox silentDelete email with id [email protected] from archive test47:
$ plist.pl index del test47 [email protected]Retrieve email with id id4247@test from archive arch and store it into the file file.bin (in internal binary format):
$ plist.pl index get-bin arch id4247@test file.binRetrieve email part 0/0/1 from email with id id4742@test from archive arch and store into the file file.pdf:
$ plist.pl index get-part arch id4742@test 0/0/1 file.pdfGenerate HTML page from email with id [email protected] from archive test and store it into the file email.html:
$ plist.pl index gen-html test [email protected] email.htmlMark email with id [email protected] in archive arch as spam:
$ plist.pl index setspam arch [email protected] true** List mode **
Convert MBox file file.mbox (with all emails) to file file.list (in internal binary list format):
$ plist.pl list add-mbox file.list file.mboxRetrieve email which starts at offset 1024 in binary list file file.list and store it into the file file.bin (in internal binary format):
$ plist.pl list get-bin file.list 1024 file.bin** Bin mode **
Generate HTML page from MIME email which is on stdin and write it to stdout:
$ plist.pl bin from-email | plist.pl bin gen-html** Import more MBox files **
Add all emails from MBox files /201401.mbox and /201402.mbox to archive lkml (in silent mode - without warnings about duplicate emails):
$ plist-import-mboxes.pl lkml /201401.mbox /201402.mbox silentAdd all emails from MBox files with extension .mbox which are in directory tree /lkml/ to archive lkml (silent mode):
$ plist-import-mboxes.pl lkml $(find /lkml/ -name *.mbox) silent