Difference between revisions of "Bitmessage"
(add TB notes) |
m |
||
Line 1: | Line 1: | ||
== Use Thunderbird as the UI == | == Use Thunderbird as the UI == | ||
+ | Brilliant little script that sets up a basic POP3 and SMTP server on localhost to give Bitmessage an email interface that Thunderbird can connect to. This mean the messages can be organised in a local folder structure. | ||
1. set up https://bitmessage.org/wiki/API_Reference | 1. set up https://bitmessage.org/wiki/API_Reference | ||
2. https://github.com/Dokument/PyBitmessage-Daemon | 2. https://github.com/Dokument/PyBitmessage-Daemon |
Revision as of 23:17, 15 June 2013
Use Thunderbird as the UI
Brilliant little script that sets up a basic POP3 and SMTP server on localhost to give Bitmessage an email interface that Thunderbird can connect to. This mean the messages can be organised in a local folder structure. 1. set up https://bitmessage.org/wiki/API_Reference 2. https://github.com/Dokument/PyBitmessage-Daemon 3. http://github.com/Arceliar/bmwrapper Create a panel launcher, I did as follows, you can do better:
Launcher: application in terminal /home/<you>/.bm.sh
in .bm.sh:
- !/bin/sh
~/.bm1.sh & ~/.bm2.sh & ~/.bm3.sh
in .bm1.sh:
python2.7 ~/PyBitmessage/src/bitmessagemain.py
in .bm2.sh:
python2.7 ~/PyBitmessage/src/daemon.py
in .bm3.sh:
python ~/PyBitmessage/src/main.py
i just have it on another ubuntu-desktop as the window stays open (12:04:51) Louis: Whole thing will take 15 minutes to set up