Created
April 19, 2011 13:54
-
-
Save tomwardill/927873 to your computer and use it in GitHub Desktop.
FakeEmail buildout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [buildout] | |
| develop = src/ | |
| parts = | |
| fakeemail-eggs | |
| python | |
| fakeemail | |
| versions = versions | |
| smtp-port = 2025 | |
| web-port = 8000 | |
| [fakeemail-eggs] | |
| recipe = zc.recipe.egg:scripts | |
| eggs = | |
| Twisted | |
| zope.interface | |
| fakeemail | |
| #scripts = start=start | |
| entry-points = twistd=twisted.scripts.twistd:run | |
| [python] | |
| recipe = zc.recipe.egg | |
| interpreter = python | |
| eggs = ${fakeemail-eggs:eggs} | |
| [fakeemail] | |
| recipe = isotoma.recipe.gocaptain | |
| daemon = ${buildout:executable} | |
| name = FakeEmail | |
| description = FakeEmail SMTP Service | |
| pidfile = ${buildout:directory}/fakeemail.pid | |
| args = | |
| ${buildout:bin-directory}/twistd | |
| --pidfile ${fakeemail:pidfile} | |
| --logfile ${buildout:directory}/fakeemail.log | |
| fakeemail | |
| -s ${buildout:smtp-port} | |
| -w ${buildout:web-port} | |
| [versions] | |
| zc.recipe.egg = 1.2.3b2 | |
| zc.buildout = 1.4.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment