Skip to content

Instantly share code, notes, and snippets.

@tomwardill
Created April 19, 2011 13:54
Show Gist options
  • Select an option

  • Save tomwardill/927873 to your computer and use it in GitHub Desktop.

Select an option

Save tomwardill/927873 to your computer and use it in GitHub Desktop.
FakeEmail buildout
[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