{"id":34024864,"url":"https://github.com/deltachat-bot/matterdelta","last_synced_at":"2026-04-11T10:02:10.046Z","repository":{"id":105866067,"uuid":"605911199","full_name":"deltachat-bot/matterdelta","owner":"deltachat-bot","description":"Bridge Delta Chat with any service supported by matterbridge","archived":false,"fork":false,"pushed_at":"2026-04-07T17:09:19.000Z","size":59,"stargazers_count":28,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-04-07T19:10:23.160Z","etag":null,"topics":["bot","bridge","deltabot-cli","deltachat","matterbridge","mattermost"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deltachat-bot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2023-02-24T06:57:45.000Z","updated_at":"2026-04-07T17:09:23.000Z","dependencies_parsed_at":"2023-05-17T00:45:15.128Z","dependency_job_id":"a4205546-eb8c-4e83-89a2-9d1b172a84b4","html_url":"https://github.com/deltachat-bot/matterdelta","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/deltachat-bot/matterdelta","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deltachat-bot%2Fmatterdelta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deltachat-bot%2Fmatterdelta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deltachat-bot%2Fmatterdelta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deltachat-bot%2Fmatterdelta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deltachat-bot","download_url":"https://codeload.github.com/deltachat-bot/matterdelta/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deltachat-bot%2Fmatterdelta/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31676210,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T08:18:19.405Z","status":"ssl_error","status_checked_at":"2026-04-11T08:17:08.892Z","response_time":54,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bot","bridge","deltabot-cli","deltachat","matterbridge","mattermost"],"created_at":"2025-12-13T16:42:56.322Z","updated_at":"2026-04-11T10:02:10.041Z","avatar_url":"https://github.com/deltachat-bot.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Matterdelta\n\n[![Latest Release](https://img.shields.io/pypi/v/matterdelta.svg)](https://pypi.org/project/matterdelta)\n[![CI](https://github.com/deltachat-bot/matterdelta/actions/workflows/python-ci.yml/badge.svg)](https://github.com/deltachat-bot/matterdelta/actions/workflows/python-ci.yml)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\nMatterdelta is a [Matterbridge](https://github.com/42wim/matterbridge) API plugin allowing to connect\nDelta Chat group chats to the various chat services supported by Matterbridge.\n\n## Install\n\n```sh\npip install matterdelta\n```\n\n## Usage\n\nConfigure the bot's Delta Chat account:\n\n```sh\nmatterdelta init bot@example.com PASSWORD\n```\n\nYou can run `matterdelta init` several times to add multiple different accounts to the bot\nso it can be reached in more than one email address.\n\nThe bot's display name, avatar and status/signature can also be tweaked:\n\n```\nmatterdelta config selfavatar \"/path/to/avatar.png\"\nmatterdelta config displayname \"Bridge Bot\"\nmatterdelta config selfstatus \"Hi, I am a Delta Chat bot\"\n```\n\nTo run the bot so it starts processing messages:\n\n```sh\nmatterdelta serve\n```\n\nTo see all available options run `matterdelta --help`\n\n## Example Configuration\n\n### matterbridge.toml\n\n```\n[api]\n    [api.deltachat]\n    BindAddress=\"127.0.0.1:4242\"\n    Token=\"MATTERBRIDGE_TOKEN\"\n    Buffer=1000\n    RemoteNickFormat=\"{NICK}\"\n\n...\n\n[[gateway]]\nname=\"gateway1\"\nenable=true\n\n    [[gateway.inout]]\n    account=\"api.deltachat\"\n    channel=\"api\"\n\n    ...\n```\n\nAdd these to your existing Matterbridge config to set up an API instance that Matterdelta can connect to.\n\n### config.json\n\n```\n{\n  \"gateways\": [\n    {\"gateway\": \"gateway1\", \"accountId\": 1, \"chatId\": 1234}\n  ],\n  \"api\": {\n    \"url\": \"http://127.0.0.1:4242\",\n    \"token\": \"MATTERBRIDGE_TOKEN\"\n  },\n  \"quoteFormat\": \"{MESSAGE} (re @{QUOTENICK}: {QUOTEMESSAGE:.46})\"\n}\n```\n\nThis file should be in Matterdelta's configuration directory, usually `~/.config/matterdelta/`\nin Linux-based systems.\n\nTo get the `accountId` and `chatId` of the chat you want to bridge,\nrun the bot and add its address to your Delta Chat group, then send `/id` in the group,\nthe bot will reply with the account and chat id, then edit the configuration file and restart the bot.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeltachat-bot%2Fmatterdelta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeltachat-bot%2Fmatterdelta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeltachat-bot%2Fmatterdelta/lists"}