aboutsummaryrefslogtreecommitdiff
path: root/instance/settings.py
blob: 654e35144accd5c94f135cac57fa144f4405358f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

# ['from', 'to', 'subject', 'date']
DEFAULT_SORT_COLUMN = 'date'

# 'rising' or 'falling'
DEFAULT_DIRECTION = 'falling'

# Change this to something random, e.g. the output of
# >>> os.urandom(24)
SECRET_KEY = b"\x13\xbd\xaa'\x9d\xe9P\x83\xf1h\xd0\xc7\x893@\x80\xd3fP\x83\x8bMt\x8d"

# Headers to show on the single message view.
# Only includes those of these that exists
# This also controls the order they appear
MESSAGE_HEADERS = [
    'from',
    'subject',
    'to',
    'cc',
    'date',
    'x-url',
    'user-agent',
    'x-spam-score',
    'x-original-to',
    'in-reply-to',
    'delivered-to',
    'message-id',
]