managesieve


Namemanagesieve JSON
Version 0.8 PyPI version JSON
download
home_pagehttps://managesieve.readthedocs.io/
SummaryRFC-5804 Manage Sieve client library for remotely managing Sieve scripts
upload_time2024-03-18 12:33:49
maintainer
docs_urlhttps://pythonhosted.org/managesieve/
authorHartmut Goebel
requires_python>=3.6
licensePython, GPLv3
keywords sieve managesieve sieveshell rfc 5804
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============
`managesieve`
===============

---------------------------------------------------------------------------------------------------------------------------------------
RFC-5804 Manage Sieve client library for remotely managing Sieve scripts, including an user application (the interactive 'sieveshell').
---------------------------------------------------------------------------------------------------------------------------------------

:Author:      Hartmut Goebel <h.goebel@crazy-compilers.com>
:Version:     0.8
:Copyright:   2003-2024 by Hartmut Goebel
:Licence:     Python Software Foundation License and
              GNU Public Licence v3 (GPLv3)
:Homepage:    https://managesieve.readthedocs.io/
:Development: https://gitlab.com/htgoebel/managesieve

Sieve scripts allow users to filter incoming email on the mail server.
The ManageSieve protocol allows managing Sieve scripts on a remote
mail server. These servers are commonly sealed so users cannot log
into them, yet users must be able to update their scripts on them.
This is what for the "ManageSieve" protocol is. For more information
about the ManageSieve protocol see `RFC 5804
<http://tools.ietf.org/html/rfc5804>`_.

This module allows accessing a Sieve-Server for managing Sieve scripts
there. It is accompanied by a simple yet functional user application
'sieveshell'.


Changes since 0.7
~~~~~~~~~~~~~~~~~~~~~

* Now supports Python 3.6 to 3.12.

:managesieve:
   - Add support for the UNAUTHENTICATE command.
   - Add a socket timeout parameter.
   - Add support for IPv6.
   - Allow disabling certificate verification.
   - Follow the 'Logging for a Library' guideline.
   - BREAKING: Rearrange DEBUG logging levels to be more reasonable.
     See `docs/Logging.rst` for details.

:sieveshell:
   - Add option '--no-tls-verify'.
   - Improve error message if TLS certificate verification fails.
   - Keep line-endings on file IO.
   - Remove temporary file on successful edit, too.
   - Fix: Pass to sieve.login() the Authorization ID

:general:
   - Add support for Python 3.12.
   - Improve testing, add a tox.ini file and add CI/CD.
   - Fix SPDX license identifier.
   - Fix several typos.
   - Lint all the code.
   - Remove unused code.


Requirements and Installation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`managesieve` requires

* `Python`__ 3.6—3.12 and
* `pip`__ for installation.

__ https://www.python.org/download/
__ https://pypi.org/project/pip


Not yet implemented
~~~~~~~~~~~~~~~~~~~~~~~~

- sieve-names are only quoted dump (put into quotes, but no escapes yet).


Copyright and License
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:Copyright: © 2003-2024 by Hartmut Goebel <h.goebel@crazy-compilers.com>

:License for `managesieve`:
   PSF-like License, see enclosed file

:License for 'sieveshell' and test suite: `GPL v3
   <https://opensource.org/licenses/GPL-3.0>`_


Credits
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Based on Sieve.py from Ulrich Eck <ueck@net-labs.de> which is part of
of 'ImapClient' (see http://www.zope.org/Members/jack-e/ImapClient), a
Zope product.

Some ideas taken from imaplib written by Piers Lauder
<piers@cs.su.oz.au> et al.

Thanks to Tomas 'Skitta' Lindroos, Lorenzo Boccaccia, Alain Spineux,
darkness, Gregory Boyce and Grégoire Détrez for sending patches.

.. Emacs config:
 Local Variables:
 mode: rst
 End:

            

Raw data

            {
    "_id": null,
    "home_page": "https://managesieve.readthedocs.io/",
    "name": "managesieve",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/managesieve/",
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "sieve,managesieve,sieveshell,RFC 5804",
    "author": "Hartmut Goebel",
    "author_email": "h.goebel@crazy-compilers.com",
    "download_url": "https://files.pythonhosted.org/packages/b3/85/df58b5722ab006799330bcaa2808fdbd02dc8df6a1cca338d5ce61c20c9d/managesieve-0.8.tar.gz",
    "platform": "POSIX",
    "description": "===============\n`managesieve`\n===============\n\n---------------------------------------------------------------------------------------------------------------------------------------\nRFC-5804 Manage Sieve client library for remotely managing Sieve scripts, including an user application (the interactive 'sieveshell').\n---------------------------------------------------------------------------------------------------------------------------------------\n\n:Author:      Hartmut Goebel <h.goebel@crazy-compilers.com>\n:Version:     0.8\n:Copyright:   2003-2024 by Hartmut Goebel\n:Licence:     Python Software Foundation License and\n              GNU Public Licence v3 (GPLv3)\n:Homepage:    https://managesieve.readthedocs.io/\n:Development: https://gitlab.com/htgoebel/managesieve\n\nSieve scripts allow users to filter incoming email on the mail server.\nThe ManageSieve protocol allows managing Sieve scripts on a remote\nmail server. These servers are commonly sealed so users cannot log\ninto them, yet users must be able to update their scripts on them.\nThis is what for the \"ManageSieve\" protocol is. For more information\nabout the ManageSieve protocol see `RFC 5804\n<http://tools.ietf.org/html/rfc5804>`_.\n\nThis module allows accessing a Sieve-Server for managing Sieve scripts\nthere. It is accompanied by a simple yet functional user application\n'sieveshell'.\n\n\nChanges since 0.7\n~~~~~~~~~~~~~~~~~~~~~\n\n* Now supports Python 3.6 to 3.12.\n\n:managesieve:\n   - Add support for the UNAUTHENTICATE command.\n   - Add a socket timeout parameter.\n   - Add support for IPv6.\n   - Allow disabling certificate verification.\n   - Follow the 'Logging for a Library' guideline.\n   - BREAKING: Rearrange DEBUG logging levels to be more reasonable.\n     See `docs/Logging.rst` for details.\n\n:sieveshell:\n   - Add option '--no-tls-verify'.\n   - Improve error message if TLS certificate verification fails.\n   - Keep line-endings on file IO.\n   - Remove temporary file on successful edit, too.\n   - Fix: Pass to sieve.login() the Authorization ID\n\n:general:\n   - Add support for Python 3.12.\n   - Improve testing, add a tox.ini file and add CI/CD.\n   - Fix SPDX license identifier.\n   - Fix several typos.\n   - Lint all the code.\n   - Remove unused code.\n\n\nRequirements and Installation\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n`managesieve` requires\n\n* `Python`__ 3.6\u20143.12 and\n* `pip`__ for installation.\n\n__ https://www.python.org/download/\n__ https://pypi.org/project/pip\n\n\nNot yet implemented\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n- sieve-names are only quoted dump (put into quotes, but no escapes yet).\n\n\nCopyright and License\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n:Copyright: \u00a9 2003-2024 by Hartmut Goebel <h.goebel@crazy-compilers.com>\n\n:License for `managesieve`:\n   PSF-like License, see enclosed file\n\n:License for 'sieveshell' and test suite: `GPL v3\n   <https://opensource.org/licenses/GPL-3.0>`_\n\n\nCredits\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nBased on Sieve.py from Ulrich Eck <ueck@net-labs.de> which is part of\nof 'ImapClient' (see http://www.zope.org/Members/jack-e/ImapClient), a\nZope product.\n\nSome ideas taken from imaplib written by Piers Lauder\n<piers@cs.su.oz.au> et al.\n\nThanks to Tomas 'Skitta' Lindroos, Lorenzo Boccaccia, Alain Spineux,\ndarkness, Gregory Boyce and Gr\u00e9goire D\u00e9trez for sending patches.\n\n.. Emacs config:\n Local Variables:\n mode: rst\n End:\n",
    "bugtrack_url": null,
    "license": "Python, GPLv3",
    "summary": "RFC-5804 Manage Sieve client library for remotely managing Sieve scripts",
    "version": "0.8",
    "project_urls": {
        "Bug Tracker": "https://gitlab.com/htgoebel/managesieve/issues",
        "Documentation": "https://managesieve.readthedocs.io/",
        "Download": "https://pypi.org/project/managesieve/",
        "Funding": "http://crazy-compilers.com/donate.html",
        "Homepage": "https://managesieve.readthedocs.io/",
        "Source Code": "https://gitlab.com/htgoebel/managesieve/"
    },
    "split_keywords": [
        "sieve",
        "managesieve",
        "sieveshell",
        "rfc 5804"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61ea6527de3af526097ba8d9f3508d737e3a0733598c2c4931337741ff05434e",
                "md5": "b844361a4ae6bd97e697d978005d5168",
                "sha256": "7749d1b8ab741d1d18bc5ecc08b03543de3b6861d4ed48f041c46f1ff5375baf"
            },
            "downloads": -1,
            "filename": "managesieve-0.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b844361a4ae6bd97e697d978005d5168",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 28495,
            "upload_time": "2024-03-18T12:33:47",
            "upload_time_iso_8601": "2024-03-18T12:33:47.393554Z",
            "url": "https://files.pythonhosted.org/packages/61/ea/6527de3af526097ba8d9f3508d737e3a0733598c2c4931337741ff05434e/managesieve-0.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b385df58b5722ab006799330bcaa2808fdbd02dc8df6a1cca338d5ce61c20c9d",
                "md5": "7bbec58e1cb74f564fd2be58d4b3a9b7",
                "sha256": "d8209bea1ebd1f9f184f56f28ff7e4adfcc6b0c51baf4187a492dc329b1213f3"
            },
            "downloads": -1,
            "filename": "managesieve-0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "7bbec58e1cb74f564fd2be58d4b3a9b7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 44089,
            "upload_time": "2024-03-18T12:33:49",
            "upload_time_iso_8601": "2024-03-18T12:33:49.484937Z",
            "url": "https://files.pythonhosted.org/packages/b3/85/df58b5722ab006799330bcaa2808fdbd02dc8df6a1cca338d5ce61c20c9d/managesieve-0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-18 12:33:49",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "htgoebel",
    "gitlab_project": "managesieve",
    "lcname": "managesieve"
}
        
Elapsed time: 0.21454s