{"id":23644267,"url":"https://github.com/kernelschmelze/inbox","last_synced_at":"2026-04-29T20:07:55.283Z","repository":{"id":230839866,"uuid":"494832937","full_name":"kernelschmelze/inbox","owner":"kernelschmelze","description":"simple upload server with pushover notification","archived":false,"fork":false,"pushed_at":"2022-12-03T12:43:52.000Z","size":80,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-19T16:14:17.025Z","etag":null,"topics":["curl","pushover","self-hosted","uberspace","upload-server"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kernelschmelze.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2022-05-21T16:13:20.000Z","updated_at":"2022-11-21T20:01:11.000Z","dependencies_parsed_at":"2024-04-01T06:59:54.226Z","dependency_job_id":null,"html_url":"https://github.com/kernelschmelze/inbox","commit_stats":null,"previous_names":["kernelschmelze/inbox"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kernelschmelze/inbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernelschmelze%2Finbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernelschmelze%2Finbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernelschmelze%2Finbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernelschmelze%2Finbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kernelschmelze","download_url":"https://codeload.github.com/kernelschmelze/inbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernelschmelze%2Finbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32441564,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T18:12:22.909Z","status":"ssl_error","status_checked_at":"2026-04-29T18:11:33.322Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["curl","pushover","self-hosted","uberspace","upload-server"],"created_at":"2024-12-28T12:18:19.737Z","updated_at":"2026-04-29T20:07:50.274Z","avatar_url":"https://github.com/kernelschmelze.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Inbox\n\nInbox is a simple upload server with [Pushover](https://pushover.net/) notification for messages or small files.  \n\n``` bash\necho \"Hallo Freund\" | \\\n  curl -F file=@- -F \"from=Kay\" -F \"subject=re: inbox\" http://localhost:25478/inbox\n```\n\nPersist upload to disk.  \n\n`./data/f6ab2023-c582-4939-ba77-d758e3b85aee`\n\n``` json\n{\n  \"time\":\"2022-05-21T18:33:51.562755+02:00\",\n  \"id\":\"f6ab2023-c582-4939-ba77-d758e3b85aee\",\n  \"from\":\"Kay\",\n  \"subject\":\"re: inbox\",\n  \"payload\":\"SGFsbG8gRnJldW5kCg==\"\n}\n\n```\n\nWith Pushover notification.  \n\n![](screenshot/screenshot1.jpeg)\n\n## Use case\n\n### Upload a file\n\n```bash\ncurl -F \"file=@msg.txt\" -F \"from=Kay\" -F \"subject=file upload\" https://127.0.0.1:12345/inbox\n```\n\n### Upload encrypted message\n\nI prefer [age](https://github.com/FiloSottile/age) instead of pgp.\n\n``` bash\necho \"Hallo Freund\" | \\\n  age -r age1tjup7hvt35ldu3n98kzfl8ckl6dm43s4wnr02vrx7vvw27njhv4qfgdwym -a -o - | \\\n  curl -F file=@- -F \"from=Kay\" -F \"subject=encrypted message\" http://localhost:25478/inbox\n\n``` \n\n## Install\n\n```bash\ngit clone https://github.com/kernelschmelze/inbox.git\ncd inbox\ngo build\n```\n\n## Usage\n\n``` bash\n./inbox -f inbox.toml\n```\n\n## Config\n\n`inbox.toml`  \n\n``` toml\n\n# 25478\n# :25478\n# http://127.0.0.1:25478\n# https://127.0.0.1:25478\n# default :25478\n\nlisten = \":25478\"\n\n# tls crt and key file\n# default empty\n\ncrt = \"srv.crt\"\nkey = \"srv.key\"\n\n# simple json store\n# default path ./data\n# default days 0, no housekeeping\n\n[jsonstore]\npath = \"./data\"\ndays = 30\n\n# pushover config\n\n[pushover]\n  app = \"API Token\"\n  user = \"Your User Key\"\n  \n```\n\n## Uberspace setup\n\nIf you use [uberspace](https://uberspace.de/) as hoster, then [here](uberspace.md) is the setup.  \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkernelschmelze%2Finbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkernelschmelze%2Finbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkernelschmelze%2Finbox/lists"}