diff --git a/development.ini b/development.ini index c0ea66d..cb20cc3 100644 --- a/development.ini +++ b/development.ini @@ -12,6 +12,7 @@ pyramid.debug_notfound = false pyramid.debug_routematch = false pyramid.default_locale_name = en pyramid.includes = + pyramid_mailer.debug pyramid_debugtoolbar sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite @@ -20,6 +21,11 @@ sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite # '127.0.0.1' and '::1'. # debugtoolbar.hosts = 127.0.0.1 ::1 +# email delivery +mail.host = localhost +mail.port = 2525 +mail.default_sender = ordr@example.com + # custom settings auth.secret = 'Change Me 1' diff --git a/setup.py b/setup.py index 12de0dc..b42dfdc 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ requirements = [ 'pyramid_jinja2', 'pyramid_debugtoolbar', 'pyramid_tm', + 'pyramid_mailer', 'SQLAlchemy', 'transaction', 'zope.sqlalchemy',