ソースを参照

Bitmessage mailing lists

Bob Mottram 11 年 前
コミット
7a6fb22507
共有1 個のファイルを変更した34 個の追加3 個の削除を含む
  1. 34
    3
      beaglebone.txt

+ 34
- 3
beaglebone.txt ファイルの表示

@@ -3327,9 +3327,10 @@ If you're in a very locked down environment where access to web sites is severel
3327 3327
 -- Jono Bacon
3328 3328
 #+END_VERSE
3329 3329
 
3330
-Mailing lists are old skool but still remain as a common and easy way of communicating on the internet.  If you're running a public organisation such as an open source project or community group then you may want to set one up.
3330
+*** With Email
3331
+Email mailing lists are old skool but still remain as a common and easy way of communicating on the internet.  If you're running a public organisation such as an open source project or community group then you may want to set one up.
3331 3332
 
3332
-*** Installation
3333
+**** Installation
3333 3334
 
3334 3335
 #+BEGIN_SRC: bash
3335 3336
 export HOSTNAME=mydomainname.com
@@ -3535,7 +3536,7 @@ exim -d+route -bt mymailinglistname@$HOSTNAME
3535 3536
 
3536 3537
 If everything is working then this shouldn't show any problems.
3537 3538
 
3538
-*** Using the mailing list
3539
+**** Using the mailing list
3539 3540
 Direct subscribers towards:
3540 3541
 
3541 3542
 #+BEGIN_SRC: bash
@@ -3560,6 +3561,36 @@ To delete a mailing list:
3560 3561
 rmlist -a mymailinglistname
3561 3562
 #+END_SRC
3562 3563
 
3564
+*** With Bitmessage
3565
+On your local machine (not the BBB) you can make a private mailing list which is difficult to censor and where there is no single point of failure.  This type of mailing list is known as a "chan".
3566
+
3567
+On a Debian based system:
3568
+
3569
+#+BEGIN_SRC: bash
3570
+sudo apt-get install makepasswd
3571
+#+END_SRC
3572
+
3573
+or on an RPM based system:
3574
+
3575
+#+BEGIN_SRC: bash
3576
+sudo yum install makepasswd
3577
+#+END_SRC
3578
+
3579
+Create a name for your mailing list.  This will be a random string.
3580
+
3581
+#+BEGIN_SRC: bash
3582
+makepasswd -c 40
3583
+#+END_SRC
3584
+
3585
+Keep a note of this.
3586
+
3587
+Run the Bitmessage client and on the menu select *File/Join-Create Chan/Create new chan*
3588
+
3589
+Enter the random string which you created as the name of the mailing list.  Also take a note of the BM address which is created.
3590
+
3591
+You can hand out the random string used to generate the mailing list and its corresponding BM address to fellow members, either on paper or via [[https://en.wikipedia.org/wiki/Sneakernet][sneakernet]] or in a GPG/PGP encrypted email or via an XMPP+OTR or Friendica private message.  Once others have those two pieces of data then they will be able to join.
3592
+
3593
+The disadvantage of this type of mailing list is that it's not possible for any one participant to act as a list moderator, or in other words each participant must do their own moderation.  That's ok if the size of the group is small, but if it's larger then anyone spamming or trolling the list can make things miserable for the others.
3563 3594
 ** Install Tripwire
3564 3595
 
3565 3596
 #+BEGIN_VERSE