Bläddra i källkod

Bitmessage mailing lists

Bob Mottram 11 år sedan
förälder
incheckning
7a6fb22507
1 ändrade filer med 34 tillägg och 3 borttagningar
  1. 34
    3
      beaglebone.txt

+ 34
- 3
beaglebone.txt Visa fil

3327
 -- Jono Bacon
3327
 -- Jono Bacon
3328
 #+END_VERSE
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
 #+BEGIN_SRC: bash
3335
 #+BEGIN_SRC: bash
3335
 export HOSTNAME=mydomainname.com
3336
 export HOSTNAME=mydomainname.com
3535
 
3536
 
3536
 If everything is working then this shouldn't show any problems.
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
 Direct subscribers towards:
3540
 Direct subscribers towards:
3540
 
3541
 
3541
 #+BEGIN_SRC: bash
3542
 #+BEGIN_SRC: bash
3560
 rmlist -a mymailinglistname
3561
 rmlist -a mymailinglistname
3561
 #+END_SRC
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
 ** Install Tripwire
3594
 ** Install Tripwire
3564
 
3595
 
3565
 #+BEGIN_VERSE
3596
 #+BEGIN_VERSE