Skip to content
onny edited this page Dec 21, 2014 · 5 revisions
  • [Library](wiki/Library)
    1. Usage and installation instructions
      1. Ubuntu 14.10
Install dependencies and build the project
  aptitude install golang mercurial
  mkdir ~/go/bin; export GOPATH=~/go; export PATH=$PATH:$GOPATH
  go get github.com/janimo/textsecure/
  cd ~/go/src/github.com/janimo/textsecure/cmd
  go build

Adjust the config file in `~/go/src/github.com/janimo/textsecure/cmd/.config/config.yml`, e.g. insert your phone numer:

  tel: "+49174XXX"

Now start registration on the WhisperSystem server

  ./textsecure

Input the numer you recieved on your mobile phone via SMS

  Enter verification number (without the '-')>427-741
  2014/12/21 15:59:25 Registration done

After the successfull response, close the application. To send a message, create a contact in `~/go/src/github.com/janimo/textsecure/cmd/.config/contacts.yml` and use this command:

  ./textsecure -to="Simon" -message="Secret Hello World"
Clone this wiki locally