Metadata-Version: 2.1
Name: mail-deduplicate
Version: 3.0.0
Summary: Deduplicate mails from mbox files and maildir folders.
Home-page: https://github.com/kdeldycke/mail-deduplicate
Author: Kevin Deldycke
Author-email: kevin@deldycke.com
License: GPLv2+
Keywords: CLI,mail,email,maildir,mbox,deduplication,dedupe,cleanup,mailbox
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Utilities
Requires-Python: >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*
Requires-Dist: boltons (>=16.3.0)
Requires-Dist: click (>=5.0)
Requires-Dist: click-log (>=0.2.0)
Requires-Dist: progressbar2
Requires-Dist: tabulate
Provides-Extra: develop
Requires-Dist: bumpversion ; extra == 'develop'
Requires-Dist: isort ; extra == 'develop'
Requires-Dist: readme-renderer (>=16.0) ; extra == 'develop'
Requires-Dist: setuptools (>=24.2.1wheel) ; extra == 'develop'
Provides-Extra: docs
Requires-Dist: sphinx (>=1.4) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: arrow ; extra == 'tests'
Requires-Dist: pycodestyle (>=2.1.0) ; extra == 'tests'
Requires-Dist: pylint ; extra == 'tests'
Requires-Dist: pytest ; extra == 'tests'
Requires-Dist: pytest-cov ; extra == 'tests'

Mail Deduplicate
================

Command-line tool to deduplicate mails from a set of mbox files and/or maildir
folders.

Stable release: |release| |versions| |license| |dependencies|

Development: |build| |docs| |coverage| |quality|

.. |release| image:: https://img.shields.io/pypi/v/mail-deduplicate.svg
    :target: https://pypi.python.org/pypi/mail-deduplicate
    :alt: Last release
.. |versions| image:: https://img.shields.io/pypi/pyversions/mail-deduplicate.svg
    :target: https://pypi.python.org/pypi/mail-deduplicate
    :alt: Python versions
.. |license| image:: https://img.shields.io/pypi/l/mail-deduplicate.svg
    :target: https://www.gnu.org/licenses/gpl-2.0.html
    :alt: Software license
.. |dependencies| image:: https://requires.io/github/kdeldycke/mail-deduplicate/requirements.svg?branch=main
    :target: https://requires.io/github/kdeldycke/mail-deduplicate/requirements/?branch=main
    :alt: Requirements freshness
.. |build| image:: https://travis-ci.org/kdeldycke/mail-deduplicate.svg?branch=develop
    :target: https://travis-ci.org/kdeldycke/mail-deduplicate
    :alt: Unit-tests status
.. |docs| image:: https://readthedocs.org/projects/maildir-deduplicate/badge/?version=develop
    :target: https://maildir-deduplicate.readthedocs.io/en/develop/
    :alt: Documentation Status
.. |coverage| image:: https://codecov.io/gh/kdeldycke/mail-deduplicate/branch/develop/graph/badge.svg
    :target: https://codecov.io/github/kdeldycke/mail-deduplicate?branch=develop
    :alt: Coverage Status
.. |quality| image:: https://scrutinizer-ci.com/g/kdeldycke/mail-deduplicate/badges/quality-score.png?b=develop
    :target: https://scrutinizer-ci.com/g/kdeldycke/mail-deduplicate/?branch=develop
    :alt: Code Quality


Features
--------

* Duplicate detection based on cherry-picked mail headers.
* Source mails from multiple mbox files and/or maildir folders.
* Multiple removal strategies based on size, timestamp or file path.
* Dry-run mode.
* Protection against false-positives by checking for size and content
  differences.


Installation
------------

This package is `available on PyPi
<https://pypi.python.org/pypi/mail-deduplicate>`_, so you can install the
latest stable release and its dependencies with a simple ``pip`` call:

.. code-block:: shell-session

    $ pip install mail-deduplicate


Documentation
-------------

Docs are `hosted on Read the Docs
<https://maildir-deduplicate.readthedocs.io>`_.


`Changes for v3.0.0 (2020-09-03) <https://github.com/kdeldycke/mail-deduplicate/compare/v2.2.0...v3.0.0>`_
----------------------------------------------------------------------------------------------------------

.. DANGER::
   As of ``v3.0.0``, the project has been renamed to *Mail Deduplicate* and is
   now available on:

   * Github at https://github.com/kdeldycke/mail-deduplicate
   * PyPi at https://pypi.org/project/mail-deduplicate

.. note:: This version is not yet released and is under active development.

* Rename project from ``maildir-deduplicate`` to ``mail-deduplicate``.
* Rename ``master`` branch to ``main``.
* Add support for mboxes. Closes #48.
* Remove requirement on ``-s``/``--strategy`` parameter, to let mails being
  grouped into duplicate sets without any removal action, effectively acting as
  a second-level dry-run.


`Full changelog <https://maildir-deduplicate.readthedocs.io/en/develop/changelog.html#changelog>`_.

