Skip to main content

Console viewer for MIME mail files

Project description

Mailcat outputs mail files to the text console. It works just like cat:

$ mailcat example.eml
Subject: Plushy
From:    Jan <jan@catnip.nowhere>
To:      Marta <marta@purrrrr.xyz>
Date:    Fri, 21 Aug 2015 23:10:43 +0200

Hi Marta,

Here are the pictures of my cat, Plushy. She's so cute!!!

Attachments:
[1] Plushy1.jpg (image/jpeg)
[2] Plushy2.jpg (image/jpeg)
[3] Plushy3.jpg (image/jpeg)

Download and install

Install Mailcat with pip:

pip install mailcat

To use Mailcat with less, add this to ~/.lessfilter:

#!/bin/sh

case "$1" in
    *.eml|*.mbx|*.mbox)
        mailcat --color=always "$1"
        exit 0
        ;;
esac

exit 1

and make ~/.lessfilter executable:

chmod +x ~/.lessfilter

The source code is available from the Git repository at Bitbucket.

Mailcat is written in Python and licensed under GNU GPL version 3 or any later version.

Version history

0.2

(released on October 3, 2015)

  • Added support for mbox files.

  • Added support for reading from stdin.

  • Fixed UnicodeEncodeError in Python 2 when stdout is a file or a pipe.

0.1

(released on August 21, 2015)

  • Added support for reading .eml files (plain text MIME messages).

  • Added formatting of HTML bodies as plain text or raw HTML.

  • Added attachment listing.

  • Added color highlighting.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mailcat-0.2.tar.gz (6.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page