From 504587ddf79685559107c75721bf45a00bf8210c Mon Sep 17 00:00:00 2001 From: Greg Price Date: Fri, 13 Jun 2008 02:32:32 -0400 Subject: [PATCH] send mail on non-CodeError exceptions svn path=/trunk/packages/sipb-xen-www/; revision=598 --- code/main.py | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/code/main.py b/code/main.py index d05eaca..5874928 100755 --- a/code/main.py +++ b/code/main.py @@ -579,6 +579,10 @@ def unauthFront(_, _2, fields): """Information for unauth'd users.""" return templates.unauth(searchList=[{'simple' : True}]) +def throwError(_, __, ___): + """Throw an error, to test the error-tracing mechanisms.""" + raise RuntimeError("This is a test of the emergency broadcast system.") + mapping = dict(list=listVms, vnc=vnc, command=command, @@ -586,7 +590,8 @@ mapping = dict(list=listVms, info=info, create=create, help=helpHandler, - unauth=unauthFront) + unauth=unauthFront, + errortest=throwError) def printHeaders(headers): """Print a dictionary as HTTP headers.""" @@ -594,6 +599,20 @@ def printHeaders(headers): print '%s: %s' % (key, value) print +def send_error_mail(subject, body): + import subprocess + + to = 'xvm@mit.edu' + mail = """To: %s +From: root@xvm.mit.edu +Subject: %s + +%s +""" % (to, subject, body) + p = subprocess.Popen(['/usr/sbin/sendmail', to], stdin=subprocess.PIPE) + p.stdin.write(mail) + p.stdin.close() + p.wait() def getUser(environ): """Return the current user based on the SSL environment variables""" @@ -668,8 +687,15 @@ class App: return self.start('500 Internal Server Error', [('Content-Type', 'text/plain')]) import traceback - yield '''Uh-oh! We experienced an error.' -Please email xvm-dev@mit.edu with the contents of this page.' + send_error_mail('xvm error: %s' % (err,), + '%s\n' % (traceback.format_exc(),)) + yield '''Uh-oh! We experienced an error. +Sorry about that. We've gotten mail about it. + +Feel free to poke us at xvm@mit.edu if this bug is +consistently biting you and we don't seem to be fixing it. + +In case you're curious, the gory details are here. ---- %s ---- -- 1.7.9.5