{"id":23197213,"url":"https://github.com/jsnjack/maildam","last_synced_at":"2026-04-12T11:49:24.018Z","repository":{"id":75802498,"uuid":"134482289","full_name":"jsnjack/maildam","owner":"jsnjack","description":"Make a desktop application from any website","archived":false,"fork":false,"pushed_at":"2018-08-10T12:08:24.000Z","size":960,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-04T01:38:17.982Z","etag":null,"topics":["desktop-application","electron","gnome","vue","webapp"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsnjack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-05-22T22:23:16.000Z","updated_at":"2018-08-08T20:44:59.000Z","dependencies_parsed_at":"2023-03-24T22:49:43.806Z","dependency_job_id":null,"html_url":"https://github.com/jsnjack/maildam","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/jsnjack/maildam","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsnjack%2Fmaildam","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsnjack%2Fmaildam/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsnjack%2Fmaildam/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsnjack%2Fmaildam/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsnjack","download_url":"https://codeload.github.com/jsnjack/maildam/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsnjack%2Fmaildam/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278254471,"owners_count":25956598,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-03T02:00:06.070Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["desktop-application","electron","gnome","vue","webapp"],"created_at":"2024-12-18T14:29:14.595Z","updated_at":"2025-10-04T01:38:19.673Z","avatar_url":"https://github.com/jsnjack.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"maildam\n=====\n\nMake a desktop application from any website\n\n![ScreenShot](https://raw.githubusercontent.com/jsnjack/maildam/master/screenshot.png)\n\n## How to use\nmaildam loads configuration in JSON format from `~/.config/maildam/config.json` (Linux)\n\n### Example 1: Side-by-side 2 Google Inbox accounts\n1. Create `~/.config/maildam/config.json` file with the following content:\n```json\n{\n    \"tabs\": [\n        {\n            \"name\": \"Home\",\n            \"url\": \"https://inbox.google.com/u/0/\",\n            \"isActive\": true\n        },\n        {\n            \"name\": \"Work\",\n            \"url\": \"https://inbox.google.com/u/1/\",\n            \"isActive\": false\n        }\n    ],\n    \"scaledrone_channel_id\": \"x123\",\n    \"pusher_api_key\": \"y123\",\n}\n```\n2. If `scaledrone_channel_id` is provided, maildam subscribes to the channel and expects a notification to be a valid JSON object with `title` and `body` fields, like:\n```json\n{\n    \"title\": \"New email\",\n    \"body\": \"from Yauhen \u003cyauhen@surfly.com\u003e\",\n}\n```\n3. If `pusher_api_key` is provided, maildam subscribes to the channel `mail` and expects a notification to be a valid JSON object with `title` and `body` fields, like:\n```json\n{\n    \"title\": \"New email\",\n    \"body\": \"from Yauhen \u003cyauhen@surfly.com\u003e\",\n}\n```\n\n### Example 2: HipChat as a desktop application\nBy default maildam looks for `config.json` file in `~/.config/maildam/` directory. It is possible to set up different working directory (profile)\n\n1. Create `~/.config/maildam-hipchat/config.json` file:\n```json\n{\n  \"tabs\": [\n    {\n            \"name\": \"Hipchat\",\n            \"url\": \"https://surfly.hipchat.com/chat\",\n            \"isActive\": true\n    }\n  ]\n}\n```\n\n2. It is already possible to start using HipChat with the following command\n```shell\nmaildam --profile hipchat --name=hipchat\n```\nThe command starts new maildam instance with `maildam-hipchat` profile and `WM_CLASS = hipchat, hipchat` window class (Stops GNOME from combining windows from different profiles)\n\n3. Integrate HipChat with GNOME. Create `/home/jsn/.local/share/applications/hipchatdam.desktop` file:\n```\n[Desktop Entry]\nName=HipChat\nComment=Hipchat with maildam\nGenericName=hipchat\nExec=maildam --profile hipchat --name=hipchat\nIcon=hipchat\nType=Application\nStartupWMClass=hipchat\n```\nYou will need to create an icon manually.\n\n\n## Building from source\n1. Clone repository and run to install dependencies\n```\nyarn install\n```\n\n2. Run `yarn run dev` to start in development mode\n\n3. Run `yarn run build` to build and package into RPM\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsnjack%2Fmaildam","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsnjack%2Fmaildam","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsnjack%2Fmaildam/lists"}