/usr/lib/python2.7/dist-packages/adminaudit/schema.py is in python-django-adminaudit 0.3.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # configglue schema to enable projects using configglue to use adminaudit
# this schema represents all adminaudit available configuration settings
from configglue.schema import (
ListOption,
Schema,
Section,
StringOption,
)
class AdminAuditSchema(Schema):
class adminaudit(Section):
adminaudit_emails_recipients = ListOption(
item=StringOption(),
help='List of email addresss to send reports to.')
adminaudit_summary_subject = StringOption(
default='Admin Audit Summary',
help='Email report subject.')
adminaudit_email_from = StringOption(
help='Email address from which to send reports.')
|