Metadata-Version: 2.1
Name: pymap-admin
Version: 0.1.2
Summary: Admin tool for running pymap instances.
Home-page: https://github.com/icgood/pymap-admin/
Author: Ian Good
Author-email: icgood@gmail.com
License: MIT
Description: pymap-admin
        ===========
        
        The `pymap-admin` tool can be used to perform various admin functions against a
        running pymap server. This is a separate [grpc][2] service using [grpclib][3]
        listening on a port, typically 9090.
        
        ### `ping` Command
        
        Pings the running server and reports its version string.
        
        ```
        $ pymap-admin ping
        server_version: "0.14.1"
        ```
        
        ### `append` Command
        
        To append a message directly to a mailbox, without using IMAP, use the
        `append` admin command. First, check out the help:
        
        ```
        $ pymap-admin append --help
        ```
        
        As a basic example, you can append a message to a like this:
        
        ```
        $ cat <<EOF | pymap-admin append demouser
        > From: user@example.com
        >
        > test message!
        > EOF
        mailbox: "INBOX"
        validity: 1784302999
        uid: 101
        
        2.0.0 Message delivered
        ```
        
        [1]: https://github.com/icgood/pymap
        [2]: https://grpc.io/
        [3]: https://github.com/vmagamedov/grpclib
        ## The MIT License (MIT)
        
        Copyright (c) 2019 Ian Good
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Communications :: Email :: Post-Office
Classifier: Topic :: Communications :: Email :: Post-Office :: IMAP
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Requires-Python: ~=3.8
Description-Content-Type: text/markdown
Provides-Extra: build
