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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
|
==========================
Mailing list configuration
==========================
Mailing lists can be configured via the REST API.
>>> mlist = create_list('ant@example.com')
>>> transaction.commit()
Reading a configuration
=======================
All readable attributes for a list are available on a sub-resource.
>>> dump_json('http://localhost:9001/3.0/lists/ant@example.com/config')
acceptable_aliases: []
admin_immed_notify: True
admin_notify_mchanges: False
administrivia: True
advertised: True
allow_list_posts: True
anonymous_list: False
archive_policy: public
autorespond_owner: none
autorespond_postings: none
autorespond_requests: none
autoresponse_grace_period: 90d
autoresponse_owner_text:
autoresponse_postings_text:
autoresponse_request_text:
bounces_address: ant-bounces@example.com
collapse_alternatives: True
convert_html_to_plaintext: False
created_at: 20...T...
default_member_action: defer
default_nonmember_action: hold
description:
digest_footer_uri:
digest_header_uri:
digest_last_sent_at: None
digest_send_periodic: True
digest_size_threshold: 30.0
digest_volume_frequency: monthly
digests_enabled: True
display_name: Ant
filter_content: False
first_strip_reply_to: False
footer_uri:
fqdn_listname: ant@example.com
goodbye_message_uri:
header_uri:
http_etag: "..."
include_rfc2369_headers: True
info:
join_address: ant-join@example.com
last_post_at: None
leave_address: ant-leave@example.com
list_name: ant
mail_host: example.com
moderator_password: None
next_digest_number: 1
no_reply_address: noreply@example.com
owner_address: ant-owner@example.com
post_id: 1
posting_address: ant@example.com
posting_pipeline: default-posting-pipeline
reply_goes_to_list: no_munging
reply_to_address:
request_address: ant-request@example.com
send_welcome_message: True
subject_prefix: [Ant]
subscription_policy: confirm
volume: 1
welcome_message_uri:
Changing the full configuration
===============================
Not all of the readable attributes can be set through the web interface. The
ones that can, can either be set via ``PUT`` or ``PATCH``. ``PUT`` changes
all the writable attributes in one request.
When using ``PUT``, all writable attributes must be included.
>>> dump_json('http://localhost:9001/3.0/lists/'
... 'ant@example.com/config',
... dict(
... acceptable_aliases=['one@example.com', 'two@example.com'],
... admin_immed_notify=False,
... admin_notify_mchanges=True,
... administrivia=False,
... advertised=False,
... anonymous_list=True,
... archive_policy='never',
... autorespond_owner='respond_and_discard',
... autorespond_postings='respond_and_continue',
... autorespond_requests='respond_and_discard',
... autoresponse_grace_period='45d',
... autoresponse_owner_text='the owner',
... autoresponse_postings_text='the mailing list',
... autoresponse_request_text='the robot',
... display_name='Fnords',
... description='This is my mailing list',
... include_rfc2369_headers=False,
... info='This is the mailing list information',
... allow_list_posts=False,
... digest_send_periodic=False,
... digest_size_threshold=10.5,
... digest_volume_frequency='yearly',
... digests_enabled=False,
... posting_pipeline='virgin',
... filter_content=True,
... first_strip_reply_to=True,
... convert_html_to_plaintext=True,
... collapse_alternatives=False,
... reply_goes_to_list='point_to_list',
... reply_to_address='bee@example.com',
... send_welcome_message=False,
... subject_prefix='[ant]',
... subscription_policy='moderate',
... default_member_action='hold',
... default_nonmember_action='discard',
... moderator_password='password',
... ),
... 'PUT')
content-length: 0
date: ...
server: WSGIServer/...
status: 204
These values are changed permanently.
>>> dump_json('http://localhost:9001/3.0/lists/'
... 'ant@example.com/config')
acceptable_aliases: ['one@example.com', 'two@example.com']
admin_immed_notify: False
admin_notify_mchanges: True
administrivia: False
advertised: False
allow_list_posts: False
anonymous_list: True
archive_policy: never
autorespond_owner: respond_and_discard
autorespond_postings: respond_and_continue
autorespond_requests: respond_and_discard
autoresponse_grace_period: 45d
autoresponse_owner_text: the owner
autoresponse_postings_text: the mailing list
autoresponse_request_text: the robot
...
collapse_alternatives: False
convert_html_to_plaintext: True
...
default_member_action: hold
default_nonmember_action: discard
description: This is my mailing list
...
digest_send_periodic: False
digest_size_threshold: 10.5
digest_volume_frequency: yearly
digests_enabled: False
display_name: Fnords
filter_content: True
first_strip_reply_to: True
footer_uri:
fqdn_listname: ant@example.com
...
include_rfc2369_headers: False
...
moderator_password: {plaintext}password
...
posting_pipeline: virgin
reply_goes_to_list: point_to_list
reply_to_address: bee@example.com
...
send_welcome_message: False
subject_prefix: [ant]
subscription_policy: moderate
...
Changing a partial configuration
================================
Using ``PATCH``, you can change just one attribute.
>>> dump_json('http://localhost:9001/3.0/lists/'
... 'ant@example.com/config',
... dict(display_name='My List'),
... 'PATCH')
content-length: 0
date: ...
server: ...
status: 204
These values are changed permanently.
>>> print(mlist.display_name)
My List
Sub-resources
=============
Mailing list configuration variables are actually available as sub-resources
on the mailing list. Their values can be retrieved and set through the
sub-resource.
Simple resources
----------------
You can view the current value of the sub-resource.
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/config/display_name')
display_name: My List
http_etag: ...
The resource can be changed by PUTting to it. Note that the value still
requires a dictionary, and that dictionary must have a single key matching the
name of the resource.
::
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/config/display_name',
... dict(display_name='Your List'),
... 'PUT')
content-length: 0
date: ...
server: ...
status: 204
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/config/display_name')
display_name: Your List
http_etag: ...
PATCH works the same way, with the same effect, so you can choose to use
either method.
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/config/display_name',
... dict(display_name='Their List'),
... 'PATCH')
content-length: 0
date: ...
server: ...
status: 204
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/config/display_name')
display_name: Their List
http_etag: ...
Acceptable aliases
------------------
These are recipient aliases that can be used in the ``To:`` and ``CC:``
headers instead of the posting address. They are often used in forwarded
emails. By default, a mailing list has no acceptable aliases.
>>> from mailman.interfaces.mailinglist import IAcceptableAliasSet
>>> IAcceptableAliasSet(mlist).clear()
>>> transaction.commit()
>>> dump_json('http://localhost:9001/3.0/lists/'
... 'ant@example.com/config/acceptable_aliases')
acceptable_aliases: []
http_etag: "..."
We can add a few by ``PUT``-ing them on the sub-resource. The keys in the
dictionary are ignored.
>>> dump_json('http://localhost:9001/3.0/lists/'
... 'ant@example.com/config/acceptable_aliases',
... dict(acceptable_aliases=['foo@example.com',
... 'bar@example.net']),
... 'PUT')
content-length: 0
date: ...
server: WSGIServer/...
status: 204
Aliases are returned as a list on the ``aliases`` key.
>>> response = call_http(
... 'http://localhost:9001/3.0/lists/'
... 'ant@example.com/config/acceptable_aliases')
>>> for alias in response['acceptable_aliases']:
... print(alias)
bar@example.net
foo@example.com
The mailing list has its aliases set.
>>> from mailman.interfaces.mailinglist import IAcceptableAliasSet
>>> aliases = IAcceptableAliasSet(mlist)
>>> for alias in sorted(aliases.aliases):
... print(alias)
bar@example.net
foo@example.com
Header matches
--------------
Mailman can do pattern based header matching during its normal rule
processing. Each mailing list can also be configured with a set of header
matching regular expression rules. These can be used to impose list-specific
header filtering with the same semantics as the global ``[antispam]`` section,
or to have a different action.
The list of header matches for a mailing list are returned on the
``header-matches`` child of this list.
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches')
http_etag: "..."
start: 0
total_size: 0
New header matches can be created by POSTing to the resource.
::
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches', {
... 'header': 'X-Spam-Flag',
... 'pattern': '^Yes',
... })
content-length: 0
...
location: .../3.0/lists/ant.example.com/header-matches/0
...
status: 201
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/0')
header: x-spam-flag
http_etag: "..."
pattern: ^Yes
position: 0
self_link: http://localhost:9001/3.0/lists/ant.example.com/header-matches/0
To follow the global antispam action, the header match rule must not specify
an ``action`` key, which names the chain to jump to if the rule matches. If
the default antispam action is changed in the configuration file and Mailman
is restarted, those rules will get the new jump action. If a specific action
is desired, the ``action`` key must name a valid chain to jump to.
::
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches', {
... 'header': 'X-Spam-Status',
... 'pattern': '^Yes',
... 'action': 'discard',
... })
content-length: 0
...
location: .../3.0/lists/ant.example.com/header-matches/1
...
status: 201
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/1')
action: discard
header: x-spam-status
http_etag: "..."
pattern: ^Yes
position: 1
self_link: http://localhost:9001/3.0/lists/ant.example.com/header-matches/1
The resource can be changed by PATCHing it. The ``position`` key can be used
to change the priority of the header match in the list. If it is not supplied,
the priority is not changed.
::
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/1',
... dict(pattern='^No', action='accept'),
... 'PATCH')
content-length: 0
date: ...
server: ...
status: 204
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/1')
action: accept
header: x-spam-status
http_etag: "..."
pattern: ^No
position: 1
self_link: http://localhost:9001/3.0/lists/ant.example.com/header-matches/1
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/1',
... dict(position=0),
... 'PATCH')
content-length: 0
date: ...
server: ...
status: 204
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches')
entry 0:
action: accept
header: x-spam-status
http_etag: "..."
pattern: ^No
position: 0
self_link: .../lists/ant.example.com/header-matches/0
entry 1:
header: x-spam-flag
http_etag: "..."
pattern: ^Yes
position: 1
self_link: .../lists/ant.example.com/header-matches/1
http_etag: "..."
start: 0
total_size: 2
The PUT method can replace an entire header match. The ``position`` key is
optional; if it is omitted, the order will not be changed.
::
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/1',
... dict(header='X-Spam-Status',
... pattern='^Yes',
... action='hold',
... ), 'PUT')
content-length: 0
date: ...
server: ...
status: 204
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/1')
action: hold
header: x-spam-status
http_etag: "..."
pattern: ^Yes
position: 1
self_link: http://localhost:9001/3.0/lists/ant.example.com/header-matches/1
A header match can be removed using the DELETE method.
::
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches/1',
... method='DELETE')
content-length: 0
...
status: 204
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches')
entry 0:
action: accept
header: x-spam-status
http_etag: "..."
pattern: ^No
position: 0
self_link: .../lists/ant.example.com/header-matches/0
http_etag: "..."
start: 0
total_size: 1
The mailing list's header matches can be cleared by issuing a DELETE request on
the top resource.
::
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches',
... method='DELETE')
content-length: 0
...
status: 204
>>> dump_json('http://localhost:9001/3.0/lists/ant.example.com'
... '/header-matches')
http_etag: "..."
start: 0
total_size: 0
|