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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
|
# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"""Process and produce the list-administration options forms.
"""
import sys
import os
import cgi
import string
import types
from Mailman import Utils
from Mailman import MailList
from Mailman import Errors
from Mailman import MailCommandHandler
from Mailman.htmlformat import *
from Mailman.Crypt import crypt
from Mailman import mm_cfg
CATEGORIES = [('general', "General Options"),
('members', "Membership Management"),
('privacy', "Privacy Options"),
('nondigest', "Regular-member (non-digest) Options"),
('digest', "Digest-member Options"),
('bounce', "Bounce Options"),
('archive', "Archival Options"),
('gateway', "Mail-News and News-Mail gateways"),
('autoreply', 'Auto-responder'),
]
def main():
"""Process and produce list options form.
CGI input indicates that we're returning from submission of some new
settings, which is processed before producing the new version.
"""
doc = Document()
try:
path = os.environ['PATH_INFO']
except KeyError:
path = ''
parts = Utils.GetPathPieces(path)
# How many ../'s we need to get back to http://host/mailman
if len(parts) == 0:
FormatAdminOverview()
return
# get the list object
listname = string.lower(parts[0])
try:
mlist = MailList.MailList(listname)
except Errors.MMListError, e:
FormatAdminOverview('No such list <em>%s</em>' % listname)
sys.stderr.write(
'Someone tried to access the admin interface for a '
'non-existent list: %s\n' % listname)
return
try:
if len(parts) == 1:
category = 'general'
category_suffix = ''
else:
category = parts[1]
category_suffix = category
if category not in map(lambda x: x[0], CATEGORIES):
category = 'general'
cgi_data = cgi.FieldStorage()
# Authenticate.
is_auth = 0
adminpw = None
message = ""
# If we get a password change request, we first authenticate
# by cookie here, and issue a new cookie later on iff the
# password change worked out.
#
# The idea is to set only _one_ cookie when the admin password
# changes. The new cookie is needed, because the checksum part
# of the cookie is based on (among other things) the list's
# admin password.
if cgi_data.has_key('adminpw') and not cgi_data.has_key('newpw'):
adminpw = cgi_data['adminpw'].value
try:
# admin uses cookies with -admin name suffix
is_auth = mlist.WebAuthenticate(password=adminpw, cookie='admin')
except Errors.MMBadPasswordError:
message = 'Sorry, wrong password. Try again.'
except Errors.MMExpiredCookieError:
message = 'Your cookie has gone stale, ' \
'enter password to get a new one.',
except Errors.MMInvalidCookieError:
message = 'Error decoding authorization cookie.'
except Errors.MMAuthenticationError:
message = 'Authentication error.'
if not is_auth:
defaulturi = '/mailman/admin%s/%s' % (mm_cfg.CGIEXT, listname)
if message:
message = FontAttr(
message, color='FF5060', size='+1').Format()
print 'Content-type: text/html\n\n'
text = Utils.maketext(
'admlogin.txt',
{'listname': listname,
'path' : Utils.GetRequestURI(defaulturi),
'message' : message,
})
print text
return
# is the request for variable details?
varhelp = None
if cgi_data.has_key('VARHELP'):
varhelp = cgi_data['VARHELP'].value
elif cgi_data.has_key('request_login') and \
os.environ.get('QUERY_STRING'):
# POST methods, even if their actions have a query string, don't
# get put into FieldStorage's keys :-(
qs = cgi.parse_qs(os.environ['QUERY_STRING']).get('VARHELP')
if qs and type(qs) == types.ListType:
varhelp = qs[0]
if varhelp:
FormatOptionHelp(doc, varhelp, mlist)
print doc.Format(bgcolor="#ffffff")
return
if cgi_data.has_key('bounce_matching_headers'):
pairs = mlist.parse_matching_header_opt()
if not mlist.digestable and len(mlist.GetDigestMembers()):
AddErrorMessage(doc,
'Warning: you have digest members,'
' but digests are turned off.'
' Those people will not receive mail.')
if not mlist.nondigestable and len(mlist.GetMembers()):
AddErrorMessage(doc,
'Warning: you have list members,'
' but non-digestified mail is turned'
' off. They will receive mail until'
' you fix this problem.')
if len(cgi_data.keys()):
ChangeOptions(mlist, category, cgi_data, doc)
FormatConfiguration(doc, mlist, category, category_suffix, cgi_data)
print doc.Format(bgcolor="#ffffff")
finally:
mlist.Save()
mlist.Unlock()
# Form Production:
def FormatAdminOverview(error=None):
"Present a general welcome and itemize the (public) lists."
doc = Document()
legend = "%s mailing lists - Admin Links" % mm_cfg.DEFAULT_HOST_NAME
doc.SetTitle(legend)
table = Table(border=0, width="100%")
table.AddRow([Center(Header(2, legend))])
table.AddCellInfo(max(table.GetCurrentRowIndex(), 0), 0,
colspan=2, bgcolor="#99ccff")
advertised = []
names = Utils.list_names()
names.sort()
for n in names:
l = MailList.MailList(n, lock=0)
if l.advertised:
advertised.append(l)
if error:
greeting = FontAttr(error, color="ff5060", size="+1")
else:
greeting = "Welcome!"
if not advertised:
welcome_items = (greeting,
"<p>"
" There currently are no publicly-advertised ",
Link(mm_cfg.MAILMAN_URL, "mailman"),
" mailing lists on %s." % mm_cfg.DEFAULT_HOST_NAME,
)
else:
welcome_items = (
greeting,
"<p>"
" Below is the collection of publicly-advertised ",
Link(mm_cfg.MAILMAN_URL, "mailman"),
" mailing lists on %s." % mm_cfg.DEFAULT_HOST_NAME,
(' Click on a list name to visit the configuration pages'
' for that list.'
)
)
welcome_items = (welcome_items +
(" To visit the administrators configuration page for"
" an unadvertised list, open a URL similar to this"
+
(" one, but with a '/' and the %slist name appended.<p>"
% ((error and "right ") or ""))
+
" General list information can be found at ",
Link("%slistinfo%s" % ('../' * Utils.GetNestingLevel(),
mm_cfg.CGIEXT),
"the mailing list overview page"),
"."
"<p>(Send questions and comments to ",
Link("mailto:%s" % mm_cfg.MAILMAN_OWNER,
mm_cfg.MAILMAN_OWNER),
".)<p>"
)
)
table.AddRow([apply(Container, welcome_items)])
table.AddCellInfo(max(table.GetCurrentRowIndex(), 0), 0, colspan=2)
if advertised:
table.AddRow([' ', ' '])
table.AddRow([Bold("List"), Bold("Description")])
for l in advertised:
table.AddRow(
[Link(l.GetRelativeScriptURL('admin'),
Bold(l.real_name)),
l.description or Italic('[no description available]')])
doc.AddItem(table)
doc.AddItem('<hr>')
doc.AddItem(MailmanLogo())
print doc.Format(bgcolor="#ffffff")
def FormatConfiguration(doc, mlist, category, category_suffix, cgi_data):
"""Produce the overall doc, *except* any processing error messages."""
for k, v in CATEGORIES:
if k == category:
label = v
doc.SetTitle('%s Administration (%s)' % (mlist.real_name, label))
doc.AddItem(Center(Header(2, '%s mailing list administration<br>%s'
% (mlist.real_name, label + ' Section'))))
doc.AddItem('<hr>')
links_table = Table(valign="top")
links_table.AddRow([Center(Bold("Configuration Categories")),
Center(Bold("Other Administrative Activities"))])
other_links = UnorderedList()
link = Link(mlist.GetRelativeScriptURL('admindb'),
'Tend to pending administrative requests.')
other_links.AddItem(link)
link = Link(mlist.GetRelativeScriptURL('listinfo'),
'Go to the general list information page.')
other_links.AddItem(link)
link = Link(mlist.GetRelativeScriptURL('edithtml'),
'Edit the HTML for the public list pages.')
other_links.AddItem(link)
these_links = UnorderedList()
for k, v in CATEGORIES:
if k == category:
these_links.AddItem("<em>" + v + "</em>")
else:
these_links.AddItem(Link("%s/%s" %
(mlist.GetRelativeScriptURL('admin'),k),v))
links_table.AddRow([these_links, other_links])
links_table.AddRowInfo(max(links_table.GetCurrentRowIndex(), 0),
valign="top")
doc.AddItem(links_table)
doc.AddItem('<hr>')
if category_suffix:
encoding = None
if category_suffix == 'autoreply':
# these have file uploads
encoding = 'multipart/form-data'
form = Form('%s/%s' % (mlist.GetRelativeScriptURL('admin'),
category_suffix), encoding=encoding)
else:
form = Form(mlist.GetRelativeScriptURL('admin'))
doc.AddItem(form)
if category == 'general':
andpassmsg = " (You can change your password there, too.)"
else:
andpassmsg = ""
form.AddItem("Make your changes below, and then submit them"
" using the button at the bottom.%s<p>"
% andpassmsg)
form.AddItem(FormatOptionsSection(category, mlist, cgi_data))
if category == 'general':
form.AddItem(Center(FormatPasswordStuff()))
form.AddItem("<p>")
form.AddItem(Center(FormatSubmit()))
form.AddItem(mlist.GetMailmanFooter())
def FormatOptionsSection(category, mlist, cgi_data):
"""Produce the category-specific options table."""
if category == 'members':
# Special case for members section.
return FormatMembershipOptions(mlist, cgi_data)
options = GetConfigOptions(mlist, category)
big_table = Table(cellspacing=3, cellpadding=4)
# Get and portray the text label for the category.
for k, v in CATEGORIES:
if k == category:
label = v
big_table.AddRow([Center(Header(2, label))])
big_table.AddCellInfo(max(big_table.GetCurrentRowIndex(), 0), 0,
colspan=2, bgcolor="#99ccff")
def ColHeader(big_table = big_table):
big_table.AddRow([Center(Bold('Description')), Center(Bold('Value'))])
big_table.AddCellInfo(max(big_table.GetCurrentRowIndex(), 0), 0,
width="15%")
big_table.AddCellInfo(max(big_table.GetCurrentRowIndex(), 0), 1,
width="85%")
did_col_header = 0
for item in options:
if type(item) == types.StringType:
# The very first banner option (string in an options list) is
# treated as a general description, while any others are
# treated as section headers - centered and italicized...
if did_col_header:
item = "<center><i>" + item + "</i></center>"
big_table.AddRow([item])
big_table.AddCellInfo(max(big_table.GetCurrentRowIndex(), 0),
0, colspan=2)
if not did_col_header:
# Do col header after very first string descr, if any...
ColHeader()
did_col_header = 1
else:
if not did_col_header:
# ... but do col header before anything else.
ColHeader()
did_col_header = 1
AddOptionsTableItem(big_table, item, category, mlist)
big_table.AddRow(['<br>'])
big_table.AddCellInfo(big_table.GetCurrentRowIndex(), 0, colspan=2)
return big_table
def AddOptionsTableItem(table, item, category, mlist, detailsp=1):
"""Add a row to an options table with the item description and value."""
try:
got = GetItemCharacteristics(item)
varname, kind, params, dependancies, descr, elaboration = got
except ValueError, msg:
mlist.LogMsg("error", "admin: %s", msg)
return Italic("<malformed option>")
descr = GetItemGuiDescr(mlist, category, varname, descr, detailsp)
val = GetItemGuiValue(mlist, kind, varname, params)
table.AddRow([descr, val])
table.AddCellInfo(max(table.GetCurrentRowIndex(), 0), 1,
bgcolor="#cccccc")
table.AddCellInfo(max(table.GetCurrentRowIndex(), 0), 0,
bgcolor="#cccccc")
def FormatOptionHelp(doc, varref, mlist):
item = None
reflist = string.split(varref, '/')
if len(reflist) == 2:
category, varname = reflist
options = GetConfigOptions(mlist, category)
for i in options:
if i and i[0] == varname:
item = i
break
if not item:
bad = ("Option %s/%s not found. %s"
% (category, varname, os.environ['PATH_INFO']))
AddErrorMessage(doc, bad)
return
got = GetItemCharacteristics(item)
try:
varname, kind, params, dependancies, descr, elaboration = got
if elaboration is None:
elaboration = ''
except ValueError, msg:
varname, kind, params, dependancies, descr = got
elaboration = descr
header = Table(width="100%")
legend = ('%s Mailing list Configuration Help<br><em>%s</em> Option'
% (mlist.real_name, varname))
header.AddRow([Center(Header(3, legend))])
header.AddCellInfo(max(header.GetCurrentRowIndex(), 0), 0,
colspan=2, bgcolor="#99ccff")
doc.SetTitle("Mailman %s List Option Help" % varname)
doc.AddItem(header)
doc.AddItem("<b>%s</b> (%s): %s<p>" % (varname, category, descr))
doc.AddItem("%s<p>" % elaboration)
form = Form("%s/%s" % (mlist.GetRelativeScriptURL('admin'), category))
valtab = Table(cellspacing=3, cellpadding=4)
AddOptionsTableItem(valtab, item, category, mlist, detailsp=0)
form.AddItem(valtab)
# XXX I don't think we want to be able to set options from two places,
# since they'll go out of sync.
#form.AddItem(Center(FormatPasswordStuff()))
doc.AddItem(Center(form))
doc.AddItem("(<em><strong>Don't change the option here.</strong> "
'Use the ')
doc.AddItem(Link('%s/%s' % (mlist.GetRelativeScriptURL('admin'),
category),
category + ' options page'))
doc.AddItem(' instead.</em>)')
def GetItemCharacteristics(table_entry):
"""Break out the components of an item description from its table entry:
0 option-var name
1 type
2 entry size
3 ?dependancies?
4 Brief description
5 Optional description elaboration"""
if len(table_entry) == 5:
elaboration = None
varname, kind, params, dependancies, descr = table_entry
elif len(table_entry) == 6:
varname, kind, params, dependancies, descr, elaboration = table_entry
else:
raise ValueError, ("Badly formed options entry:\n %s"
% table_entry)
return (varname, kind, params, dependancies, descr, elaboration)
def GetItemGuiValue(mlist, kind, varname, params):
"""Return a representation of an item's settings."""
if kind == mm_cfg.Radio or kind == mm_cfg.Toggle:
#
# if we are sending returning the option for subscribe
# policy and this site doesn't allow open subscribes,
# then we have to alter the value of mlist.subscribe_policy
# as passed to RadioButtonArray in order to compensate
# for the fact that there is one fewer option. correspondingly,
# we alter the value back in the change options function -scott
#
checked = getattr(mlist, varname)
if varname == 'subscribe_policy' and not mm_cfg.ALLOW_OPEN_SUBSCRIBE:
checked = checked - 1
return RadioButtonArray(varname, params, checked)
elif (kind == mm_cfg.String or kind == mm_cfg.Email or
kind == mm_cfg.Host or kind == mm_cfg.Number):
return TextBox(varname, getattr(mlist, varname), params)
elif kind == mm_cfg.Text:
if params:
r, c = params
else:
r, c = None, None
val = getattr(mlist, varname)
if not val:
val = ''
return TextArea(varname, val, r, c)
elif kind == mm_cfg.EmailList:
if params:
r, c = params
else:
r, c = None, None
res = string.join(getattr(mlist, varname), '\n')
return TextArea(varname, res, r, c, wrap='off')
elif kind == mm_cfg.FileUpload:
# like a text area, but also with uploading
if params:
r, c = params
else:
r, c = None, None
val = getattr(mlist, varname)
if not val:
val = ''
container = Container()
container.AddItem('<em>Enter the text below, or...</em><br>')
container.AddItem(TextArea(varname, val, r, c))
container.AddItem('<br><em>...specify a file to upload</em><br>')
container.AddItem(FileUpload(varname+'_upload', r, c))
return container
def GetItemGuiDescr(mlist, category, varname, descr, detailsp):
"""Return the item's description, with link to details.
Details are not included if this is a VARHELP page, because that /is/ the
details page!
"""
if not detailsp:
return '<div ALIGN="right">' + descr + '</div>'
return Container('<div ALIGN="right">' + descr + ' ',
Link(('../' * (Utils.GetNestingLevel()-1) +
mlist.internal_name() +
'/?VARHELP=' + category + '/' + varname),
'(Details)'),
'</div>')
def FormatMembershipOptions(mlist, cgi_data):
container = Container()
header = Table(width="100%")
header.AddRow([Center(Header(2, "Membership Management"))])
header.AddCellInfo(max(header.GetCurrentRowIndex(), 0), 0,
colspan=2, bgcolor="#99ccff")
container.AddItem(header)
user_table = Table(width="90%", border='2')
user_table.AddRow([Center(Header(4, "Membership List"))])
user_table.AddCellInfo(user_table.GetCurrentRowIndex(),
user_table.GetCurrentCellIndex(),
bgcolor="#cccccc", colspan=8)
user_table.AddRow(
[Center(Italic("(%s members total, max. %s at a time displayed)" %
(len(mlist.members)
+ len(mlist.digest_members),
mlist.admin_member_chunksize)))])
user_table.AddCellInfo(user_table.GetCurrentRowIndex(),
user_table.GetCurrentCellIndex(),
bgcolor="#cccccc", colspan=8)
user_table.AddRow(map(Center, ['member address', 'subscr',
'hide', 'nomail', 'ack', 'not metoo',
'digest', 'plain']))
rowindex = user_table.GetCurrentRowIndex()
for i in range(8):
user_table.AddCellInfo(rowindex, i, bgcolor='#cccccc')
all = mlist.GetMembers() + mlist.GetDigestMembers()
if len(all) > mlist.admin_member_chunksize:
chunks = Utils.chunkify(all, mlist.admin_member_chunksize)
if not cgi_data.has_key("chunk"):
chunk = 0
else:
chunk = string.atoi(cgi_data["chunk"].value)
all = chunks[chunk]
footer = ("<p><em>To View other sections, "
"click on the appropriate range listed below</em>")
chunk_indices = range(len(chunks))
chunk_indices.remove(chunk)
buttons = []
for ci in chunk_indices:
start, end = chunks[ci][0], chunks[ci][-1]
url = mlist.GetAbsoluteScriptURL('admin')
buttons.append("<a href=%s/members?chunk=%d> from %s to %s </a>"
% ( url, ci, start, end))
buttons = apply(UnorderedList, tuple(buttons))
footer = footer + buttons.Format() + "<p>"
else:
all.sort()
footer = "<p>"
for member in all:
mtext = '<a href="%s">%s</a>' % (
mlist.GetAbsoluteOptionsURL(member, obscure=1),
mlist.GetUserSubscribedAddress(member))
cells = [mtext + "<input type=hidden name=user value=%s>" % (member),
Center(CheckBox(member + "_subscribed", "on", 1).Format())]
for opt in ("hide", "nomail", "ack", "notmetoo"):
if mlist.GetUserOption(member, MailCommandHandler.option_info[opt]):
value = "on"
checked = 1
else:
value = "off"
checked = 0
box = CheckBox("%s_%s" % (member, opt), value, checked)
cells.append(Center(box.Format()))
if mlist.members.has_key(member):
cells.append(Center(CheckBox(member + "_digest",
"off", 0).Format()))
else:
cells.append(Center(CheckBox(member + "_digest",
"on", 1).Format()))
if mlist.GetUserOption(member, MailCommandHandler.option_info['plain']):
value = 'on'
checked = 1
else:
value = 'off'
checked = 0
cells.append(Center(CheckBox('%s_plain' % member, value, checked)))
user_table.AddRow(cells)
container.AddItem(Center(user_table))
legend = UnorderedList()
legend.AddItem('<b>subscr</b> -- Is the member subscribed?')
legend.AddItem("<b>hide</b> -- Is the member's address "
"concealed on the list of subscribers?")
legend.AddItem('<b>nomail</b> -- Is delivery to the member disabled?')
legend.AddItem('<b>ack</b> -- '
'Does the member get acknowledgements of their posts?')
legend.AddItem('<b>not metoo</b> -- '
'Does the member avoid copies of their own posts?')
legend.AddItem('<b>digest</b> -- '
'Does the member get messages in digests? '
'(otherwise, individual messages)')
legend.AddItem(
'<b>plain</b> -- '
'If getting digests, does the member get plain text digests? '
'(otherwise, MIME)')
container.AddItem(legend.Format())
container.AddItem(footer)
t = Table(width="90%")
t.AddRow([Center(Header(4, "Mass Subscribe Members"))])
t.AddCellInfo(t.GetCurrentRowIndex(),
t.GetCurrentCellIndex(),
bgcolor="#cccccc", colspan=8)
if mlist.send_welcome_msg:
nochecked = 0
yeschecked = 1
else:
nochecked = 1
yeschecked = 0
t.AddRow([("<b>1.</b> Send Welcome message to this batch? "
+ RadioButton("send_welcome_msg_to_this_batch", 0,
nochecked).Format()
+ " no "
+ RadioButton("send_welcome_msg_to_this_batch", 1,
yeschecked).Format()
+ " yes ")])
t.AddRow(["<b>2.</b> Enter one address per line: <p>"])
container.AddItem(Center(t))
container.AddItem(Center(TextArea(name='subscribees',
rows=10,cols=60,wrap=None)))
return container
def FormatPasswordStuff():
change_pw_table = Table(bgcolor="#99cccc", border=0,
cellspacing=0, cellpadding=2,
valign="top")
change_pw_table.AddRow(
[Bold(Center('To Change The Administrator Password'))])
change_pw_table.AddCellInfo(0, 0, align="left", colspan=2)
old = Table(bgcolor="#99cccc", border=1,
cellspacing=0, cellpadding=2, valign="top")
old.AddRow(['<div ALIGN="right"> Enter current password:</div>',
PasswordBox('adminpw')])
new = Table(bgcolor="#99cccc", border=1,
cellspacing=0, cellpadding=2, valign="top")
new.AddRow(['<div ALIGN="right"> Enter new password: </div>',
PasswordBox('newpw')])
new.AddRow(['<div ALIGN="right">Confirm new password:</div>',
PasswordBox('confirmpw')])
change_pw_table.AddRow([old, new])
change_pw_table.AddCellInfo(1, 0, align="left", valign="top")
#change_pw_table.AddCellInfo(1, 1, align="left", valign="top")
return change_pw_table
def FormatSubmit():
submit = Table(bgcolor="#99ccff",
border=0, cellspacing=0, cellpadding=2)
submit.AddRow([Bold(SubmitButton('submit', 'Submit Your Changes'))])
submit.AddCellInfo(submit.GetCurrentRowIndex(), 0, align="middle")
return submit
# XXX klm - looks like turn_on_moderation is orphaned.
#turn_on_moderation = 0
# Options processing
def GetValidValue(mlist, prop, my_type, val, dependant):
if my_type == mm_cfg.Radio or my_type == mm_cfg.Toggle:
if type(val) <> types.IntType:
try:
val = int(val)
except ValueError:
pass
# Don't know what to do here...
return val
elif my_type == mm_cfg.String or my_type == mm_cfg.Text:
return val
elif my_type == mm_cfg.Email:
try:
Utils.ValidateEmail(val)
return val
except Errors.EmailAddressError:
# TBD: should have a way of displaying the results of the
# operation.
pass
# Revert to the old value.
return getattr(mlist, prop)
elif my_type == mm_cfg.EmailList:
def SafeValidAddr(addr):
try:
Utils.ValidateEmail(addr)
return 1
except Errors.EmailAddressError:
return 0
val = filter(SafeValidAddr,
map(string.strip, string.split(val, '\n')))
## if dependant and len(val):
## # Wait till we've set everything to turn it on,
## # as we don't want to clobber our special case.
## # XXX klm - looks like turn_on_moderation is orphaned?
## turn_on_moderation = 1
return val
elif my_type == mm_cfg.Host:
return val
##
## This code is sendmail dependant, so we'll just live w/o
## the error checking for now.
##
## # Shouldn't have to read in the whole file.
## file = open('/etc/sendmail.cf', 'r')
## lines = string.split(file.read(), '\n')
## file.close()
## def ConfirmCWEntry(item):
## return item[0:2] == 'Cw'
## lines = filter(ConfirmCWEntry, lines)
## if not len(lines):
## # Revert to the old value.
## return getattr(list, prop)
## for line in lines:
## if string.lower(string.strip(line[2:])) == string.lower(val):
## return val
## return getattr(list, prop)
elif my_type == mm_cfg.Number:
num = -1
try:
num = int(val)
except ValueError:
# TBD: a float???
try:
num = float(val)
except ValueError:
pass
if num < 0:
return getattr(mlist, prop)
return num
else:
# Should never get here...
return val
def ChangeOptions(mlist, category, cgi_info, document):
confirmed = 0
if cgi_info.has_key('newpw'):
if cgi_info.has_key('confirmpw'):
if cgi_info.has_key('adminpw'):
try:
mlist.ConfirmAdminPassword(cgi_info['adminpw'].value)
confirmed = 1
except Errors.MMBadPasswordError:
m = "Error: incorrect administrator password"
document.AddItem(
Header(3, Italic(FontAttr(m, color="ff5060"))))
confirmed = 0
if confirmed:
new = cgi_info['newpw'].value
confirm = cgi_info['confirmpw'].value
if new == confirm:
mlist.password = crypt(new, Utils.GetRandomSeed())
# Re-authenticate (to set new cookie)
mlist.WebAuthenticate(password=new, cookie='admin')
else:
m = 'Error: Passwords did not match.'
document.AddItem(
Header(3, Italic(FontAttr(m, color="ff5060"))))
else:
m = 'Error: You must type in your new password twice.'
document.AddItem(
Header(3, Italic(FontAttr(m, color="ff5060"))))
#
# for some reason, the login page mangles important values for the list
# such as .real_name so we only process these changes if the category
# is not "members" and the request is not from the login page
# -scott 19980515
#
if category != 'members' and \
not cgi_info.has_key("request_login") and \
len(cgi_info.keys()) > 1:
# then
if cgi_info.has_key("subscribe_policy"):
if not mm_cfg.ALLOW_OPEN_SUBSCRIBE:
#
# we have to add one to the value because the
# page didn't present an open list as an option
#
page_setting = string.atoi(cgi_info["subscribe_policy"].value)
cgi_info["subscribe_policy"].value = str(page_setting + 1)
opt_list = GetConfigOptions(mlist, category)
for item in opt_list:
if len(item) < 5:
continue
property, kind, args, deps, desc = item[0:5]
if cgi_info.has_key(property+'_upload') and \
cgi_info[property+'_upload'].value:
val = cgi_info[property+'_upload'].value
## mlist.LogMsg('debug', 'got ' + property+'_upload: ' +
## string.replace(val, '%', '%%'))
elif not cgi_info.has_key(property):
if (kind <> mm_cfg.Text and
kind <> mm_cfg.String and
kind <> mm_cfg.EmailList):
continue
else:
val = ''
else:
val = cgi_info[property].value
value = GetValidValue(mlist, property, kind, val, deps)
if getattr(mlist, property) <> value:
# TBD: Ensure that mlist.real_name differs only in letter
# case. Otherwise a security hole can potentially be opened
# when using an external archiver. This seems ad-hoc and
# could use a more general security policy.
if property == 'real_name' and \
string.lower(value) <> string.lower(mlist._internal_name):
# then don't install this value.
document.AddItem("""<p><b>real_name</b> attribute not
changed! It must differ from the list's name by case
only.<p>""")
continue
# TBD: When turning on usenet->mail gating we want to
# automatically catch up the newsgroup otherwise the mailing
# list will suddently get flooded. There should be a much
# better way to do this (or for the admin to specify they want
# this).
elif property == 'gateway_to_mail':
mlist.usenet_watermark = None
setattr(mlist, property, value)
#
# mass subscription processing for members category
#
if cgi_info.has_key('subscribees'):
name_text = cgi_info['subscribees'].value
name_text = string.replace(name_text, '\r', '')
names = map(string.strip, string.split(name_text, '\n'))
send_welcome_msg = string.atoi(
cgi_info["send_welcome_msg_to_this_batch"].value)
digest = 0
if not mlist.digestable:
digest = 0
if not mlist.nondigestable:
digest = 1
subscribe_errors = []
subscribe_success = []
result = mlist.ApprovedAddMembers(names, None,
digest, send_welcome_msg)
for name in result.keys():
if result[name] is None:
subscribe_success.append(name)
else:
# `name' was not subscribed, find out why. On failures,
# result[name] is set from sys.exc_info()[:2]
e, v = result[name]
if e is Errors.MMAlreadyAMember:
subscribe_errors.append((name, 'Already a member'))
elif e is Errors.MMBadEmailError:
if name == '':
name = '<blank line>'
subscribe_errors.append(
(name, "Bad/Invalid email address"))
elif e is Errors.MMHostileAddress:
subscribe_errors.append(
(name, "Hostile Address (illegal characters)"))
if subscribe_success:
document.AddItem(Header(5, "Successfully Subscribed:"))
document.AddItem(apply(UnorderedList, tuple((subscribe_success))))
document.AddItem("<p>")
# ApprovedAddMembers will already have saved the list for us.
if subscribe_errors:
document.AddItem(Header(5, "Error Subscribing:"))
items = map(lambda x: "%s -- %s" % (x[0], x[1]), subscribe_errors)
document.AddItem(apply(UnorderedList, tuple((items))))
document.AddItem("<p>")
#
# do the user options for members category
#
if cgi_info.has_key('user'):
user = cgi_info["user"]
if type(user) is type([]):
users = []
for ui in range(len(user)):
users.append(user[ui].value)
else:
users = [user.value]
unsubscribe_errors = []
for user in users:
if not cgi_info.has_key('%s_subscribed' % (user)):
try:
mlist.DeleteMember(user)
except Errors.MMNoSuchUserError:
unsubscribe_errors.append((user, 'Not subscribed'))
continue
if not cgi_info.has_key("%s_digest" % (user)):
if mlist.digest_members.has_key(user):
del mlist.digest_members[user]
if not mlist.members.has_key(user):
mlist.members[user] = 0
else:
if not mlist.digest_members.has_key(user):
mlist.digest_members[user] = 0
if mlist.members.has_key(user):
del mlist.members[user]
for opt in ("hide", "nomail", "ack", "notmetoo", "plain"):
opt_code = MailCommandHandler.option_info[opt]
if cgi_info.has_key("%s_%s" % (user, opt)):
mlist.SetUserOption(user, opt_code, 1, save_list=0)
else:
mlist.SetUserOption(user, opt_code, 0, save_list=0)
if unsubscribe_errors:
document.AddItem(Header(5, "Error Unsubscribing:"))
items = map(lambda x: "%s -- %s" % (x[0], x[1]),
unsubscribe_errors)
document.AddItem(apply(UnorderedList, tuple((items))))
document.AddItem("<p>")
def AddErrorMessage(doc, errmsg, *args):
doc.AddItem(Header(3, Italic(FontAttr(errmsg % args,
color="#ff66cc"))))
_config_info = None
def GetConfigOptions(mlist, category):
global _config_info
if _config_info == None:
_config_info = mlist.GetConfigInfo()
return _config_info[category]
|