Metadata-Version: 1.0
Name: smtpcli
Version: 0.0
Summary: SMTP CLI tool
Home-page: https://github.com/kmn/smtpscli
Author: Shohei Kamon
Author-email: kamonshohei@gmail.com
License:  GNU General Public License version 3
Description: ======================================
        `smtpcli` is SMTP Client tool.
        ======================================
        
        This command line tool for SMTP client.
        
        Requirements
        ------------
        
        * Python 2.7 or later.
        
        
        Setup
        -----
        ::
        
           $ git clone https://github.com/kmn/smtpcli
           $ cd smtp
           $ sudo python setup.py install
        
           
        History
        -------
        
        0.1 (2012-09)
        ~~~~~~~~~~~~~~~~
        * first release
        
        
        Usage
        -----
        
        Setting the configuration file ($HOME/.smtpcli.conf)
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        An alternative method of command options that use the config file.
        Copy examples/.smtpcli.conf.sample to `$HOME/.smtpcli.conf`. `password` key to set password in plain text.
        ::
        
           # 
           [smtpcli]
           smtp-server  = smtp.exmple.org
           port         = 25
           encoding     = ISO-2022-JP
           mailaddress  = user001@exmple.org
           password     = user001pw
        
        Sending mail
        ~~~~~~~~~~~~~~~~~~~~
        ::
        
           $ smtpcli --to user007@example.org  --title "from 001 to 007" \
           --contents-file msg.txt
           true
        
        Contribute
        ----------
        
        Firstly copy pre-commit hook script.
        ::
        
           $ cp -f utils/pre-commit.txt .git/hooks/pre-commit
        
        Next install python2.7 later, and nosetests. Below in Debian GNU/Linux Sid system,
        ::
        
           $ sudo apt-get install python python-nose
        
        Then checkout 'devel' branch for development, commit your changes. Before pull request, execute git rebase.
        
        
        See also
        --------
        
        * `RFC 821  <http://tools.ietf.org/html/rfc821.html>`_
        * `RFC 1896 <http://tools.ietf.org/html/rfc1869.html>`_
        ToDo
        ====
        
        Features
        --------
        
        * Sending  email.
        
        Improvement
        -----------
        
        * Using CC or BCC.
        * Send to multiple destination mailaddress.
        * Add "--no-confirm " option
        * Add siguniture
        * gpg
        
        Known bug
        ---------
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Communications :: Email :: Email Clients (MUA)
Classifier: Topic :: System :: Systems Administration
