~launchpad-pqm/launchpad/devel

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
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
Team mailing list subscriptions
===============================

Members of a team, either direct or indirect, may subscribe to that team's
mailing list, if it has one.  To illustrate, we'll first create a bunch of
people, a team and its team mailing list.

    # login() as an admin so that we can call join() on anyone
    # and change their mailing list auto-subscription settings.
    >>> login('foo.bar@canonical.com')

    >>> from lp.registry.tests.mailinglists_helper import (
    ...     get_alternative_email, print_addresses)
    >>> anne = factory.makePersonByName('Anne')

Anne gets two email addresses.  One is her preferred address...

    >>> anne.preferredemail.email
    u'anne.person@example.com'

...and the other is her alternative address.

    >>> get_alternative_email(anne).email
    u'aperson@example.org'

    >>> team_owner = 'no-priv'
    >>> bart = factory.makePersonByName('Bart')
    >>> team_one, list_one = factory.makeTeamAndMailingList(
    ...     'team-one', team_owner)
    >>> team_names = [team_one.name]

Once Anne and Bart join team one, they can post to the mailing list, but they
will not get deliveries.

    >>> anne.join(team_one)
    >>> bart.join(team_one)

    # The IMailingListSet APIs use the SLAVE_FLAVOR since they are read-only.
    # Commit the transaction so that the changes are visible there.
    >>> transaction.commit()

    # No Privileges Person shows up as a team member because he created the
    # team (in the doctest infrastructure).
    >>> sorted(member.displayname for member in team_one.allmembers)
    [u'Anne Person', u'Bart Person', u'No Privileges Person']

The list of sender addresses, i.e. those that are allowed to send emails to a
mailing list, are available both through the mailing list object and through
the mailing list set.

    >>> sorted(list_one.getSenderAddresses())
    [u'anne.person@example.com', u'aperson@example.org',
     u'bart.person@example.com', u'bperson@example.org',
     u'no-priv@canonical.com']

    >>> from lp.registry.interfaces.mailinglist import IMailingListSet
    >>> mailinglist_set = getUtility(IMailingListSet)
    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        no-priv@canonical.com

No one is yet subscribed to the mailing list though.

    >>> list(list_one.getSubscribedAddresses())
    []
    >>> list(list_one.getSubscribers())
    []
    >>> mailinglist_set.getSubscribedAddresses([team_one.name])
    {}

Anne subscribes to the mailing list for team one.  Because Anne does not
provide an email address when she subscribes, her preferred address is used.

    >>> list_one.subscribe(anne)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'anne.person@example.com']
    >>> sorted(person.displayname for person in list_one.getSubscribers())
    [u'Anne Person']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    team-one
        anne.person@example.com

Now Bart also subscribes to the mailing list, but he does so with something
other than his preferred email address.

    >>> alternative_email = get_alternative_email(bart)
    >>> alternative_email.email
    u'bperson@example.org'
    >>> list_one.subscribe(bart, alternative_email)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'anne.person@example.com', u'bperson@example.org']
    >>> sorted(person.displayname for person in list_one.getSubscribers())
    [u'Anne Person', u'Bart Person']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    team-one
        anne.person@example.com, bperson@example.org

A team can not subscribe to a mailing list.

    >>> list_one.subscribe(team_one)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Teams cannot be mailing list members: Team One

A user's subscribed address is the address to which they'll receive posted
messages.  However, the user may post a message from any of the addresses
they've confirmed with Launchpad.

    >>> sorted(list_one.getSenderAddresses())
    [u'anne.person@example.com', u'aperson@example.org',
     u'bart.person@example.com', u'bperson@example.org',
     u'no-priv@canonical.com']

However, should Anne register a new, but not-validated email address, she may
not post from it.

    >>> from lp.services.identity.interfaces.emailaddress import IEmailAddressSet
    >>> address_set = getUtility(IEmailAddressSet)
    >>> alternative = address_set.new(
    ...     'anne.x.person@example.net', anne)
    >>> alternative.email
    u'anne.x.person@example.net'

    >>> sorted(list_one.getSenderAddresses())
    [u'anne.person@example.com', u'aperson@example.org',
     u'bart.person@example.com', u'bperson@example.org',
     u'no-priv@canonical.com']

Once Anne validates her new address, she can post from it.

    >>> from lp.services.identity.interfaces.emailaddress import EmailAddressStatus
    >>> alternative.status = EmailAddressStatus.VALIDATED
    >>> transaction.commit()

    >>> sorted(list_one.getSenderAddresses())
    [u'anne.person@example.com', u'anne.x.person@example.net',
     u'aperson@example.org',
     u'bart.person@example.com', u'bperson@example.org',
     u'no-priv@canonical.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    team-one
        anne.person@example.com, anne.x.person@example.net,
        aperson@example.org,
        bart.person@example.com, bperson@example.org,
        no-priv@canonical.com

    # Reverse the validation so that it doesn't affect subsequent tests.
    >>> alternative.status = EmailAddressStatus.NEW


MailingListSubscription objects
-------------------------------

MailingListSubscription objects make it possible to see under which
address (if any) a user is subscribed. That information is available
as the email_address member.

    >>> from lp.services.webapp.testing import verifyObject
    >>> from lp.registry.interfaces.mailinglist import IMailingListSubscription
    >>> subscription = list_one.getSubscription(bart)
    >>> verifyObject(IMailingListSubscription, subscription)
    True

    >>> print subscription.email_address.email
    bperson@example.org

Every subscription has a corresponding MailingListSubscription object,
but not every MailingListSubscription object names a specific email
address. If a user is subscribed under their preferred address, the
corresponding MailingListSubscription object will exist but not be
associated with any specific address.

    >>> print list_one.getSubscription(anne).email_address
    None


Nested teams
------------

Indirect members can subscribe to a team's mailing list.  To illustrate this,
we first create team-two as a subteam of team-one.

    >>> team_two = factory.makeTeam(name='team-two', owner=team_owner)
    >>> team_names.append(team_two.name)

    >>> from lp.registry.interfaces.person import IPersonSet
    >>> salgado = getUtility(IPersonSet).getByName('salgado')
    >>> team_two.join(team_one, salgado)
    >>> sorted(member.displayname for member in team_one.allmembers)
    [u'Anne Person', u'Bart Person', u'No Privileges Person', u'Team Two']

Cris joins team-two, becoming a direct member of team-two and an indirect
member of team-one.

    >>> cris = factory.makePersonByName('Cris')
    >>> cris.join(team_two)
    >>> sorted(member.displayname for member in team_two.allmembers)
    [u'Cris Person', u'No Privileges Person']
    >>> sorted(member.displayname for member in team_one.allmembers)
    [u'Anne Person', u'Bart Person', u'Cris Person', u'No Privileges Person',
     u'Team Two']

Now, by virtue of her indirect membership in team-one, Cris can subscribe to
team-one's mailing list.

    >>> list_one.subscribe(cris)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'anne.person@example.com', u'bperson@example.org',
     u'cris.person@example.com']
    >>> [person.displayname for person in list_one.getSubscribers()]
    [u'Anne Person', u'Bart Person', u'Cris Person']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    team-one
        anne.person@example.com, bperson@example.org,
        cris.person@example.com

Cris may post to the mailing list using any of her registered and validated
email addresses.

    >>> sorted(list_one.getSenderAddresses())
    [u'anne.person@example.com', u'aperson@example.org',
     u'bart.person@example.com', u'bperson@example.org',
     u'cperson@example.org', u'cris.person@example.com',
     u'no-priv@canonical.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com

Any new address that Cris registers but does not validate may not yet be used
to post to the mailing list.

    >>> alternative = address_set.new(
    ...     'cris.x.person@example.net', cris)
    >>> alternative.email
    u'cris.x.person@example.net'

    >>> sorted(list_one.getSenderAddresses())
    [u'anne.person@example.com', u'aperson@example.org',
     u'bart.person@example.com', u'bperson@example.org',
     u'cperson@example.org', u'cris.person@example.com',
     u'no-priv@canonical.com']

Once Cris validates her new address, she can post from it.

    >>> alternative.status = EmailAddressStatus.VALIDATED
    >>> transaction.commit()

    >>> sorted(list_one.getSenderAddresses())
    [u'anne.person@example.com', u'aperson@example.org',
     u'bart.person@example.com', u'bperson@example.org',
     u'cperson@example.org', u'cris.person@example.com',
     u'cris.x.person@example.net',
     u'no-priv@canonical.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        cris.x.person@example.net,
        no-priv@canonical.com

    # Reverse the validation so that it doesn't affect subsequent tests.
    >>> alternative.status = EmailAddressStatus.NEW
    >>> transaction.commit()

People can subscribe to both a superteam's mailing list and a subteam's
mailing list.

    >>> super_team, super_team_list = factory.makeTeamAndMailingList(
    ...     'super-team', team_owner)
    >>> sub_team, sub_team_list = factory.makeTeamAndMailingList(
    ...     'sub-team', team_owner)
    >>> team_names.extend((super_team.name, sub_team.name))

    >>> ignored = super_team.addMember(sub_team, salgado, force_team_add=True)
    >>> lars = factory.makePersonByName('Lars')
    >>> lars.join(super_team)
    >>> lars.join(sub_team)
    >>> super_team_list.subscribe(lars)
    >>> sub_team_list.subscribe(lars)
    >>> transaction.commit()

    >>> sorted(super_team_list.getSubscribedAddresses())
    [u'lars.person@example.com']
    >>> sorted(sub_team_list.getSubscribedAddresses())
    [u'lars.person@example.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-one
        anne.person@example.com, bperson@example.org, cris.person@example.com

This is true even if the person's subscription in the superteam's list is
allowed due to indirect membership in the superteam.

    >>> team_three, list_three = factory.makeTeamAndMailingList(
    ...     'team-three', team_owner)
    >>> team_names.append(team_three.name)

    >>> ignored = team_one.addMember(team_three, salgado, force_team_add=True)
    >>> dirk = factory.makePersonByName('Dirk')
    >>> dirk.join(team_two)
    >>> dirk.join(team_three)
    >>> list_one.subscribe(dirk)
    >>> list_three.subscribe(dirk)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'anne.person@example.com', u'bperson@example.org',
     u'cris.person@example.com', u'dirk.person@example.com']
    >>> sorted(list_three.getSubscribedAddresses())
    [u'dirk.person@example.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-one
        anne.person@example.com, bperson@example.org,
        cris.person@example.com, dirk.person@example.com
    team-three
        dirk.person@example.com

Once the subteam is deactivated from the superteam, subteam members (such as
Dirk) who have no other indirect membership in the superteam will be
unsubscribed from the superteam's mailing list.

    >>> dirk.leave(team_two)
    >>> from lp.registry.interfaces.teammembership import TeamMembershipStatus
    >>> team_one.setMembershipData(team_three,
    ...     TeamMembershipStatus.DEACTIVATED, salgado)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'anne.person@example.com', u'bperson@example.org',
     u'cris.person@example.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-one
        anne.person@example.com, bperson@example.org,
        cris.person@example.com
    team-three
        dirk.person@example.com

However, their mail-list settings for the super-team will remain via a
MailingListSubscription object.

    >>> print list_one.getSubscription(dirk)
    <security ...MailingListSubscription instance ...>

Sub-team members may still ask to subscribe to the super-team's list,
but their subscription will not become active, as they are not an
approved member of the super-team.

    # This will raise an error because the subscription object
    # already exists.  However, the UI should have taken this into
    # account.
    >>> list_one.subscribe(dirk)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Dirk Person is already subscribed to list Team One

    >>> sorted(list_one.getSubscribedAddresses())
    [u'anne.person@example.com', u'bperson@example.org',
     u'cris.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-one
        anne.person@example.com, bperson@example.org,
        cris.person@example.com
    team-three
        dirk.person@example.com

Teams, even subteams, cannot subscribe to mailing lists.

    >>> list_one.subscribe(team_two)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Teams cannot be mailing list members: Team Two


Subscribed email addresses
--------------------------

As shown above, a person can subscribe either with their preferred email
address or any other email address they own.  If they choose to use their
preferred email address, this will automatically track changes to their
preferred address.

    >>> elle = factory.makePersonByName('Elle')
    >>> elle.preferredemail.email
    u'elle.person@example.com'
    >>> elle_alternative = get_alternative_email(elle)
    >>> elle_alternative.email
    u'eperson@example.org'
    >>> team_four, list_four = factory.makeTeamAndMailingList(
    ...     'team-four', team_owner)
    >>> team_names.append(team_four.name)

    >>> elle.join(team_four)
    >>> list_four.subscribe(elle)
    >>> transaction.commit()

    >>> sorted(list_four.getSubscribedAddresses())
    [u'elle.person@example.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-four
        elle.person@example.com, eperson@example.org, no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        elle.person@example.com
    team-one
        anne.person@example.com, bperson@example.org,
        cris.person@example.com
    team-three
        dirk.person@example.com

    >>> elle.setPreferredEmail(elle_alternative)
    >>> transaction.commit()

    >>> sorted(list_four.getSubscribedAddresses())
    [u'eperson@example.org']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-four
        elle.person@example.com, eperson@example.org, no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-one
        anne.person@example.com, bperson@example.org,
        cris.person@example.com
    team-three
        dirk.person@example.com

A person cannot subscribe an email address they do not own.

    >>> fred = factory.makePersonByName('Fred')
    >>> anne.join(team_four)
    >>> list_four.subscribe(anne, fred.preferredemail)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Anne Person does not own the email address:
        fred.person@example.com


Unsubscribing
-------------

Any list member can unsubscribe from the mailing list.

    >>> sorted(list_one.getSubscribedAddresses())
    [u'anne.person@example.com', u'bperson@example.org',
     u'cris.person@example.com']

    >>> list_one.unsubscribe(anne)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'bperson@example.org', u'cris.person@example.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-one
        bperson@example.org, cris.person@example.com
    team-three
        dirk.person@example.com

But someone who is not a member cannot unsubscribe.

    >>> list_one.unsubscribe(fred)
    Traceback (most recent call last):
    ...
    CannotUnsubscribe: Fred Person is not a member of the mailing list:
        Team One

When someone leaves a direct team, they automatically get unsubscribed.

    >>> bart.leave(team_one)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'cris.person@example.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-one
        cris.person@example.com
    team-three
        dirk.person@example.com

When the person re-joins a team that gives them indirect membership in a team
with a mailing list that they were previously subscribed to, they get
re-subscribed to that mailing list automatically.  See the section on
persistence of preferences below for more examples of this.

    >>> bart.join(team_two)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'bperson@example.org', u'cris.person@example.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-one
        anne.person@example.com, aperson@example.org,
        bart.person@example.com, bperson@example.org,
        cperson@example.org, cris.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-one
        bperson@example.org, cris.person@example.com
    team-three
        dirk.person@example.com

When someone is a member of a mailing list through an indirect team, and they
leave that indirect team, they also get unsubscribed from the mailing list.

    >>> cris.leave(team_two)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'bperson@example.org']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-one
        bperson@example.org
    team-three
        dirk.person@example.com

It's also the case that if a subteam leaves its superteam, all members who
have no other indirect membership in the super team will get unsubscribed from
the mailing list.  To illustrate, we set up a new subteam and join a few new
members to that team.  Only Iona will have a path to the superteam through
more than one subteam.

    >>> team_five = factory.makeTeam(name='team-five', owner=team_owner)
    >>> team_names.append(team_five.name)

    >>> ignored = team_one.addMember(team_five, salgado, force_team_add=True)
    >>> gwen = factory.makePersonByName('Gwen')
    >>> hank = factory.makePersonByName('Hank')
    >>> iona = factory.makePersonByName('Iona')

    >>> gwen.join(team_five)
    >>> hank.join(team_five)
    >>> iona.join(team_five)
    >>> iona.join(team_two)

    >>> sorted(list_one.getSubscribedAddresses())
    [u'bperson@example.org']

    >>> list_one.subscribe(gwen)
    >>> list_one.subscribe(hank)
    >>> list_one.subscribe(iona)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'bperson@example.org', u'gwen.person@example.com',
     u'hank.person@example.com', u'iona.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-one
        bperson@example.org, gwen.person@example.com,
        hank.person@example.com, iona.person@example.com
    team-three
        dirk.person@example.com

One of the subteams is removed from its superteam.  All of the subteams'
members that have no other path to membership in the superteam will be
unsubscribed from the superteam's mailing list.

    >>> team_one.setMembershipData(team_five,
    ...     TeamMembershipStatus.DEACTIVATED, salgado)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    [u'bperson@example.org', u'iona.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-one
        bperson@example.org, iona.person@example.com
    team-three
        dirk.person@example.com


Double subscriptions
--------------------

A list member may only be subscribed once, with a single email address.

    >>> list_one.subscribe(iona)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Iona Person is already subscribed to list Team One

A current subscriber is not even allowed to subscribe multiple times with a
different email address.

    >>> iona_alternative = get_alternative_email(iona)
    >>> list_one.subscribe(iona, iona_alternative)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Iona Person is already subscribed to list Team One


List deactivation
-----------------

When a team's mailing list is deactivated, all subscriptions to that mailing
list are dropped.

    >>> sorted(list_one.getSubscribedAddresses())
    [u'bperson@example.org', u'iona.person@example.com']

    # Deactivation isn't complete until the list's status is transitioned to
    # INACTIVE.
    >>> list_one.deactivate()
    >>> from lp.registry.interfaces.mailinglist import MailingListStatus
    >>> list_one.transitionToStatus(MailingListStatus.INACTIVE)
    >>> transaction.commit()

    >>> sorted(list_one.getSubscribedAddresses())
    []

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-three
        dirk.person@example.com

A list that is not active cannot be subscribed to.

    >>> list_one.subscribe(anne)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Mailing list is not usable: Team One


Persistence of preferences
--------------------------

When someone gets unsubscribed because they leave a team, their subscription
preferences are preserved, so that if they re-join the team, their
subscription gets re-instated.  Currently, the subscribed email address is the
only relevant preference.

    >>> team_six, list_six = factory.makeTeamAndMailingList(
    ...     'team-six', team_owner)
    >>> team_names.append(team_six.name)

    >>> jack = factory.makePersonByName('Jack')
    >>> jack.join(team_six)
    >>> list_six.subscribe(jack)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    [u'jack.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        jack.person@example.com
    team-three
        dirk.person@example.com

    >>> jack.leave(team_six)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    []

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-three
        dirk.person@example.com

    >>> jack.join(team_six)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    [u'jack.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        jack.person@example.com
    team-three
        dirk.person@example.com

This is true even if they subscribe with an address that's different than
their preferred email address.

    >>> kara = factory.makePersonByName('Kara')
    >>> kara.join(team_six)
    >>> kara_alternative = get_alternative_email(kara)
    >>> kara_alternative.email
    u'kperson@example.org'
    >>> list_six.subscribe(kara, kara_alternative)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    [u'jack.person@example.com', u'kperson@example.org']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        jack.person@example.com, kperson@example.org
    team-three
        dirk.person@example.com

    >>> kara.leave(team_six)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    [u'jack.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        jack.person@example.com
    team-three
        dirk.person@example.com

    >>> kara.join(team_six)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    [u'jack.person@example.com', u'kperson@example.org']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        jack.person@example.com, kperson@example.org
    team-three
        dirk.person@example.com


Changing subscribed email address
---------------------------------

A member of a mailing list can request to change certain aspects of their
subscription.  Currently the only thing they can change is their subscribed
address.  Let's say for example that Kara wants to change the address that
she is subscribed to List Six with.

    >>> list_six.unsubscribe(jack)
    >>> address = address_set.getByEmail('kara.person@example.com')
    >>> list_six.changeAddress(kara, address)
    >>> transaction.commit()

    >> sorted(list_six.getSubscribedAddresses())
    [u'kara.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        kara.person@example.com
    team-three
        dirk.person@example.com

    >>> address = address_set.getByEmail('kperson@example.org')
    >>> list_six.changeAddress(kara, address)
    >>> transaction.commit()

    >> sorted(list_six.getSubscribedAddresses())
    [u'kperson@example.org']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        kperson@example.org
    team-three
        dirk.person@example.com

Kara can also change her email address to None, which uses and tracks any
changes to her preferred email address.

    >>> list_six.changeAddress(kara, None)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    [u'kara.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        kara.person@example.com
    team-three
        dirk.person@example.com

    >>> address = address_set.getByEmail('kperson@example.org')
    >>> list_six.changeAddress(kara, address)
    >>> kara.setPreferredEmail(address)
    >>> transaction.commit()

    >>> sorted(list_six.getSubscribedAddresses())
    [u'kperson@example.org']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        kperson@example.org
    team-three
        dirk.person@example.com

Kara cannot change her email address to one she does not own.

    >>> list_six.changeAddress(kara, fred.preferredemail)
    Traceback (most recent call last):
    ...
    CannotChangeSubscription: Kara Person does not own the email address:
        fred.person@example.com

Someone who is not a member of the mailing list of course cannot change their
subscription address.

    >>> list_six.changeAddress(anne, None)
    Traceback (most recent call last):
    ...
    CannotChangeSubscription: Anne Person is not a member of
        the mailing list: Team Six


Subscribing while requesting a team membership
----------------------------------------------

Someone who is not a member of a team may subscribe to the team's
mailing list.  Full membership is only required to post to or receive
emails from it.

    >>> team_seven, list_seven = factory.makeTeamAndMailingList(
    ...     'team-7', team_owner)
    >>> team_names.append(team_seven.name)

    >>> sam = factory.makePersonByName('Samuel')
    >>> transaction.commit()

    >>> list_seven.subscribe(sam)
    >>> sorted(list_seven.getSubscribedAddresses())
    []

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        kperson@example.org
    team-three
        dirk.person@example.com

Samuel may not post to the mailing list using any of his addresses.

    >>> sorted(list_seven.getSenderAddresses())
    [u'no-priv@canonical.com']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-7
        no-priv@canonical.com
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-six
        jack.person@example.com, jperson@example.org,
        kara.person@example.com, kperson@example.org,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

Samuel will have a corresponding subscription object in the database,
but his subscription will not be fully active or visible until
his team membership is approved.

    >>> print list_seven.getSubscription(sam)
    <security ...MailingListSubscription instance ...>

    >>> sam.join(team_seven)
    >>> transaction.commit()

    >>> sorted(list_seven.getSubscribedAddresses())
    [u'samuel.person@example.com']
    >>> sorted(list_seven.getSenderAddresses())
    [u'no-priv@canonical.com',
     u'samuel.person@example.com', u'sperson@example.org']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-7
        samuel.person@example.com
    team-four
        eperson@example.org
    team-six
        kperson@example.org
    team-three
        dirk.person@example.com

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-7
        no-priv@canonical.com,
        samuel.person@example.com, sperson@example.org
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-six
        jack.person@example.com, jperson@example.org,
        kara.person@example.com, kperson@example.org,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

Should the mailing list become inactive, none of the addresses will be
returned either as recipients or senders.

    >>> from zope.security.proxy import removeSecurityProxy
    >>> removeSecurityProxy(list_seven).status = MailingListStatus.INACTIVE
    >>> transaction.commit()

    >>> sorted(list_seven.getSubscribedAddresses())
    []
    >>> sorted(list_seven.getSenderAddresses())
    []

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-four
        eperson@example.org
    team-six
        kperson@example.org
    team-three
        dirk.person@example.com

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-six
        jack.person@example.com, jperson@example.org,
        kara.person@example.com, kperson@example.org,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

    # Restore the state.
    >>> removeSecurityProxy(list_seven).status = MailingListStatus.ACTIVE


Deleting addresses
------------------

When a user deletes an email address, all of their mailing list
subscriptions that use that address are automatically deleted as well.

    >>> list_six.changeAddress(kara, kara_alternative)
    >>> transaction.commit()
    >>> print sorted(list_six.getSubscribedAddresses())
    [u'kperson@example.org']

    # kara_alternative has been set as kara's preferred email during this
    # test, but we can't delete a person's preferred email, so we first need
    # to change her preferred email.
    >>> kara.setPreferredEmail(kara.validatedemails[0])
    >>> transaction.commit()
    >>> kara.preferredemail == kara_alternative
    False
    >>> kara_alternative.destroySelf()
    >>> transaction.commit()
    >>> print sorted(list_six.getSubscribedAddresses())
    []

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-7
        samuel.person@example.com
    team-four
        eperson@example.org
    team-three
        dirk.person@example.com

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-7
        no-priv@canonical.com,
        samuel.person@example.com, sperson@example.org
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-six
        jack.person@example.com, jperson@example.org,
        kara.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com


Deactivating accounts
---------------------

When a subscribed user has her account disabled, she will no longer be able to
post to the mailing list, nor will she receive mailing list posts.

    >>> team_nine, list_nine = factory.makeTeamAndMailingList(
    ...     'team-9', team_owner)
    >>> team_names.append(team_nine.name)

    >>> umma = factory.makePersonByName('Umma')
    >>> umma.join(team_nine)
    >>> list_nine.subscribe(umma)
    >>> vera = factory.makePersonByName('Vera')
    >>> vera.join(team_nine)
    >>> list_nine.subscribe(vera)
    >>> transaction.commit()

    >>> print sorted(list_nine.getSubscribedAddresses())
    [u'umma.person@example.com', u'vera.person@example.com']

    >>> print sorted(list_nine.getSenderAddresses())
    [u'no-priv@canonical.com',
     u'umma.person@example.com', u'uperson@example.org',
     u'vera.person@example.com', u'vperson@example.org']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-7
        samuel.person@example.com
    team-9
        umma.person@example.com, vera.person@example.com
    team-four
        eperson@example.org
    team-three
        dirk.person@example.com

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-7
        no-priv@canonical.com,
        samuel.person@example.com, sperson@example.org
    team-9
        no-priv@canonical.com,
        umma.person@example.com, uperson@example.org,
        vera.person@example.com, vperson@example.org
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-six
        jack.person@example.com, jperson@example.org,
        kara.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com

Now Umma's account is suspended by a Launchpad administrator.

    >>> from lp.services.identity.interfaces.account import (
    ...     AccountStatus)
    >>> umma.account.status = AccountStatus.SUSPENDED
    >>> transaction.commit()

Umma is no longer subscribed to the mailing list...

    >>> print sorted(list_nine.getSubscribedAddresses())
    [u'vera.person@example.com']

    >>> print_addresses(mailinglist_set.getSubscribedAddresses(team_names))
    sub-team
        lars.person@example.com
    super-team
        lars.person@example.com
    team-7
        samuel.person@example.com
    team-9
        vera.person@example.com
    team-four
        eperson@example.org
    team-three
        dirk.person@example.com

...and she can no longer post directly to the mailing list.

    >>> print sorted(list_nine.getSenderAddresses())
    [u'no-priv@canonical.com',
     u'vera.person@example.com', u'vperson@example.org']

    >>> print_addresses(mailinglist_set.getSenderAddresses(team_names))
    sub-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    super-team
        lars.person@example.com, lperson@example.org, no-priv@canonical.com
    team-7
        no-priv@canonical.com,
        samuel.person@example.com, sperson@example.org
    team-9
        no-priv@canonical.com,
        vera.person@example.com, vperson@example.org
    team-four
        anne.person@example.com, aperson@example.org,
        elle.person@example.com, eperson@example.org,
        no-priv@canonical.com
    team-six
        jack.person@example.com, jperson@example.org,
        kara.person@example.com,
        no-priv@canonical.com
    team-three
        dirk.person@example.com, dperson@example.org,
        no-priv@canonical.com


Subscription states
-------------------

A user can subscribe to a mailing list only when the list is active (as
show above), but for purposes of subscription, we also consider lists in
the MODIFIED, UPDATING, and MOD_FAILED states to be active.  This is
because the first two states are transitional states, while the latter
state does not affect the usability of the mailing list.  Thus, if the
mailing list is usable, then it can be subscribed to.  See above also
for states in which the list /cannot/ be subscribed to, such as the
DEACTIVATED state.

    >>> team_eight, list_eight = factory.makeTeamAndMailingList(
    ...     'team-8', team_owner)
    >>> team_names.append(team_eight.name)

    >>> teri = factory.makePersonByName('Teri')
    >>> teri.join(team_seven)

    # We don't need to test the ACTIVE state, as that's represented above.
    # However, because 'status' is a protected attribute, we need to unwrap
    # the security context in order to set it.
    >>> from zope.security.proxy import removeSecurityProxy
    >>> removeSecurityProxy(list_seven).status = MailingListStatus.MODIFIED
    >>> list_seven.subscribe(teri)
    >>> list_seven.unsubscribe(teri)

    >>> removeSecurityProxy(list_seven).status = MailingListStatus.UPDATING
    >>> list_seven.subscribe(teri)
    >>> list_seven.unsubscribe(teri)

    >>> removeSecurityProxy(list_seven).status = MailingListStatus.MOD_FAILED
    >>> list_seven.subscribe(teri)
    >>> list_seven.unsubscribe(teri)

But in other, non-usable states, the mailing list cannot be subscribed
to.

    # We don't need to test the INACTIVE state, as that's represented above.
    >>> removeSecurityProxy(list_seven).status = MailingListStatus.REGISTERED
    >>> list_seven.subscribe(teri)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Mailing list is not usable: Team 7

    >>> removeSecurityProxy(list_seven).status = MailingListStatus.APPROVED
    >>> list_seven.subscribe(teri)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Mailing list is not usable: Team 7

    >>> removeSecurityProxy(list_seven).status = MailingListStatus.DECLINED
    >>> list_seven.subscribe(teri)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Mailing list is not usable: Team 7

    >>> removeSecurityProxy(list_seven).status = MailingListStatus.CONSTRUCTING
    >>> list_seven.subscribe(teri)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Mailing list is not usable: Team 7

    >>> removeSecurityProxy(list_seven).status = MailingListStatus.FAILED
    >>> list_seven.subscribe(teri)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Mailing list is not usable: Team 7

    >>> removeSecurityProxy(list_seven).status = (
    ...     MailingListStatus.DEACTIVATING)
    >>> list_seven.subscribe(teri)
    Traceback (most recent call last):
    ...
    CannotSubscribe: Mailing list is not usable: Team 7


Subscribing a person to a list gracefully
-----------------------------------------

Calling IMailingList.subscribe() directly will always subscribe a
person, regardless of their mailing list auto-subscription settings,
and raise errors if there are any problems.  Calling
IPerson.autoSubscribeToMailingList() will take these settings into account
and try to recover gracefully from errors.  The method will return a
True or False value to indicate if the user was subscribed to the list.

    >>> team_eight, list_eight = factory.makeTeamAndMailingList(
    ...     'team-eight', team_owner)
    >>> team_names.append(team_eight.name)

    >>> mary = factory.makePersonByName(
    ...     'Mary', use_default_autosubscribe_policy=True)

Mary is not a member of list-eight, so she will have no problem joining.

    >>> mary.autoSubscribeToMailingList(list_eight)
    True
    >>> print list_eight.getSubscription(mary)
    <security ...MailingListSubscription instance ...>

Subscribing a second time will do nothing.

    >>> mary.autoSubscribeToMailingList(list_eight)
    False

Subscribing to an inactive list also does nothing.

    >>> team_off, list_off = factory.makeTeamAndMailingList(
    ...     'team-off', team_owner)
    >>> team_names.append(team_off.name)

    >>> list_off.deactivate()
    >>> list_off.is_usable
    False

    >>> mary.autoSubscribeToMailingList(list_off)
    False

If a team's mailing list is non-existant, then the method will try to
recover gracefully.

    >>> team_sans_list = factory.makeTeam(name='sans-list', owner=team_owner)
    >>> team_names.append(team_sans_list.name)

    >>> mary.autoSubscribeToMailingList(team_sans_list.mailing_list)
    False


And we can't subscribe someone who does not have a preferred email address.

    >>> qbert = factory.makePersonByName(
    ...     'Qbert', set_preferred_email=False,
    ...     use_default_autosubscribe_policy=True)
    >>> print qbert.preferredemail
    None

    >>> qbert.autoSubscribeToMailingList(list_eight)
    False


Auto-subscription policy settings
---------------------------------

Mary's auto-subscription settings are taken into account when signing
up for the list.

    >>> from lp.registry.interfaces.mailinglistsubscription import (
    ...     MailingListAutoSubscribePolicy)
    >>> ALWAYS = MailingListAutoSubscribePolicy.ALWAYS
    >>> ON_REGISTRATION = MailingListAutoSubscribePolicy.ON_REGISTRATION
    >>> NEVER = MailingListAutoSubscribePolicy.NEVER

By default, new users have a policy to only join a list if they
explicitly request it.  If someone else adds them to a list, then they
are only subscribed to the list if their policy is set to 'ALWAYS'.

    >>> kathy = factory.makePersonByName(
    ...     'Kathy', use_default_autosubscribe_policy=True)
    >>> kathy.mailing_list_auto_subscribe_policy
    <...ON_REGISTRATION...>

    >>> kathy.autoSubscribeToMailingList(list_eight, requester=mary)
    False

    >>> kathy.mailing_list_auto_subscribe_policy = ALWAYS
    >>> kathy.autoSubscribeToMailingList(list_eight, requester=mary)
    True

Setting the policy to NEVER should be self-explanatory.

    >>> norbert = factory.makePersonByName('Norbert')
    >>> norbert.mailing_list_auto_subscribe_policy = NEVER
    >>> norbert.autoSubscribeToMailingList(list_eight)
    False