Metadata-Version: 2.0
Name: collective.recipe.maildump
Version: 0.2.1
Summary: Buildout recipe to install maildump
Home-page: https://github.com/collective/collective.recipe.maildump
Author: Noe Nieto
Author-email: nnieto@noenieto.com
License: BSD
Keywords: buildout recipe maildump
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Requires-Dist: setuptools
Requires-Dist: zc.buildout
Requires-Dist: zc.recipe.egg

collective.recipe.maildump
==========================

.. contents::

Introduction
------------

This recipe installs `maildump <https://github.com/ThiefMaster/maildump>`_  a
python-based clone of the awesome `MailCatcher <https://github.com/sj26/mailcatcher>`_
tool.

Installation
------------

Look at this example::

    [buildout]
    parts = maildump

    [maildump]
    recipe = collective.recipe.maildump

That's all.

How to use it
-------------

Just run ``bin/maildumpctl``. By default it will start the web server on port
``1080`` and the smtp server on port ``1025``.

Configure your application to use the SMTP server on localhost, port 25, no
user, and no password.

For example, on django add the following to you ``settings.py`` file::

    EMAIL_HOST = "localhost"
    EMAIL_HOST_USER = ""
    EMAIL_HOST_PASSWORD = ""
    EMAIL_PORT = 1025
    EMAIL_USE_TLS = False
    DEFAULT_FROM_EMAIL='contacto@holokinesislibros.com'
    SERVER_EMAIL = 'contacto@holokinesislibros.com'
=======
CHANGES
=======

0.2.1 (2016-01-09)
----------------

* Including missing files in release

0.2 (2015-07-12)
----------------

* Initial release to PyPI.


