aboutsummaryrefslogtreecommitdiff
path: root/mu4web
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-12-01 14:42:27 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-12-01 14:42:27 +0100
commitf892ccd41a60fbb847e12fad59fca7bd61dfc72e (patch)
treeca7b52700ccd8509478b2e8b488298fc2d597404 /mu4web
parentResolve TODO about source of randomness. (diff)
downloadmu4web-f892ccd41a60fbb847e12fad59fca7bd61dfc72e.tar.gz
mu4web-f892ccd41a60fbb847e12fad59fca7bd61dfc72e.tar.xz
Made mail header set configurable.
Diffstat (limited to 'mu4web')
-rw-r--r--mu4web/main.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/mu4web/main.py b/mu4web/main.py
index ef7624a..f901aec 100644
--- a/mu4web/main.py
+++ b/mu4web/main.py
@@ -181,9 +181,7 @@ def response_for(id: str) -> str:
headers[key.lower()] = value
head = []
- # TODO Make the defalut set of headers configurable
- for h in ['date', 'from', 'to', 'cc', 'bcc', 'subject', 'x-original-to',
- 'in-reply-to', 'message-id']:
+ for h in app.config['MESSAGE_HEADERS']:
if x := headers.get(h.lower()):
head += [('dt', h.title()),
('dd', header_format(h.lower(), x))]
@@ -339,8 +337,15 @@ app = Flask(__name__, instance_relative_config=True)
# Default configuration values
app.config.update(
- DEFAULT_DIRECTION = 'falling',
- DEFAULT_SORT_COLUMN = 'date',
+ DEFAULT_DIRECTION='falling',
+ DEFAULT_SORT_COLUMN='date',
+ MESSAGE_HEADERS=[
+ 'from',
+ 'subject',
+ 'to',
+ 'cc',
+ 'date',
+ ]
)
app.config.from_pyfile('settings.py')