Metadata-Version: 1.1
Name: cs.mailutils
Version: 20150116.2
Summary: functions and classes to work with email
Home-page: https://bitbucket.org/cameron_simpson/css/commits/all
Author: Cameron Simpson
Author-email: cs@zip.com.au
License: UNKNOWN
Description: Functions and classes to work with email.
        =========================================
        
        * Maildir: a much faster subclass of mailbox.Maildir, because you really can trust the output of os.listdir to scan for changes
        
        * Message(msgfile, headersonly=False): factory function to accept a file or filename and return an email.message.Message
        
        * ismaildir(path): test if `path` refers to a Maildir
        
        * ismbox(path): test if `path` refers to an mbox file
        
        * ismhdir(path): test if `path` refers to an MH mail folder
        
        * make_maildir(path): create a new Maildir
        
        * message_addresses(M, header_names): generator that yields (realname, address) pairs from all the named headers
        
        * modify_header(M, hdr, new_value, always=False): modify a Message `M` to change the value of the named header `hdr` to the new value `new_value`
        
        * shortpath(path, environ=None): use cs.lex.shortpath to return a short refernce to a mail folder using $MAILDIR for "+" and $HOME for "~"
        
Keywords: python2,python3
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Intended Audience :: Developers
Requires: cs.fileutils
Requires: cs.logutils
Requires: cs.threads
Requires: cs.seq
Requires: cs.py3
