stark / tutanota

Tutanota is the end-to-end encrypted mail client that enables you to communicate securely with anyone.

Home Page:https://tutanota.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Tutanota logo

  Tutanota makes encryption easy  

Tutanota is the secure email service with built-in end-to-end encryption that enables you to communicate securely with anyone.

Building and running your own Tutanota (new beta) web client

You can build your own Tutanota client and run it locally. Remember that you have to update your Tutanota client on your own. If you prefer the auto-update feature, you can use the official mail client.

Pre-requisites:

  • An up-to-date version of Git is installed
  • An up-to-date version of Node.js is installed

Build steps:

  1. Clone the repository: git clone https://github.com/tutao/tutanota.git
  2. Switch into the repository directory: cd tutanota
  3. Do npm install
  4. Build the web part: node dist prod
  5. Switch into the build directory: cd build/dist
  6. Run local server. Either use node server or python -m SimpleHTTPServer 9000.
  7. Open the `` with your favorite browser (tested: Firefox, Chrome/Chromium, Safari).

Building and running your own Tutanota (new beta) Android app

If you build and install the Tutanota Android app by yourself, keep in mind that you will not get updates automatically. If you prefer the auto-update feature, use the Google Play Store or F-Droid in the future.

Pre-requisites:

  • An up-to-date version of Git is installed
  • An up-to-date version of Node.js is installed
  • An up-to-date version of the Android SDK is installed

Build steps:

  1. Clone the repository: git clone https://github.com/tutao/tutanota.git
  2. Switch into the Tutanota directory: cd tutanota
  3. Install dependencies: npm install
  4. Build the web part: node dist prod
  5. Switch to the Android folder: cd app-android
  6. Create a keystore if you don't have one: keytool -genkey -noprompt -keystore MyKeystore.jks -alias tutaKey -keyalg RSA -keysize 2048 -validity 10000 -deststoretype pkcs12 -storepass CHANGEME -keypass CHANGEME -dname "CN=com.example"
  7. Build the Android app: ./gradlew assembleRelease
  8. Sign the app: jarsigner -verbose -keystore MyKeystore.jks -storepass CHANGEME app/build/outputs/apk/release/app-release-unsigned.apk tutaKey
  9. Install the app on your device: adb install -r app/build/outputs/apk/release/app-release-unsigned.apk

About

Tutanota is the end-to-end encrypted mail client that enables you to communicate securely with anyone.

https://tutanota.com

License:GNU General Public License v3.0


Languages

Language:JavaScript 80.7%Language:C 14.3%Language:C++ 1.8%Language:Java 1.6%Language:Objective-C 1.6%Language:Shell 0.0%