Mercurial > hg > ltpdarepo
view buildout.cfg @ 259:d8b0a06cb763
Implement SMTPS mail delivery.
For clarity the confibguration parameter MAIL_SMTP_USETLS has been
renamed to MAIL_SMTP_STARTTLS and a new parameter MAIL_SMTP_SSL has
been added to enable SMTPS.
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Mon, 29 Sep 2014 15:08:23 +0200 |
parents | 773d9567dcb2 |
children |
line wrap: on
line source
[buildout] include-site-packages = false parts = install instance wsgi develop = . # install software [install] recipe = zc.recipe.egg eggs = ltpdarepo scripts = # generate scripts pointing to the right configuration file [instance] recipe = zc.recipe.egg:script eggs = ${install:eggs} scripts = run admin sql2dot arguments = '${buildout:directory}/etc/ltpdarepo' # generate wsgi application [wsgi] recipe = zc.recipe.egg:script eggs = ${install:eggs} scripts = wsgi entry-points = wsgi=ltpdarepo:main initialization = from ltpdarepo import Application application = Application('${buildout:directory}/etc/ltpdarepo')