Changeset 1103


Ignore:
Timestamp:
Oct 11, 2008, 8:48:11 PM (15 years ago)
Author:
price
Message:

use wildcard for config.web.errormail_exclude

Once prod is really prod and dev is really dev, we'll do this
on dev instead.

Location:
trunk/packages
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/sipb-xen-www/code/main.py

    r1013 r1103  
    654654             errorMessage=str(err), stderr=emsg, traceback=traceback)
    655655    details = templates.error_raw(searchList=[d])
    656     if False: #username not in config.web.errormail_exclude:
     656    exclude = config.web.errormail_exclude
     657    if username not in exclude and '*' not in exclude:
    657658        send_error_mail('xvm error on %s for %s: %s' % (op, username, err),
    658659                        details)
  • trunk/packages/sipb-xen-www/debian/changelog

    r1051 r1103  
     1sipb-xen-www (3.14.4) unstable; urgency=low
     2
     3  * allow '*' wildcard in config.errormail_exclude
     4
     5 -- Greg Price <price@mit.edu>  Sat, 11 Oct 2008 17:32:42 -0700
     6
    17sipb-xen-www (3.14.3) unstable; urgency=low
    28
  • trunk/packages/xvm-prodconfig/debian/changelog

    r1070 r1103  
     1xvm-prodconfig (0.13) unstable; urgency=low
     2
     3  * use wildcard in web.errormail_exclude
     4
     5 -- Greg Price <price@mit.edu>  Sat, 11 Oct 2008 17:34:06 -0700
     6
    17xvm-prodconfig (0.12) unstable; urgency=low
    28
  • trunk/packages/xvm-prodconfig/files/etc/invirt/master.yaml

    r1070 r1103  
    5151 adminacl: system:xvm-root
    5252 errormail_exclude:
     53  - *
    5354  - price
    5455  - ecprice
Note: See TracChangeset for help on using the changeset viewer.