Skip to content

WillPresley/openWMail

 
 

Repository files navigation

openWMail

An always free, always open-source fork of wmail maintained by a volunteer community.

Download js-standard-style

The missing desktop client for Gmail & Google Inbox. Bringing the Gmail & Google Inbox experience to your desktop in a neatly packaged app

Download releases (all platforms)

Raise an issue or request a feature

Screenshot

Building from source

Feeling brave and want to build from source? Here's what you need to do

Firstly you need to get an OAuth client ID and secret from Google. Visit https://console.developers.google.com to get started. You'll need to setup your OAuth Client ID and enable the Gmail, Google+ and Identity Toolkit APIs.

To create OAuth client ID & secret, under "API Manager", choose "Create Credentials", then "OAuth client ID". For "Application type", select "Other", and choose some name for the application, as described in these screenshots:

Create credentials

Create OAuth client ID

Next create src/shared/credentials.js with your Google client ID and secret like so...

module.exports = Object.freeze({
	GOOGLE_CLIENT_ID : '<Your google client id>',
	GOOGLE_CLIENT_SECRET: '<Your google client secret>'
})

Then run the following...

npm install webpack -g
npm run-script install-all
npm start

Packaging Builds

To package builds. (Note packaging osx builds can only be done from osx)

brew install msitools
npm install
npm rebuild
npm run-script package

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 91.4%
  • HTML 7.6%
  • CSS 1.0%