A program which flags emails, typically after an incoming payment
Project description
Mail Flagger is a program that flags selected emails in your inbox (or copies them to another folder), typically when a relevant payment is made. This gives the sender a possibility to bring attention to his message and to compensate time spent by the receiver on reading and eventual responding. For rationale and use cases, see the blog post.
Mail Flagger is free software, licensed under Apache License 2.0.
How to use
- Install Python (version 3.8 or newer is required). Windows users: check the “Add Python 3.8 to PATH” option and (if available) click the button “Disable path length limit” at the end of the installation.
- Install Mail Flagger: either download a release for your platform (Windows & Mac OS X only) or use the custom installation method described below.
- Start Mail Flagger, fill in the configuration and run the
daemon
command. Security note: Although your email password is stored locally on your computer, if at all, it is currently not encrypted and may be visible in the process command, which may have security implications especially if your computer is simultaneously being used by other people. - Instruct your senders.
Specific steps for senders depend on the payment method, but typically they will need to encompass a search query that specifies which message they want to get flagged. Its syntax is the same as the syntax for IMAP search command. An example query:
SINCE 20-Mar-2020 FROM john.doe@example.com UNANSWERED
If the sender knows how to extract Message-ID, he may use it as follows:
HEADER Message-Id <B27397-0100000@Blurdybloop.COM>
Mail Flagger automatically adds the UNFLAGGED
search term to the provided query.
Payment methods
The daemon only listens and waits until something tells it to flag a message, it does nothing on its own initiative. To make it do something, you need a flagging provider, typically tied to a payment method(s). Two of them are bundled inside the default release packages, but the overall mechanism is extensible and allows writing providers in various programming languages.
Banking
This provider adds a subcommand that allows importing a file in the MT940 format containing a list of transactions. Daemon needs to be running separately for this to work. A query needs to be encompassed in transaction message (optionally with a specific prefix to distinguish it from other transfers).
Manual export and import is cumbersome, but it is a typical limitation for banking systems, which do not facilitate integration for ordinary users. For a more smooth experience with live transaction processing, consider using cryptocurrencies.
Ercoin
This provider adds an optional daemon coroutine that runs along the main daemon and live monitors Ercoin transactions. A query needs to be encompassed in transaction message.
Advanced usage
Custom installation
Mail Flagger can be installed using pip:
pip install mailflagger
For GUI support, install mailflagger[GUI]
instead of the above. If wxPython wheels are not available for your platform, you may want to use a system package of wxPython (if available) instead of building it from source. (When using virtualenv, note the --system-site-packages
option).
Two plugins bundled in the standard release are mailflagger_banking
and mailflagger_ercoin
.
Command line
If you don’t want to use the GUI, either make a custom installation without the GUI support or provide any argument to the mailflagger
command.
Creating custom providers
Generic method
The daemon exposes itself as a ZeroMQ server. To flag a message, it is sufficient to connect to it and send a MessagePack-encoded map containing IMAP query associated with the "query"
key. A reply will be another map containing key "processed"
(should be true
).
Python plugins
Provider can be embedded into the main Main Flagger program either as subcommands or as coroutines which will be started with the daemon. When writing plugins, the mailflagger.client.Client
class should be helpful. It wraps the ZeroMQ connection and message packing and unpacking.
When defining plugin-specific configuration options, remember to avoid name clashes and potential name clashes (with other plugins).
When we write about “default arguments”, we mean either default argument values or values saved in a configuration file.
Subcommands
This type of plugin needs to specify a mailflagger.plugins.commands
entry point which points to an object which defines the following function attributes:
modify_subparser
(accepting subparser) — optional, used to add plugin-specific configuration options.run
(accepting parsed arguments) — used to do the actual job.command_help
(accepting default arguments) — optional, it returns help for the subcommand.
See the mailflagger_banking
plugin for an example.
Daemon coroutines
This type of plugin needs to specify a mailflagger.plugins.daemon
entry point which points to an object which defines the following function attributes:
modify_subparser
(accepting subparser) — optional, used to add plugin-specific configuration options to the daemon subparser.daemon_coroutines
(accepting parsed arguments) — returning an iterable of coroutines that shall be started along with the server daemon.
See the mailflagger_ercoin
plugin for an example.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mailflagger-0.1.0.tar.gz
.
File metadata
- Download URL: mailflagger-0.1.0.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 099254e134d96b5a9fd0ff1205f8ffc65dbc29ce6e9993262a369a751c0d39a1 |
|
MD5 | a9231b33f16aaaddda8ccd6bee985fc5 |
|
BLAKE2b-256 | 3bca9a2d86001c2898c94896fdae62288ae0521e68cd21253d379b83d25bfed1 |
File details
Details for the file mailflagger-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: mailflagger-0.1.0-py3-none-any.whl
- Upload date:
- Size: 46.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86f31ba00c9a391cc25534545dc42d7a8b3922d84304580428ecf2ec9d1868c7 |
|
MD5 | 4d8ce546a4e6162a915bf5fd4647ac2e |
|
BLAKE2b-256 | 738fde14c43b41ba16407962fab7788a6ab532130fc33bacdd8c2c631bee4085 |