This commit is contained in:
Nick Hurley 2013-03-05 15:30:00 -08:00
Родитель bc2adac611
Коммит 6f46fe06a4
1 изменённых файлов: 30 добавлений и 0 удалений

30
sremailer.py Normal file
Просмотреть файл

@ -0,0 +1,30 @@
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at http://mozilla.org/MPL/2.0/.
import bottle
import stoneridge
@bottle.post('/email')
def email():
r = bottle.request
to = r.forms.get('to')
subject = r.forms.get('subject')
msg = r.forms.get('message')
stoneridge.sendmail(to, subject, msg)
def daemon():
stoneridge.StreamLogger.bottle_inject()
bottle.run('0.0.0.0', port=2255)
@stoneridge.main
def main():
parser = stoneridge.DaemonArgumentParser()
parser.parse_args()
parser.start_daemon(daemon)