Metadata-Version: 1.1
Name: offlinemsmtp
Version: 0.2.3
Summary: msmtp wrapper allowing for offline use
Home-page: https://gitlab.com/sumner/offlinemsmtp
Author: Sumner Evans
Author-email: sumner.evans98@gmail.com
License: GPL3
Description: offlinemsmtp
        ============
        
        Allows you to use ``msmtp`` offline.
        
        Installation
        ------------
        
        Using PyPi::
        
            pip install --user offlinemsmtp
        
        Run the daemon using systemd
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        Create a file called ``~/.config/systemd/user/offlinemsmtp.service`` with the
        following content::
        
            [Unit]
            Description=Offline msmtp
        
            [Service]
            ExecStart=/home/sumner/.local/bin/offlinemsmtp --daemon
        
            [Install]
            WantedBy=default.target
        
        Then, enable and start ``offlinemsmtp`` using systemd::
        
            systemctl --user daemon-reload
            systemctl --user enable --now offlinemsmtp
        
        Other projects
        --------------
        
        - https://github.com/dcbaker/py-mailqueued - looks cool, I didn't see it when I
          was researching, but it's probably better than my implementation, even thought
          I had a lot of fun doing mine
        - https://github.com/venkytv/msmtp-offline - it's written in Ruby
        
Keywords: email msmtp offline
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: POSIX
Classifier: Topic :: Communications :: Email :: Mail Transport Agents
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
