Metadata-Version: 1.1
Name: email2slack
Version: 1.0.0a3
Summary: MIME E-mail forwarding script for Slack written in Python
Home-page: https://github.com/mikoim/email2slack
Author: Eshin Kunishima
Author-email: ek@esh.ink
License: MIT
Description: email2slack
        ===========
        
        MIME E-mail forwarding script for Slack written in Python.
        
        I tested on Python 3.x and Postfix only. Please report test result and
        sample configuration on other MTAs.
        
        Demo
        ----
        
        .. figure:: slack-demo.png
           :alt: Slack
        
           Slack
        
        Requirements
        ------------
        
        -  Python 3.x (Not tested on Python 2.x)
        -  chardet : https://github.com/chardet/chardet
        -  requests : https://github.com/kennethreitz/requests
        
        Getting Started
        ---------------
        
        Install from PyPI
        ~~~~~~~~~~~~~~~~~
        
        .. code:: bash
        
            # Install email2slack
            pip3 install email2slack
        
            # Fetch configuration file from GitHub
            cd /usr/local/etc/
            curl -O https://raw.githubusercontent.com/mikoim/email2slack/master/email2slack
        
            # Before using, You must edit config file
            vim /usr/local/etc/email2slack
        
        In this case, setuptools create script to call email2slack and place it
        in ``bin`` directory automatically. So you should use the script in
        Setup MTA section.
        
        Install from GitHub repository
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: bash
        
            git clone https://github.com/mikoim/email2slack.git
            cd email2slack
        
            # Install dependencies
            pip3 install -r requirements.txt
        
            # Install email2slack
            cp email2slack.py /usr/local/bin/email2slack.py && chmod +x /usr/local/bin/email2slack.py
            cp email2slack /usr/local/etc/
        
            # Before using, You must edit config file
            vim /usr/local/etc/email2slack
        
        Setup MTA
        ~~~~~~~~~
        
        Postfix
        ^^^^^^^
        
        .. code:: bash
        
            vim /etc/postfix/aliases
        
            ...
        
            # notice only, not forward
            user: |/usr/local/bin/email2slack.py
        
            # notice and forward e-mail to another user
            user: anotheruser, |/usr/local/bin/email2slack.py
        
            # notice and leave e-mail on same user
            user: \user, |/usr/local/bin/email2slack.py
        
            ...
        
            newaliases
        
Keywords: email slack forwarding
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Communications
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Communications :: Email :: Mail Transport Agents
Classifier: Topic :: Communications :: Chat
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
