summaryrefslogtreecommitdiff
path: root/6d/65ea762583b862cdbf38c594d264e0308f284b
blob: a826d0d2893141a5d18559a46269d5ddd9675fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
Return-Path: <ademan555@gmail.com>
Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136])
 by lists.linuxfoundation.org (Postfix) with ESMTP id 4563AC0032
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue,  7 Nov 2023 20:15:55 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp3.osuosl.org (Postfix) with ESMTP id 1934960B10
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue,  7 Nov 2023 20:15:55 +0000 (UTC)
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org 1934960B10
Authentication-Results: smtp3.osuosl.org;
 dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com
 header.a=rsa-sha256 header.s=20230601 header.b=NaxMWrBv
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -1.848
X-Spam-Level: 
X-Spam-Status: No, score=-1.848 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,
 FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.001,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from smtp3.osuosl.org ([127.0.0.1])
 by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id t-8xY1CJiVpn
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue,  7 Nov 2023 20:15:52 +0000 (UTC)
Received: from mail-lj1-x22e.google.com (mail-lj1-x22e.google.com
 [IPv6:2a00:1450:4864:20::22e])
 by smtp3.osuosl.org (Postfix) with ESMTPS id 6F39860A6B
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue,  7 Nov 2023 20:15:51 +0000 (UTC)
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org 6F39860A6B
Received: by mail-lj1-x22e.google.com with SMTP id
 38308e7fff4ca-2c54c8934abso86678171fa.0
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Tue, 07 Nov 2023 12:15:51 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=gmail.com; s=20230601; t=1699388149; x=1699992949;
 darn=lists.linuxfoundation.org; 
 h=to:subject:message-id:date:from:in-reply-to:references:mime-version
 :from:to:cc:subject:date:message-id:reply-to;
 bh=Qb7dIw2OWddu+xaGpr8fhoMd/p3hTnuCck+AQtm3Y80=;
 b=NaxMWrBvkiLEUnrG3j6+7u8xigw++q/pfRagtQMfLShNlbuLVrY36Gwgn2CtFDucXj
 ueNEBR9GF//9kLbS5cK66QbbhrhDv0IcW1zK2SCghjsRm1jCU3Gy2Uyrc3yxrZXPCYsm
 lPQ/0TZpvVVgTttBi9NGeYN0DDm+5WLivo8/7IU215LoPr9ixesN6Cr7ntv7OS07zcOl
 TbxwSdopVZCQBe45qYKkhkdB0v1oZ0ZESDjUWKjUdrt0Ho5Ns6VYlAAgMuwZOY///1V3
 hmGN9emWDdwmR6ZMkCMo3rWG6BjWNfmgva8s+HhHCsFQT+JyWIrcE/dsbV+0EYvU6D3M
 xXeA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20230601; t=1699388149; x=1699992949;
 h=to:subject:message-id:date:from:in-reply-to:references:mime-version
 :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to;
 bh=Qb7dIw2OWddu+xaGpr8fhoMd/p3hTnuCck+AQtm3Y80=;
 b=O2AghRHa45PkfJLDo2BHv+aycMkXnwFStfQUBJuGCU3Tvm02Ley6ce9GXac5CfTuo1
 UkPUH+td1pdvpLapQc0AKxrWguCnPIV00V9VxDY6t7HlVGUIzvuB+j8N388I/2ipDwyM
 A29aAnUZtiLymL8TQVuvczs35/XpHbe/YhTCGeOoHN7lfIrowkZryzdnocnEb7LfSM9C
 oZr/rD8o6LIAbY2XhpzyJJBlJVilRKTp8n7M/WrqROvXeirO1EZU0B7bHnh9vmDexLaY
 AJZ8KnONIZqiJUO8JAwJRoJVx0/Y50cZ1T2tL1CJPOwDno64E3VEW6e1mizoVBRmW/GN
 75Xg==
X-Gm-Message-State: AOJu0YyWPqW2GRfTI8qt/ma1zN2pFlhJ5dANO7o2p4l05Dy8SFYA/OMm
 +daz8SvqG9VpCAgRxkw0jTxcy8yhf7i6Qh6Aa1AWtGkORUM=
X-Google-Smtp-Source: AGHT+IHrHCa+R34oB1n+MUbetjl7TcZ6zO029Gym/WGKDGOzWM4Do57b+K/sTp0EUTTwrCk+5IEsAJt22lYWET80x24=
X-Received: by 2002:a2e:8907:0:b0:2c5:3492:5d96 with SMTP id
 d7-20020a2e8907000000b002c534925d96mr53753lji.12.1699388148685; Tue, 07 Nov
 2023 12:15:48 -0800 (PST)
MIME-Version: 1.0
References: <CABaSBaz9OTSVa1KNk0GOrH3T-kRF_7OPVu0AtpuaFGVB=zhdwQ@mail.gmail.com>
 <CAKwYL5ERT0zH=kcpPwqWe2Q2Gtn+Lj5nQF14yzAZ2nhn8AdD6A@mail.gmail.com>
 <2099470b-cca4-4fbe-99c3-ee2d2ed20157@achow101.com>
In-Reply-To: <2099470b-cca4-4fbe-99c3-ee2d2ed20157@achow101.com>
From: Ademan <ademan555@gmail.com>
Date: Tue, 7 Nov 2023 14:15:37 -0600
Message-ID: <CAKwYL5H2mHww_TM1zMdHYJH6EsvLY1k0EOCLqJqnpC7e4=PPtA@mail.gmail.com>
To: Andrew Chow <lists@achow101.com>, 
 Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>
Content-Type: multipart/alternative; boundary="000000000000f02028060995a236"
X-Mailman-Approved-At: Tue, 07 Nov 2023 20:16:34 +0000
Subject: Re: [bitcoin-dev] Future of the bitcoin-dev mailing list
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Tue, 07 Nov 2023 20:15:55 -0000

--000000000000f02028060995a236
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Hi Andrew,
    Thanks for the thoughtful response. I don't know that you'll find my
responses satisfactory (particularly around moderation), but there are at
least solutions to the objections. Except of course the timeline, which I
got wrong ;-) and means this would be half-baked at best by the time it's
needed.

On Tue, Nov 7, 2023 at 1:06=E2=80=AFPM Andrew Chow via bitcoin-dev <
bitcoin-dev@lists.linuxfoundation.org> wrote:

> Hi Dan,
>
> I don't think nostr would be a suitable replacement for the mailing
> list, although this opinion is biased by the fact that I do not use
> nostr and find it to be uninteresting.
>

I felt that way for a long time. I still have a number of reservations
about it technically, but I'm increasingly impressed, though not for
reasons relevant to the discussion.


>  From my limited understanding of how nostr works, it's not clear to me
> how a distributed system that uses message broadcast would work in the
> same way as a mailing list. How would people "subscribe"?


This is already accomplished by existing apps in various ways. There are
multiple options, from using labels, or topic tags (
https://github.com/nostr-protocol/nips/tree/master#standardized-tags ) (my
preference) or the moderated community approach (see below on moderation)


> How would
> archives be searched or otherwise be available to people who are not on
> nostr?


Dumb web portals with a familiar interface, existing nostr apps are
available as web clients in the interim.


> How do you distinguish and filter between legitimate dev posts
> intended for discussion and random crap and shitposting as shows up on
> social media?
>

I lean strongly towards the topic tag or label approach to constructing the
list, which means anyone can post "to the list". Moderation would be
applied client side like all nostr clients already do. This is where PoW (
https://github.com/nostr-protocol/nips/blob/master/13.md ) , and/or
web-of-trust and labeling (
https://github.com/nostr-protocol/nips/blob/master/32.md ) come in.

Moderation comes "for free" in the moderated communities model (
https://github.com/nostr-protocol/nips/blob/master/72.md ) Note that this
approach creates exactly the same moderation burden as the list team
already shoulders, and is overall less desirable imho, but it provides the
same level of control the current list does.


> I also don't think that long form text on nostr (or any similar
> platform) can sufficiently replace email. None of these things seem to
> contain a way to have a separate subject line as email does.


"Subject tag" ( https://github.com/nostr-protocol/nips/blob/master/14.md )


> Subjects
> are immensely important for me as it provides a quick and easy way to
> filter out things I don't care about reading. I don't want to have read
> something in before I can decide that I don't care about reading it.
>
> In general, I strongly prefer email, or a platform that has email as a
> first class user interface, over platforms such as nostr, matrix, or web
> forums. Email is universal - everyone has one and everyone knows how it
> works. It dramatically lowers the barrier of entry.


I think you'd be surprised just how low the barrier to entry in nostr is.
You can navigate to the website of any number of nostr apps and click
"generate key", but your point about the universality of email is well
taken. I think an email bridge would be an essential part of this system.
An email bridge would only be less than first-class because email is not as
rich as nostr* , from the email-user's perspective it could be no worse
than using an existing list server. FWIW I also strongly prefer email over
any web forum.

* Unless you want to go wild with non-standard headers


> Having to make an
> account somewhere or download some specific client in order to
> participate will simply result in only the most dedicated participating.
>

I actually think the barrier to entry is exceedingly low, which is part of
why we have concern about the spam problem.


> Development in open source must be an open process and the barriers to
> entry should be low.
>
> Lastly, IIRC the plan is to shut down the list by the end of this year.
> Any solution that requires custom software and bridges to be created are
> not going to be viable in this time frame.
>

I have to admit I misread the OP as shutdown at the end of 2024, not 2023,
but you're right, barely 2 months is a very tight schedule. Truly
addressing the needs of the list in that time frame is unlikely to be
possible. FWIW a workable "close enough" is basically possible today, but
that is probably unsatisfying.

Certainly if I take the lead, 2024-01-01 is an impossible timeline
(especially given my other obligations), but if there is even moderate
interest (part of why I bothered to share my ramblings), I could start
working on an MVP of the bridge, and a web client for evaluation down the
road.

Cheers,
Dan


>
> Andrew
>
> On 11/07/2023 12:03 PM, Ademan via bitcoin-dev wrote:
> > Hi Bryan,
> >
> > I don't really want my first (and last?) devlist message to be a fairly
> > off-the-cuff post on this topic, but here we go anyway.
> >
> > At the risk of sounding like a nostr evangelist (I promise I'm not), I
> > want to suggest nostr as a potential replacement to the mailing list. A
> > decent chunk of software would need to be written, but none of the
> > alternatives seem particularly attractive to me. I particularly dislike
> > the idea of locking into a single siloed forum service like the
> > bitcointalk forums. I realize I may be in the minority of course.
> >
> >
> > Nostr enables the ML team to outsource all of its biggest burdens, if i=
t
> > chooses:
> >
> > - mail server blocking is N/A to nostr
> >
> > - Hosting costs are completely outsourced unless the ML team chooses to
> > host a relay.
> >
> > - Archives and web portal access can be similarly outsourced because an=
y
> > nostr archive is self-authenticating.
> >
> > - The ML team can also choose to completely outsource moderation, as
> > nostr is (more or less) permissionless by nature.
> >    I understand if there is a "blessed" communication system, the ML
> > team would probably prefer to keep it high quality. To that end there
> > are proposals for proof-of-work, and web of trust based blocklists for
> > nostr which are optional for end users. There are other options such as
> > the "moderated communities" proposal which would provide tighter contro=
l.
> >
> >
> > On the user side, the optional moderation is very attractive, allowing
> > controversial threads to exist and continue, without requiring everyone
> > to see them.
> >
> >
> > The following do not currently exist (to my knowledge) and would need t=
o
> > be implemented to meet the ML's requirements:
> >
> > - an email gateway to satisfy the bulk of existing ML subscribers
> >    This reintroduces issues with mail server blocking of course.
> > - a long-form oriented nostr client (current plain text clients could b=
e
> > used in the meantime)
> >
> > That admittedly is quite a lot of work, but the second item can be
> > deferred, and the first is not particularly technically challenging, th=
e
> > complications are all on the administration side.
> >
> > I expect some reflexive NACKs based on the immaturity of the ecosystem
> > but if we have months to prepare, I believe the core requirements can b=
e
> > solidly satisfied in time, the rest can be developed over time, and I
> > believe the advantages are worth careful consideration.
> >
> > Cheers,
> > Dan
> >
> > On Tue, Nov 7, 2023 at 9:38=E2=80=AFAM Bryan Bishop via bitcoin-dev
> > <bitcoin-dev@lists.linuxfoundation.org
> > <mailto:bitcoin-dev@lists.linuxfoundation.org>> wrote:
> >
> >     Hello,
> >
> >     We would like to request community feedback and proposals on the
> >     future of the mailing list.
> >
> >     Our current mailing list host, Linux Foundation, has indicated for
> >     years that they have wanted to stop hosting mailing lists, which
> >     would mean the bitcoin-dev mailing list would need to move somewher=
e
> >     else. We temporarily avoided that, but recently LF has informed a
> >     moderator that they will cease hosting any mailing lists later this
> >     year.
> >
> >     In this email, we will go over some of the history, options, and
> >     invite discussion ahead of the cutoff. We have some ideas but want
> >     to solicit feedback and proposals.
> >
> >     Background
> >     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> >
> >     The bitcoin-dev mailing list was originally hosted on
> >     Sourceforge.net. The bitcoin development mailing list has been a
> >     source of proposals, analysis, and developer discussion for many
> >     years in the bitcoin community, with many thousands of participants=
.
> >     Later, the mailing list was migrated to the Linux Foundation, and
> >     after that OSUOSL began to help.
> >
> >     Linux Foundation first asked us to move the mailing list in 2017.
> >     They internally attempted to migrate all LF mailing lists from
> >     mailman2 to mailman3, but ultimately gave up. There were reports of
> >     scalability issues with mailman3 for large email communities. Ours
> >     definitely qualifies as.. large.
> >
> >     2019 migration plan: LF was to turn off mailman and all lists would
> >     migrate to the paid service provider groups.io <http://groups.io>.
> >     Back then we were given accounts to try the groups.io
> >     <http://groups.io> interface and administration features. Apparentl=
y
> >     we were not the only dev community who resisted change. To our
> >     surprise LF gave us several years of reprieve by instead handing th=
e
> >     subdomain and server-side data to the non-profit OSUOSL lab who
> >     instead operated mailman2 for the past ~4 years.
> >
> >     OSUOSL has for decades been well known for providing server
> >     infrastructure for Linux and Open Source development so they were a
> >     good fit. This however became an added maintenance burden for the
> >     small non-profit with limited resources. Several members of the
> >     Bitcoin dev community contributed funding to the lab in support of
> >     their Open Source development infrastructure goals. But throwing
> >     money at the problem isn=E2=80=99t going to fix the ongoing mainten=
ance
> >     burden created by antiquated limitations of mailman2.
> >
> >     Permalinks
> >     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> >
> >     Linux Foundation has either offered or agreed to maintain archive
> >     permalinks so that content of historic importance is not lost.
> >     Fortunately for us while lists.linuxfoundation.org
> >     <http://lists.linuxfoundation.org> mailman will go down, they have
> >     agreed the read-only pipermail archives will remain online. So all
> >     old URLs will continue to remain valid. However, the moderators
> >     strongly advise that the community supplements with public-inbox
> >     instances to have canonical archive urls that are separate from any
> >     particular email software host.
> >
> >     Public-Inbox
> >     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> >
> >     https://public-inbox.org/README.html
> >     <https://public-inbox.org/README.html>
> >
> >     =E2=80=9CPublic Inbox=E2=80=9D decentralized archiving - no matter =
what mailing list
> >     server solution is used, anyone can use git to maintain their own
> >     mailing list archive and make it available to read on the web.
> >
> >     Public Inbox is a tool that you can run yourself. You can transform
> >     your mbox file and it makes it browsable and viewable online. It
> >     commits every post to a git repository. It's kind of like a
> >     decentralized mail archiving tool. Anyone can publish the mail
> >     archive to any web server they wish.
> >
> >     We should try to have one or more canonical archives that are serve=
d
> >     using public-inbox. But it doesn't matter if these are lost because
> >     anyone else can archive the mailing list in the same way and
> >     re-publish the archives.
> >
> >     These git commits can also be stamped using opentimestamps,
> >     inserting their hashes into the bitcoin blockchain.
> >
> >     LKML mailing list readers often use public-inbox's web interface,
> >     and they use the reply-to headers to populate their mail client and
> >     reply to threads of interest. This allows their reply to be properl=
y
> >     threaded even if they were not a previous subscriber to that mailin=
g
> >     list to receive the headers.
> >
> >     public-inbox makes it so that it doesn't really matter where the
> >     list is hosted, as pertaining to reading the mailing list. There is
> >     still a disruption if the mailing list goes away, but the archives
> >     live on and then people can post elsewhere. The archive gets
> >     disconnected from the mailing list host in terms of posting. We
> >     could have a few canonical URLs for the hosts, separate from the
> >     mailing list server.
> >
> >     mailman problems
> >     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> >
> >     Over the years we have identified a number of problems with mailman=
2
> >     especially as it pertains to content moderation. There are presentl=
y
> >     a handful of different moderators, but mailman2 only has a single
> >     password for logging into the email management interface. There are
> >     no moderator audit logs to see which user (there is no concept of
> >     different users) acted on an email. There is no way to mark an emai=
l
> >     as being investigated by one or more of the moderators. Sometimes,
> >     while investigating the veracity of an email, another moderator
> >     would come in and approve a suspect email by accident.
> >
> >     Anti spam has been an issue for the moderators. It's relentless.
> >     Without access to the underlying server, it has been difficult to
> >     fight spam. There is some support for filters in mailman2 but it's
> >     not great.
> >
> >     100% active moderation and approval of every email is unsustainable
> >     for volunteer moderators. A system that requires moderation is a
> >     heavy burden on the moderators and it slows down overall
> >     communication and productivity. There's lots of problems with this.
> >     Also, moderators can be blamed when they are merely slow while they
> >     are not actually censoring.
> >
> >     Rejection emails can optionally be sent to
> >     bitcoin-dev-moderation@lists.ozlabs.org
> >     <mailto:bitcoin-dev-moderation@lists.ozlabs.org> but this is an
> >     option that a moderator has to remember to type in each time.
> >
> >     Not to mention numerous bugs and vulnerabilities that have
> >     accumulated over the years for relatively unmaintained software.
> >     (Not disclosed here)
> >
> >     Requirements and considerations
> >     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D
> >
> >     Looking towards the future, there are a number of properties that
> >     seem to be important for the bitcoin-dev mailing list community.
> >     First, it is important that backups of the entire archive should be
> >     easy for the public to copy or verify so that the system can be
> >     brought up elsewhere if necessary.
> >
> >     Second, there seems to be demand for both an email threading
> >     interface (using mailing list software) as well as web-accessible
> >     interfaces (such as forum software). There seems to be very few
> >     options that cater to both email and web. Often, in forum software,
> >     email support is limited to email notifications and there is limite=
d
> >     if any support for email user participation.
> >
> >     Third, there should be better support for moderator tools and
> >     management of the mailing list. See above for complaints about
> >     problems with the mailman2 system.
> >
> >     Burdens of running your own mailing list and email server
> >     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> >
> >     If you have never operated your own MTA you have no idea how
> >     difficult it is to keep secure and functional in the face of
> >     numerous challenges to deliverability. Anti-spam filtering is
> >     essential to prevent forwarding spam. The moment you forward even a
> >     single spam message you run the risk of the server IP address being
> >     added to blacklists.
> >
> >     The problem of spam filtering is so bad that most IP addresses are
> >     presumed guilty even if they have no prior spam history, such as if
> >     their network or subnetwork had spam issues in the past.
> >
> >     Even if you put unlimited time into managing your own email server,
> >     other people may not accept your email. Or you make one mistake, an=
d
> >     then you get into permanent blacklists and it's hard to remove. The
> >     spam problem is so bad that most IPs are automatically on a
> >     guilty-until-proven-innocent blacklist.
> >
> >     Often there is nothing you can do to get server IP addresses remove=
d
> >     from spam blacklists or from "bad reputation" lists.
> >
> >     Ironically, hashcash-style proof-of-work stamps to prevent spam are
> >     an appealing solution but not widely used in this community. Or
> >     anywhere.
> >
> >     Infinite rejection or forwarding loops happen. They often need to b=
e
> >     detected through vigilance and require manual sysadmin intervention
> >     to solve.
> >
> >     Bitcoin's dev lists being hosted alongside other Open Source
> >     projects was previously protective. If that mailing list server
> >     became blacklisted there were a lot of other people who would notic=
e
> >     and complain. If we run a Bitcoin-specific mail server we are on ou=
r
> >     own. 100% of the administrative burden falls upon our own people.
> >     There is also nothing we can do if some unknown admin decides they
> >     don't like us.
> >
> >     Options
> >     =3D=3D=3D=3D=3D=3D=3D
> >
> >     Web forums are an interesting option, but often don't have good
> >     email user integration. At most you can usually hope for email
> >     notifications and an ability to reply by email. It changes the mode=
l
> >     of the community from push (email) to pull (logging into a forum to
> >     read). RSS feeds can help a little bit.
> >
> >     Many other projects have moved from mailing lists to forums (eg
> >     https://discuss.python.org/ <https://discuss.python.org/> =E2=80=93=
 see
> >     https://lwn.net/Articles/901744/ <https://lwn.net/Articles/901744/>
> >     ; or https://ethresear.ch/ <https://ethresear.ch/>), which seem
> >     easier to maintain and moderate, and can have lots of advanced
> >     features beyond plaintext, maybe-threading and maybe-HTML-markup.
> >
> >     Who would host the forum? Would there be agreement around which
> >     forum software to use or which forum host? What about
> >     bitcointalk.org <http://bitcointalk.org> or delvingbitcoin.org
> >     <http://delvingbitcoin.org>? There are many options available. Mayb=
e
> >     what we actually want isn=E2=80=99t so much a discussion forum, as =
an 'arxiv
> >     of our own' where anons can post BIP drafts and the like?
> >
> >     Given the problems with mailman2, and the decline of email
> >     communities in general, it seems that moving to mailman3 would not
> >     be a viable long-term option. This leaves us with Google Groups or
> >     groups.io <http://groups.io> as two remaining options.
> >
> >     groups.io <http://groups.io> is an interesting option: they are a
> >     paid service that implements email communities along with online we=
b
> >     forum support. However, their public changelog indicates it has bee=
n
> >     a few years since their last public change. They might be a smaller
> >     company and it is unclear how long they will be around or if this
> >     would be the right fit for hosting sometimes contentious bitcoin
> >     development discussions...
> >
> >     Google Groups is another interesting option, and comes with
> >     different tradeoffs. It's the lowest effort to maintain option, and
> >     has both an email interface and web forum interface. Users can
> >     choose which mode they want to interact with.
> >
> >     For the Google Groups web interface, you can use it with a non-gmai=
l
> >     account, but you must create a Google Account which is free to do.
> >     it does not require any personal information to do so. This also
> >     allows you to add 2FA. Non-gmail non-google users are able to
> >     subscribe and post email from their non-gmail non-google email
> >     accounts. Tor seems to work for the web interface.
> >
> >     Will Google shut it down, will they cut us off, will they shut down
> >     non-google users? The same problem exists with other third-party
> hosts.
> >
> >     The moderation capabilities for Google Groups and groups.io
> >     <http://groups.io> seem to be comparable. It seems more likely that
> >     Google Groups will be able to handle email delivery issues far
> >     better than a small resource-constrained operation like groups.io
> >     <http://groups.io>. ((During feedback for this draft, luke-jr
> >     indicates that Google Workspaces has been known to use blacklisted
> >     IPs for business email!))
> >
> >     On the other hand, groups.io <http://groups.io> is a paid service
> >     and you get what you pay for... hopefully?
> >
> >     Finally, another option is to do literally nothing. It's less work
> >     overall. Users can switch to forums or other websites, or private
> >     one-on-one communication. It would remove a point of
> >     semi-centralization from the bitcoin ecosystem. It would hasten
> >     ossification, but on the other hand it would hasten ossification an=
d
> >     this could be a negative too. Moderators would be less of a target.
> >
> >     Unfortunately, by doing nothing, there would be no more widely used
> >     group email communication system between bitcoin developers.
> >     Developers become less coordinated, mayhem and chaos as people go t=
o
> >     different communication platforms, a divided community is more
> >     vulnerable, etc. BIP1 and BIP2 would need to be revised for other
> >     venues.
> >
> >     The main categories of what to move to are: web forums, mailing
> >     lists, and hybrids of those two options. Most everything is either
> >     self-hosted or you pay someone else to host it. It's kind of the
> >     same problem though. It largely depends on how good is the software
> >     and unfortunately running your own MTA that forwards mail is not a
> >     good option.
> >
> >     Going forward
> >     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> >
> >     We'd like to invite feedback and proposals from the community, and
> >     see what options are available. One potential option is a migration
> >     to Google Groups, but we're open to ideas at this point. We
> >     apologize for any inconvenience this disruption has caused.
> >
> >
> >     Bitcoin-dev mailing list moderation team
> >
> >     Bryan Bishop
> >     Ruben Somsen
> >     Warren Togami
> >     various others.
> >
> >     --
> >     - Bryan
> >     https://twitter.com/kanzure <https://twitter.com/kanzure>
> >     _______________________________________________
> >     bitcoin-dev mailing list
> >     bitcoin-dev@lists.linuxfoundation.org
> >     <mailto:bitcoin-dev@lists.linuxfoundation.org>
> >     https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
> >     <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>
> >
>
> _______________________________________________
> bitcoin-dev mailing list
> bitcoin-dev@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>

--000000000000f02028060995a236
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div dir=3D"ltr"><div>Hi Andrew,</div><div>=C2=A0=C2=A0=C2=
=A0 Thanks for the thoughtful response. I don&#39;t know that you&#39;ll fi=
nd my responses satisfactory (particularly around moderation), but there ar=
e at least solutions to the objections. Except of course the timeline, whic=
h I got wrong ;-) and means this would be half-baked at best by the time it=
&#39;s needed.<br></div></div><br><div class=3D"gmail_quote"><div dir=3D"lt=
r" class=3D"gmail_attr">On Tue, Nov 7, 2023 at 1:06=E2=80=AFPM Andrew Chow =
via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org=
">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote:<br></div><blockquote=
 class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px so=
lid rgb(204,204,204);padding-left:1ex">Hi Dan,<br>
<br>
I don&#39;t think nostr would be a suitable replacement for the mailing <br=
>
list, although this opinion is biased by the fact that I do not use <br>
nostr and find it to be uninteresting.<br></blockquote><div><br></div><div>=
I felt that way for a long time. I still have a number of reservations abou=
t it technically, but I&#39;m increasingly impressed, though not for reason=
s relevant to the discussion.<br></div><div>=C2=A0<br></div><blockquote cla=
ss=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid =
rgb(204,204,204);padding-left:1ex">
=C2=A0From my limited understanding of how nostr works, it&#39;s not clear =
to me <br>
how a distributed system that uses message broadcast would work in the <br>
same way as a mailing list. How would people &quot;subscribe&quot;?</blockq=
uote><div><br></div><div>This is already accomplished by existing apps in v=
arious ways. There are multiple options, from using labels, or topic tags (=
 <a href=3D"https://github.com/nostr-protocol/nips/tree/master#standardized=
-tags">https://github.com/nostr-protocol/nips/tree/master#standardized-tags=
</a> )  (my preference) or the moderated community approach (see below on m=
oderation)<br></div><div>=C2=A0</div><blockquote class=3D"gmail_quote" styl=
e=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);paddin=
g-left:1ex">How would <br>
archives be searched or otherwise be available to people who are not on <br=
>
nostr?</blockquote><div><br></div><div>Dumb web portals with a familiar int=
erface, existing nostr apps are available as web clients in the interim.<br=
></div><div>=C2=A0</div><blockquote class=3D"gmail_quote" style=3D"margin:0=
px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">H=
ow do you distinguish and filter between legitimate dev posts <br>
intended for discussion and random crap and shitposting as shows up on <br>
social media?<br></blockquote><br></div><div class=3D"gmail_quote">I lean s=
trongly towards the topic tag or label approach to constructing the list, w=
hich means anyone can post &quot;to the list&quot;. Moderation would be app=
lied client side like all nostr clients already do. This is where PoW ( <a =
href=3D"https://github.com/nostr-protocol/nips/blob/master/13.md">https://g=
ithub.com/nostr-protocol/nips/blob/master/13.md</a> ) , and/or web-of-trust=
 and labeling ( <a href=3D"https://github.com/nostr-protocol/nips/blob/mast=
er/32.md">https://github.com/nostr-protocol/nips/blob/master/32.md</a> ) co=
me in.<br><br>Moderation comes &quot;for free&quot; in the moderated commun=
ities model ( <a href=3D"https://github.com/nostr-protocol/nips/blob/master=
/72.md">https://github.com/nostr-protocol/nips/blob/master/72.md</a> ) Note=
 that this approach creates exactly the same moderation burden as the list =
team already shoulders, and is overall less desirable imho, but it provides=
 the same level of control the current list does.<br></div><div class=3D"gm=
ail_quote"><div>=C2=A0</div><blockquote class=3D"gmail_quote" style=3D"marg=
in:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1e=
x">
I also don&#39;t think that long form text on nostr (or any similar <br>
platform) can sufficiently replace email. None of these things seem to <br>
contain a way to have a separate subject line as email does.</blockquote><d=
iv><br></div><div>&quot;Subject tag&quot; ( <a href=3D"https://github.com/n=
ostr-protocol/nips/blob/master/14.md">https://github.com/nostr-protocol/nip=
s/blob/master/14.md</a> )<br></div><div>=C2=A0</div><blockquote class=3D"gm=
ail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,=
204,204);padding-left:1ex">Subjects <br>
are immensely important for me as it provides a quick and easy way to <br>
filter out things I don&#39;t care about reading. I don&#39;t want to have =
read <br>
something in before I can decide that I don&#39;t care about reading it.<br=
>
<br>
In general, I strongly prefer email, or a platform that has email as a <br>
first class user interface, over platforms such as nostr, matrix, or web <b=
r>
forums. Email is universal - everyone has one and everyone knows how it <br=
>
works. It dramatically lowers the barrier of entry.</blockquote><div><br></=
div><div>I think you&#39;d be surprised just how low the barrier to entry i=
n nostr is. You can navigate to the website of any number of nostr apps and=
 click &quot;generate key&quot;, but your point about the universality of e=
mail is well taken. I think an email bridge would be an essential part of t=
his system. An email bridge would only be less than first-class because ema=
il is not as rich as nostr* , from the email-user&#39;s perspective it coul=
d be no worse than using an existing list server. FWIW I also strongly pref=
er email over any web forum.<br><br></div><div>* Unless you want to go wild=
 with non-standard headers<br></div><div>=C2=A0</div><blockquote class=3D"g=
mail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204=
,204,204);padding-left:1ex">Having to make an <br>
account somewhere or download some specific client in order to <br>
participate will simply result in only the most dedicated participating.<br=
></blockquote><div><br></div><div>I actually think the barrier to entry is =
exceedingly low, which is part of why we have concern about the spam proble=
m.<br></div><div>=C2=A0</div><blockquote class=3D"gmail_quote" style=3D"mar=
gin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1=
ex">
Development in open source must be an open process and the barriers to <br>
entry should be low.<br><br></blockquote><blockquote class=3D"gmail_quote" =
style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);pa=
dding-left:1ex">
Lastly, IIRC the plan is to shut down the list by the end of this year. <br=
>
Any solution that requires custom software and bridges to be created are <b=
r>
not going to be viable in this time frame.<br></blockquote><div><br></div><=
div>I have to admit I misread the OP as shutdown at the end of 2024, not 20=
23, but you&#39;re right, barely 2 months is a very tight schedule. Truly a=
ddressing the needs of the list in that time frame is unlikely to be possib=
le. FWIW a workable &quot;close enough&quot; is basically possible today, b=
ut that is probably unsatisfying.<br><br></div><div>Certainly if I take the=
 lead, 2024-01-01 is an impossible timeline (especially given my other obli=
gations), but if there is even moderate interest (part of why I bothered to=
 share my ramblings), I could start working on an MVP of the bridge, and a =
web client for evaluation down the road.</div><div><br></div><div>Cheers,</=
div><div>Dan<br></div><div>=C2=A0</div><blockquote class=3D"gmail_quote" st=
yle=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padd=
ing-left:1ex">
<br>
Andrew<br>
<br>
On 11/07/2023 12:03 PM, Ademan via bitcoin-dev wrote:<br>
&gt; Hi Bryan,<br>
&gt; <br>
&gt; I don&#39;t really want my first (and last?) devlist message to be a f=
airly <br>
&gt; off-the-cuff post on this topic, but here we go anyway.<br>
&gt; <br>
&gt; At the risk of sounding like a nostr evangelist (I promise I&#39;m not=
), I <br>
&gt; want to suggest nostr as a potential replacement to the mailing list. =
A <br>
&gt; decent chunk of software would need to be written, but none of the <br=
>
&gt; alternatives seem particularly attractive to me. I particularly dislik=
e <br>
&gt; the idea of locking into a single siloed forum service like the <br>
&gt; bitcointalk forums. I realize I may be in the minority of course.<br>
&gt; <br>
&gt; <br>
&gt; Nostr enables the ML team to outsource all of its biggest burdens, if =
it <br>
&gt; chooses:<br>
&gt; <br>
&gt; - mail server blocking is N/A to nostr<br>
&gt; <br>
&gt; - Hosting costs are completely outsourced unless the ML team chooses t=
o <br>
&gt; host a relay.<br>
&gt; <br>
&gt; - Archives and web portal access can be similarly outsourced because a=
ny <br>
&gt; nostr archive is self-authenticating.<br>
&gt; <br>
&gt; - The ML team can also choose to completely outsource moderation, as <=
br>
&gt; nostr is (more or less) permissionless by nature.<br>
&gt;=C2=A0 =C2=A0 I understand if there is a &quot;blessed&quot; communicat=
ion system, the ML <br>
&gt; team would probably prefer to keep it high quality. To that end there =
<br>
&gt; are proposals for proof-of-work, and web of trust based blocklists for=
 <br>
&gt; nostr which are optional for end users. There are other options such a=
s <br>
&gt; the &quot;moderated communities&quot; proposal which would provide tig=
hter control.<br>
&gt; <br>
&gt; <br>
&gt; On the user side, the optional moderation is very attractive, allowing=
 <br>
&gt; controversial threads to exist and continue, without requiring everyon=
e <br>
&gt; to see them.<br>
&gt; <br>
&gt; <br>
&gt; The following do not currently exist (to my knowledge) and would need =
to <br>
&gt; be implemented to meet the ML&#39;s requirements:<br>
&gt; <br>
&gt; - an email gateway to satisfy the bulk of existing ML subscribers<br>
&gt;=C2=A0 =C2=A0 This reintroduces issues with mail server blocking of cou=
rse.<br>
&gt; - a long-form oriented nostr client (current plain text clients could =
be <br>
&gt; used in the meantime)<br>
&gt; <br>
&gt; That admittedly is quite a lot of work, but the second item can be <br=
>
&gt; deferred, and the first is not particularly technically challenging, t=
he <br>
&gt; complications are all on the administration side.<br>
&gt; <br>
&gt; I expect some reflexive NACKs based on the immaturity of the ecosystem=
 <br>
&gt; but if we have months to prepare, I believe the core requirements can =
be <br>
&gt; solidly satisfied in time, the rest can be developed over time, and I =
<br>
&gt; believe the advantages are worth careful consideration.<br>
&gt; <br>
&gt; Cheers,<br>
&gt; Dan<br>
&gt; <br>
&gt; On Tue, Nov 7, 2023 at 9:38=E2=80=AFAM Bryan Bishop via bitcoin-dev <b=
r>
&gt; &lt;<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D=
"_blank">bitcoin-dev@lists.linuxfoundation.org</a> <br>
&gt; &lt;mailto:<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" ta=
rget=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt;&gt; wrote:<br=
>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Hello,<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0We would like to request community=C2=A0feedback an=
d proposals on the<br>
&gt;=C2=A0 =C2=A0 =C2=A0future of the mailing list.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Our current mailing list host, Linux Foundation, ha=
s indicated for<br>
&gt;=C2=A0 =C2=A0 =C2=A0years that they have wanted to stop hosting mailing=
 lists, which<br>
&gt;=C2=A0 =C2=A0 =C2=A0would mean the bitcoin-dev mailing list would need =
to move somewhere<br>
&gt;=C2=A0 =C2=A0 =C2=A0else. We temporarily avoided that, but recently LF =
has informed a<br>
&gt;=C2=A0 =C2=A0 =C2=A0moderator that they will cease hosting any mailing =
lists later this<br>
&gt;=C2=A0 =C2=A0 =C2=A0year.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0In this email, we will go over some of the history,=
 options, and<br>
&gt;=C2=A0 =C2=A0 =C2=A0invite discussion ahead of the cutoff. We have some=
 ideas but want<br>
&gt;=C2=A0 =C2=A0 =C2=A0to solicit feedback and proposals.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Background<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0The bitcoin-dev mailing list was originally hosted =
on<br>
&gt;=C2=A0 =C2=A0 =C2=A0Sourceforge.net. The bitcoin development mailing li=
st has been a<br>
&gt;=C2=A0 =C2=A0 =C2=A0source of proposals, analysis, and developer discus=
sion for many<br>
&gt;=C2=A0 =C2=A0 =C2=A0years in the bitcoin community, with many thousands=
 of participants.<br>
&gt;=C2=A0 =C2=A0 =C2=A0Later, the mailing list was migrated to the Linux F=
oundation, and<br>
&gt;=C2=A0 =C2=A0 =C2=A0after that OSUOSL began to help.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Linux Foundation first asked us to move the mailing=
 list in 2017.<br>
&gt;=C2=A0 =C2=A0 =C2=A0They internally attempted to migrate all LF mailing=
 lists from<br>
&gt;=C2=A0 =C2=A0 =C2=A0mailman2 to mailman3, but ultimately gave up. There=
 were reports of<br>
&gt;=C2=A0 =C2=A0 =C2=A0scalability issues with mailman3 for large email co=
mmunities. Ours<br>
&gt;=C2=A0 =C2=A0 =C2=A0definitely qualifies as.. large.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A02019 migration plan: LF was to turn off mailman and=
 all lists would<br>
&gt;=C2=A0 =C2=A0 =C2=A0migrate to the paid service provider <a href=3D"htt=
p://groups.io" rel=3D"noreferrer" target=3D"_blank">groups.io</a> &lt;<a hr=
ef=3D"http://groups.io" rel=3D"noreferrer" target=3D"_blank">http://groups.=
io</a>&gt;.<br>
&gt;=C2=A0 =C2=A0 =C2=A0Back then we were given accounts to try the <a href=
=3D"http://groups.io" rel=3D"noreferrer" target=3D"_blank">groups.io</a><br=
>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"http://groups.io" rel=3D"noreferrer"=
 target=3D"_blank">http://groups.io</a>&gt; interface and administration fe=
atures. Apparently<br>
&gt;=C2=A0 =C2=A0 =C2=A0we were not the only dev community who resisted cha=
nge. To our<br>
&gt;=C2=A0 =C2=A0 =C2=A0surprise LF gave us several years of reprieve by in=
stead handing the<br>
&gt;=C2=A0 =C2=A0 =C2=A0subdomain and server-side data to the non-profit OS=
UOSL lab who<br>
&gt;=C2=A0 =C2=A0 =C2=A0instead operated mailman2 for the past ~4 years.<br=
>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0OSUOSL has for decades been well known for providin=
g server<br>
&gt;=C2=A0 =C2=A0 =C2=A0infrastructure for Linux and Open Source developmen=
t so they were a<br>
&gt;=C2=A0 =C2=A0 =C2=A0good fit. This however became an added maintenance =
burden for the<br>
&gt;=C2=A0 =C2=A0 =C2=A0small non-profit with limited resources. Several me=
mbers of the<br>
&gt;=C2=A0 =C2=A0 =C2=A0Bitcoin dev community contributed funding to the la=
b in support of<br>
&gt;=C2=A0 =C2=A0 =C2=A0their Open Source development infrastructure goals.=
 But throwing<br>
&gt;=C2=A0 =C2=A0 =C2=A0money at the problem isn=E2=80=99t going to fix the=
 ongoing maintenance<br>
&gt;=C2=A0 =C2=A0 =C2=A0burden created by antiquated limitations of mailman=
2.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Permalinks<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Linux Foundation has either offered or agreed to ma=
intain archive<br>
&gt;=C2=A0 =C2=A0 =C2=A0permalinks so that content of historic importance i=
s not lost.<br>
&gt;=C2=A0 =C2=A0 =C2=A0Fortunately for us while <a href=3D"http://lists.li=
nuxfoundation.org" rel=3D"noreferrer" target=3D"_blank">lists.linuxfoundati=
on.org</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"http://lists.linuxfoundation.org" re=
l=3D"noreferrer" target=3D"_blank">http://lists.linuxfoundation.org</a>&gt;=
 mailman will go down, they have<br>
&gt;=C2=A0 =C2=A0 =C2=A0agreed the read-only pipermail archives will remain=
 online. So all<br>
&gt;=C2=A0 =C2=A0 =C2=A0old URLs will continue to remain valid. However, th=
e moderators<br>
&gt;=C2=A0 =C2=A0 =C2=A0strongly advise that the community supplements with=
 public-inbox<br>
&gt;=C2=A0 =C2=A0 =C2=A0instances to have canonical archive urls that are s=
eparate from any<br>
&gt;=C2=A0 =C2=A0 =C2=A0particular email software host.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Public-Inbox<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"https://public-inbox.org/README.html" re=
l=3D"noreferrer" target=3D"_blank">https://public-inbox.org/README.html</a>=
<br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://public-inbox.org/README.html=
" rel=3D"noreferrer" target=3D"_blank">https://public-inbox.org/README.html=
</a>&gt;<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0=E2=80=9CPublic Inbox=E2=80=9D decentralized archiv=
ing - no matter what mailing list<br>
&gt;=C2=A0 =C2=A0 =C2=A0server solution is used, anyone can use git to main=
tain their own<br>
&gt;=C2=A0 =C2=A0 =C2=A0mailing list archive and make it available to read =
on the web.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Public Inbox is a tool that you can run yourself. Y=
ou can transform<br>
&gt;=C2=A0 =C2=A0 =C2=A0your mbox file and it makes it browsable and viewab=
le online. It<br>
&gt;=C2=A0 =C2=A0 =C2=A0commits every post to a git repository. It&#39;s ki=
nd of like a<br>
&gt;=C2=A0 =C2=A0 =C2=A0decentralized mail archiving tool. Anyone can publi=
sh the mail<br>
&gt;=C2=A0 =C2=A0 =C2=A0archive to any web server they wish.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0We should try to have one or more canonical archive=
s that are served<br>
&gt;=C2=A0 =C2=A0 =C2=A0using public-inbox. But it doesn&#39;t matter if th=
ese are lost because<br>
&gt;=C2=A0 =C2=A0 =C2=A0anyone else can archive the mailing list in the sam=
e way and<br>
&gt;=C2=A0 =C2=A0 =C2=A0re-publish the archives.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0These git commits can also be stamped using opentim=
estamps,<br>
&gt;=C2=A0 =C2=A0 =C2=A0inserting their hashes into the bitcoin blockchain.=
<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0LKML mailing list readers often use public-inbox&#3=
9;s web interface,<br>
&gt;=C2=A0 =C2=A0 =C2=A0and they use the reply-to headers to populate their=
 mail client and<br>
&gt;=C2=A0 =C2=A0 =C2=A0reply to threads of interest. This allows their rep=
ly to be properly<br>
&gt;=C2=A0 =C2=A0 =C2=A0threaded even if they were not a previous subscribe=
r to that mailing<br>
&gt;=C2=A0 =C2=A0 =C2=A0list to receive the headers.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0public-inbox makes it so that it doesn&#39;t really=
 matter where the<br>
&gt;=C2=A0 =C2=A0 =C2=A0list is hosted, as pertaining to reading the mailin=
g list. There is<br>
&gt;=C2=A0 =C2=A0 =C2=A0still a disruption if the mailing list goes away, b=
ut the archives<br>
&gt;=C2=A0 =C2=A0 =C2=A0live on and then people can post elsewhere. The arc=
hive gets<br>
&gt;=C2=A0 =C2=A0 =C2=A0disconnected from the mailing list host in terms of=
 posting. We<br>
&gt;=C2=A0 =C2=A0 =C2=A0could have a few canonical URLs for the hosts, sepa=
rate from the<br>
&gt;=C2=A0 =C2=A0 =C2=A0mailing list server.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0mailman problems<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br=
>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Over the years we have identified a number of probl=
ems with mailman2<br>
&gt;=C2=A0 =C2=A0 =C2=A0especially as it pertains to content moderation. Th=
ere are presently<br>
&gt;=C2=A0 =C2=A0 =C2=A0a handful of different moderators, but mailman2 onl=
y has a single<br>
&gt;=C2=A0 =C2=A0 =C2=A0password for logging into the email management inte=
rface. There are<br>
&gt;=C2=A0 =C2=A0 =C2=A0no moderator audit logs to see which user (there is=
 no concept of<br>
&gt;=C2=A0 =C2=A0 =C2=A0different users) acted on an email. There is no way=
 to mark an email<br>
&gt;=C2=A0 =C2=A0 =C2=A0as being investigated by one or more of the moderat=
ors. Sometimes,<br>
&gt;=C2=A0 =C2=A0 =C2=A0while investigating the veracity of an email, anoth=
er moderator<br>
&gt;=C2=A0 =C2=A0 =C2=A0would come in and approve a suspect email by accide=
nt.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Anti spam has been an issue for the moderators. It&=
#39;s relentless.<br>
&gt;=C2=A0 =C2=A0 =C2=A0Without access to the underlying server, it has bee=
n difficult to<br>
&gt;=C2=A0 =C2=A0 =C2=A0fight spam. There is some support for filters in ma=
ilman2 but it&#39;s<br>
&gt;=C2=A0 =C2=A0 =C2=A0not great.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0100% active moderation and approval of every email =
is unsustainable<br>
&gt;=C2=A0 =C2=A0 =C2=A0for volunteer moderators. A system that requires mo=
deration is a<br>
&gt;=C2=A0 =C2=A0 =C2=A0heavy burden on the moderators and it slows down ov=
erall<br>
&gt;=C2=A0 =C2=A0 =C2=A0communication and productivity. There&#39;s lots of=
 problems with this.<br>
&gt;=C2=A0 =C2=A0 =C2=A0Also, moderators can be blamed when they are merely=
 slow while they<br>
&gt;=C2=A0 =C2=A0 =C2=A0are not actually censoring.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Rejection emails can optionally be sent to<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"mailto:bitcoin-dev-moderation@lists.ozla=
bs.org" target=3D"_blank">bitcoin-dev-moderation@lists.ozlabs.org</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;mailto:<a href=3D"mailto:bitcoin-dev-moderation=
@lists.ozlabs.org" target=3D"_blank">bitcoin-dev-moderation@lists.ozlabs.or=
g</a>&gt; but this is an<br>
&gt;=C2=A0 =C2=A0 =C2=A0option that a moderator has to remember to type in =
each time.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Not to mention numerous bugs and vulnerabilities th=
at have<br>
&gt;=C2=A0 =C2=A0 =C2=A0accumulated over the years for relatively unmaintai=
ned software.<br>
&gt;=C2=A0 =C2=A0 =C2=A0(Not disclosed here)<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Requirements and considerations<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Looking towards the future, there are a number of p=
roperties that<br>
&gt;=C2=A0 =C2=A0 =C2=A0seem to be important for the bitcoin-dev mailing li=
st community.<br>
&gt;=C2=A0 =C2=A0 =C2=A0First, it is important that backups of the entire a=
rchive should be<br>
&gt;=C2=A0 =C2=A0 =C2=A0easy for the public to copy or verify so that the s=
ystem can be<br>
&gt;=C2=A0 =C2=A0 =C2=A0brought up elsewhere if necessary.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Second, there seems to be demand for both an email =
threading<br>
&gt;=C2=A0 =C2=A0 =C2=A0interface (using mailing list software) as well as =
web-accessible<br>
&gt;=C2=A0 =C2=A0 =C2=A0interfaces (such as forum software). There seems to=
 be very few<br>
&gt;=C2=A0 =C2=A0 =C2=A0options that cater to both email and web. Often, in=
 forum software,<br>
&gt;=C2=A0 =C2=A0 =C2=A0email support is limited to email notifications and=
 there is limited<br>
&gt;=C2=A0 =C2=A0 =C2=A0if any support for email user participation.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Third, there should be better support for moderator=
 tools and<br>
&gt;=C2=A0 =C2=A0 =C2=A0management of the mailing list. See above for compl=
aints about<br>
&gt;=C2=A0 =C2=A0 =C2=A0problems with the mailman2 system.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Burdens of running your own mailing list and email =
server<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0If you have never operated your own MTA you have no=
 idea how<br>
&gt;=C2=A0 =C2=A0 =C2=A0difficult it is to keep secure and functional in th=
e face of<br>
&gt;=C2=A0 =C2=A0 =C2=A0numerous challenges to deliverability. Anti-spam fi=
ltering is<br>
&gt;=C2=A0 =C2=A0 =C2=A0essential to prevent forwarding spam. The moment yo=
u forward even a<br>
&gt;=C2=A0 =C2=A0 =C2=A0single spam message you run the risk of the server =
IP address being<br>
&gt;=C2=A0 =C2=A0 =C2=A0added to blacklists.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0The problem of spam filtering is so bad that most I=
P addresses are<br>
&gt;=C2=A0 =C2=A0 =C2=A0presumed guilty even if they have no prior spam his=
tory, such as if<br>
&gt;=C2=A0 =C2=A0 =C2=A0their network or subnetwork had spam issues in the =
past.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Even if you put unlimited time into managing your o=
wn email server,<br>
&gt;=C2=A0 =C2=A0 =C2=A0other people may not accept your email. Or you make=
 one mistake, and<br>
&gt;=C2=A0 =C2=A0 =C2=A0then you get into permanent blacklists and it&#39;s=
 hard to remove. The<br>
&gt;=C2=A0 =C2=A0 =C2=A0spam problem is so bad that most IPs are automatica=
lly on a<br>
&gt;=C2=A0 =C2=A0 =C2=A0guilty-until-proven-innocent blacklist.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Often there is nothing you can do to get server IP =
addresses removed<br>
&gt;=C2=A0 =C2=A0 =C2=A0from spam blacklists or from &quot;bad reputation&q=
uot; lists.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Ironically, hashcash-style proof-of-work stamps to =
prevent spam are<br>
&gt;=C2=A0 =C2=A0 =C2=A0an appealing solution but not widely used in this c=
ommunity. Or<br>
&gt;=C2=A0 =C2=A0 =C2=A0anywhere.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Infinite rejection or forwarding loops happen. They=
 often need to be<br>
&gt;=C2=A0 =C2=A0 =C2=A0detected through vigilance and require manual sysad=
min intervention<br>
&gt;=C2=A0 =C2=A0 =C2=A0to solve.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Bitcoin&#39;s dev lists being hosted alongside othe=
r Open Source<br>
&gt;=C2=A0 =C2=A0 =C2=A0projects was previously protective. If that mailing=
 list server<br>
&gt;=C2=A0 =C2=A0 =C2=A0became blacklisted there were a lot of other people=
 who would notice<br>
&gt;=C2=A0 =C2=A0 =C2=A0and complain. If we run a Bitcoin-specific mail ser=
ver we are on our<br>
&gt;=C2=A0 =C2=A0 =C2=A0own. 100% of the administrative burden falls upon o=
ur own people.<br>
&gt;=C2=A0 =C2=A0 =C2=A0There is also nothing we can do if some unknown adm=
in decides they<br>
&gt;=C2=A0 =C2=A0 =C2=A0don&#39;t like us.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Options<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Web forums are an interesting option, but often don=
&#39;t have good<br>
&gt;=C2=A0 =C2=A0 =C2=A0email user integration. At most you can usually hop=
e for email<br>
&gt;=C2=A0 =C2=A0 =C2=A0notifications and an ability to reply by email. It =
changes the model<br>
&gt;=C2=A0 =C2=A0 =C2=A0of the community from push (email) to pull (logging=
 into a forum to<br>
&gt;=C2=A0 =C2=A0 =C2=A0read). RSS feeds can help a little bit.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Many other projects have moved from mailing lists t=
o forums (eg<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"https://discuss.python.org/" rel=3D"nore=
ferrer" target=3D"_blank">https://discuss.python.org/</a> &lt;<a href=3D"ht=
tps://discuss.python.org/" rel=3D"noreferrer" target=3D"_blank">https://dis=
cuss.python.org/</a>&gt; =E2=80=93 see<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"https://lwn.net/Articles/901744/" rel=3D=
"noreferrer" target=3D"_blank">https://lwn.net/Articles/901744/</a> &lt;<a =
href=3D"https://lwn.net/Articles/901744/" rel=3D"noreferrer" target=3D"_bla=
nk">https://lwn.net/Articles/901744/</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0; or <a href=3D"https://ethresear.ch/" rel=3D"noref=
errer" target=3D"_blank">https://ethresear.ch/</a> &lt;<a href=3D"https://e=
thresear.ch/" rel=3D"noreferrer" target=3D"_blank">https://ethresear.ch/</a=
>&gt;), which seem<br>
&gt;=C2=A0 =C2=A0 =C2=A0easier to maintain and moderate, and can have lots =
of advanced<br>
&gt;=C2=A0 =C2=A0 =C2=A0features beyond plaintext, maybe-threading and mayb=
e-HTML-markup.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Who would host the forum? Would there be agreement =
around which<br>
&gt;=C2=A0 =C2=A0 =C2=A0forum software to use or which forum host? What abo=
ut<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"http://bitcointalk.org" rel=3D"noreferre=
r" target=3D"_blank">bitcointalk.org</a> &lt;<a href=3D"http://bitcointalk.=
org" rel=3D"noreferrer" target=3D"_blank">http://bitcointalk.org</a>&gt; or=
 <a href=3D"http://delvingbitcoin.org" rel=3D"noreferrer" target=3D"_blank"=
>delvingbitcoin.org</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"http://delvingbitcoin.org" rel=3D"no=
referrer" target=3D"_blank">http://delvingbitcoin.org</a>&gt;? There are ma=
ny options available. Maybe<br>
&gt;=C2=A0 =C2=A0 =C2=A0what we actually want isn=E2=80=99t so much a discu=
ssion forum, as an &#39;arxiv<br>
&gt;=C2=A0 =C2=A0 =C2=A0of our own&#39; where anons can post BIP drafts and=
 the like?<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Given the problems with mailman2, and the decline o=
f email<br>
&gt;=C2=A0 =C2=A0 =C2=A0communities in general, it seems that moving to mai=
lman3 would not<br>
&gt;=C2=A0 =C2=A0 =C2=A0be a viable long-term option. This leaves us with G=
oogle Groups or<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"http://groups.io" rel=3D"noreferrer" tar=
get=3D"_blank">groups.io</a> &lt;<a href=3D"http://groups.io" rel=3D"norefe=
rrer" target=3D"_blank">http://groups.io</a>&gt; as two remaining options.<=
br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"http://groups.io" rel=3D"noreferrer" tar=
get=3D"_blank">groups.io</a> &lt;<a href=3D"http://groups.io" rel=3D"norefe=
rrer" target=3D"_blank">http://groups.io</a>&gt; is an interesting option: =
they are a<br>
&gt;=C2=A0 =C2=A0 =C2=A0paid service that implements email communities alon=
g with online web<br>
&gt;=C2=A0 =C2=A0 =C2=A0forum support. However, their public changelog indi=
cates it has been<br>
&gt;=C2=A0 =C2=A0 =C2=A0a few years since their last public change. They mi=
ght be a smaller<br>
&gt;=C2=A0 =C2=A0 =C2=A0company and it is unclear how long they will be aro=
und or if this<br>
&gt;=C2=A0 =C2=A0 =C2=A0would be the right fit for hosting sometimes conten=
tious bitcoin<br>
&gt;=C2=A0 =C2=A0 =C2=A0development discussions...<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Google Groups is another interesting option, and co=
mes with<br>
&gt;=C2=A0 =C2=A0 =C2=A0different tradeoffs. It&#39;s the lowest effort to =
maintain option, and<br>
&gt;=C2=A0 =C2=A0 =C2=A0has both an email interface and web forum interface=
. Users can<br>
&gt;=C2=A0 =C2=A0 =C2=A0choose which mode they want to interact with.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0For the Google Groups web interface, you can use it=
 with a non-gmail<br>
&gt;=C2=A0 =C2=A0 =C2=A0account, but you must create a Google Account which=
 is free to do.<br>
&gt;=C2=A0 =C2=A0 =C2=A0it does not require any personal information to do =
so. This also<br>
&gt;=C2=A0 =C2=A0 =C2=A0allows you to add 2FA. Non-gmail non-google users a=
re able to<br>
&gt;=C2=A0 =C2=A0 =C2=A0subscribe and post email from their non-gmail non-g=
oogle email<br>
&gt;=C2=A0 =C2=A0 =C2=A0accounts. Tor seems to work for the web interface.<=
br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Will Google shut it down, will they cut us off, wil=
l they shut down<br>
&gt;=C2=A0 =C2=A0 =C2=A0non-google users? The same problem exists with othe=
r third-party hosts.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0The moderation capabilities for Google Groups and <=
a href=3D"http://groups.io" rel=3D"noreferrer" target=3D"_blank">groups.io<=
/a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"http://groups.io" rel=3D"noreferrer"=
 target=3D"_blank">http://groups.io</a>&gt; seem to be comparable. It seems=
 more likely that<br>
&gt;=C2=A0 =C2=A0 =C2=A0Google Groups will be able to handle email delivery=
 issues far<br>
&gt;=C2=A0 =C2=A0 =C2=A0better than a small resource-constrained operation =
like <a href=3D"http://groups.io" rel=3D"noreferrer" target=3D"_blank">grou=
ps.io</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"http://groups.io" rel=3D"noreferrer"=
 target=3D"_blank">http://groups.io</a>&gt;. ((During feedback for this dra=
ft, luke-jr<br>
&gt;=C2=A0 =C2=A0 =C2=A0indicates that Google Workspaces has been known to =
use blacklisted<br>
&gt;=C2=A0 =C2=A0 =C2=A0IPs for business email!))<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0On the other hand, <a href=3D"http://groups.io" rel=
=3D"noreferrer" target=3D"_blank">groups.io</a> &lt;<a href=3D"http://group=
s.io" rel=3D"noreferrer" target=3D"_blank">http://groups.io</a>&gt; is a pa=
id service<br>
&gt;=C2=A0 =C2=A0 =C2=A0and you get what you pay for... hopefully?<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Finally, another option is to do literally nothing.=
 It&#39;s less work<br>
&gt;=C2=A0 =C2=A0 =C2=A0overall. Users can switch to forums or other websit=
es, or private<br>
&gt;=C2=A0 =C2=A0 =C2=A0one-on-one communication. It would remove a point o=
f<br>
&gt;=C2=A0 =C2=A0 =C2=A0semi-centralization from the bitcoin ecosystem. It =
would hasten<br>
&gt;=C2=A0 =C2=A0 =C2=A0ossification, but on the other hand it would hasten=
 ossification and<br>
&gt;=C2=A0 =C2=A0 =C2=A0this could be a negative too. Moderators would be l=
ess of a target.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Unfortunately, by doing nothing, there would be no =
more widely used<br>
&gt;=C2=A0 =C2=A0 =C2=A0group email communication system between bitcoin de=
velopers.<br>
&gt;=C2=A0 =C2=A0 =C2=A0Developers become less coordinated, mayhem and chao=
s as people go to<br>
&gt;=C2=A0 =C2=A0 =C2=A0different communication platforms, a divided commun=
ity is more<br>
&gt;=C2=A0 =C2=A0 =C2=A0vulnerable, etc. BIP1 and BIP2 would need to be rev=
ised for other<br>
&gt;=C2=A0 =C2=A0 =C2=A0venues.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0The main categories of what to move to are: web for=
ums, mailing<br>
&gt;=C2=A0 =C2=A0 =C2=A0lists, and hybrids of those two options. Most every=
thing is either<br>
&gt;=C2=A0 =C2=A0 =C2=A0self-hosted or you pay someone else to host it. It&=
#39;s kind of the<br>
&gt;=C2=A0 =C2=A0 =C2=A0same problem though. It largely depends on how good=
 is the software<br>
&gt;=C2=A0 =C2=A0 =C2=A0and unfortunately running your own MTA that forward=
s mail is not a<br>
&gt;=C2=A0 =C2=A0 =C2=A0good option.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Going forward<br>
&gt;=C2=A0 =C2=A0 =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0We&#39;d like to invite feedback and proposals from=
 the community, and<br>
&gt;=C2=A0 =C2=A0 =C2=A0see what options are available. One potential optio=
n is a migration<br>
&gt;=C2=A0 =C2=A0 =C2=A0to Google Groups, but we&#39;re open to ideas at th=
is point. We<br>
&gt;=C2=A0 =C2=A0 =C2=A0apologize for any inconvenience this disruption has=
 caused.<br>
&gt; <br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Bitcoin-dev mailing list moderation team<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0Bryan Bishop<br>
&gt;=C2=A0 =C2=A0 =C2=A0Ruben Somsen<br>
&gt;=C2=A0 =C2=A0 =C2=A0Warren Togami<br>
&gt;=C2=A0 =C2=A0 =C2=A0various others.<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0-- <br>
&gt;=C2=A0 =C2=A0 =C2=A0- Bryan<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"https://twitter.com/kanzure" rel=3D"nore=
ferrer" target=3D"_blank">https://twitter.com/kanzure</a> &lt;<a href=3D"ht=
tps://twitter.com/kanzure" rel=3D"noreferrer" target=3D"_blank">https://twi=
tter.com/kanzure</a>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0_______________________________________________<br>
&gt;=C2=A0 =C2=A0 =C2=A0bitcoin-dev mailing list<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation=
.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;mailto:<a href=3D"mailto:bitcoin-dev@lists.linu=
xfoundation.org" target=3D"_blank">bitcoin-dev@lists.linuxfoundation.org</a=
>&gt;<br>
&gt;=C2=A0 =C2=A0 =C2=A0<a href=3D"https://lists.linuxfoundation.org/mailma=
n/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank">https://lists.=
linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
&gt;=C2=A0 =C2=A0 =C2=A0&lt;<a href=3D"https://lists.linuxfoundation.org/ma=
ilman/listinfo/bitcoin-dev" rel=3D"noreferrer" target=3D"_blank">https://li=
sts.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a>&gt;<br>
&gt; <br>
<br>
_______________________________________________<br>
bitcoin-dev mailing list<br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">=
bitcoin-dev@lists.linuxfoundation.org</a><br>
<a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" =
rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mail=
man/listinfo/bitcoin-dev</a><br>
</blockquote></div></div>

--000000000000f02028060995a236--