{"id":43138265,"url":"https://github.com/destrex271/listmonk_wrapper","last_synced_at":"2026-01-31T22:10:20.113Z","repository":{"id":276346812,"uuid":"928869859","full_name":"destrex271/listmonk_wrapper","owner":"destrex271","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-22T07:33:52.000Z","size":25140,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-22T09:13:16.383Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/destrex271.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":"2025-02-07T11:42:04.000Z","updated_at":"2025-08-17T07:06:10.000Z","dependencies_parsed_at":"2025-05-12T15:35:17.901Z","dependency_job_id":"6c52d016-31ee-4ab1-b1c3-40964b5500c0","html_url":"https://github.com/destrex271/listmonk_wrapper","commit_stats":null,"previous_names":["destrex271/listmonk_wrapper"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/destrex271/listmonk_wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/destrex271%2Flistmonk_wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/destrex271%2Flistmonk_wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/destrex271%2Flistmonk_wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/destrex271%2Flistmonk_wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/destrex271","download_url":"https://codeload.github.com/destrex271/listmonk_wrapper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/destrex271%2Flistmonk_wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28957153,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-01-31T22:10:19.598Z","updated_at":"2026-01-31T22:10:20.106Z","avatar_url":"https://github.com/destrex271.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# listmonk proxy\n\nTo set\n\n```\nLISTMONK_URL\n\nAPI_USER\n\nAPI_TOKEN\n\nHINDI_LIST\n\nENGLISH_LIST\n```\n\nEndpoints\n\n```\nSend Campaign: /proxy/send_campaign\n```\n\n## Instructions\n\n1. Setup listmonk binary\n2. Add config.toml for local listmonk instance\n```toml\n[app]\n# Interface and port where the app will run its webserver.  The default value\n# of localhost will only listen to connections from the current machine. To\n# listen on all interfaces use '0.0.0.0'. To listen on the default web address\n# port, use port 80 (this will require running with elevated permissions).\naddress = \"0.0.0.0:80\"\n\n# Database.\n[db]\nhost = \"localhost\"\nport = 5432\nuser = \"listmonk\"\npassword = \"listmonk\"\n\n# Ensure that this database has been created in Postgres.\ndatabase = \"listmonk\"\n\nssl_mode = \"disable\"\nmax_open = 25\nmax_idle = 25\nmax_lifetime = \"300s\"\n\n# Optional space separated Postgres DSN params. eg: \"application_name=listmonk gssencmode=disable\"\nparams = \"\"\n```\n3. Create Systemd service for listmonk\n```\n[Unit]\nDescription=Secure Proxy for Listmonk Newsletter Manager\nAfter=network.target listmonk.service\n\n[Service]\nEnvironment=\"API_USER=apiuser2\"\nEnvironment=\"LISTMONK_URL=0.0.0.0:80\"\n#Environment=\"API_TOKEN=gNMAnvuMN7gcoaRYlPqADZGEqVxtBDqG\"\nEnvironment=\"API_TOKEN=C2iqFzpXp39R5k9bT7YjLCb8dR9lrVWn\"\nEnvironment=\"HINDI_LIST_1M=5\"\nEnvironment=\"HINDI_LIST_3M=7\"\nEnvironment=\"ENGLISH_LIST_3M=8\"\nEnvironment=\"ENGLISH_LIST_1M=6\"\nType=simple\nUser=root\nGroup=root\nWorkingDirectory=/home/ubuntu\nExecStart=/home/ubuntu/listmonk_proxy\nRestart=always\nRestartSec=10\n\n[Install]\nWantedBy=multi-user.target\n```\n\n4. Create Systemd service for listmonk_proxy\n```\n[Unit]\nDescription=Secure Proxy for Listmonk Newsletter Manager\nAfter=network.target listmonk.service\n\n[Service]\nEnvironment=\"API_USER=apiuser2\"\nEnvironment=\"LISTMONK_URL=0.0.0.0:80\"\n#Environment=\"API_TOKEN=gNMAnvuMN7gcoaRYlPqADZGEqVxtBDqG\"\nEnvironment=\"API_TOKEN=C2iqFzpXp39R5k9bT7YjLCb8dR9lrVWn\"\nEnvironment=\"HINDI_LIST_1M=5\"\nEnvironment=\"HINDI_LIST_3M=7\"\nEnvironment=\"ENGLISH_LIST_3M=8\"\nEnvironment=\"ENGLISH_LIST_1M=6\"\nType=simple\nUser=root\nGroup=root\nWorkingDirectory=/home/ubuntu\nExecStart=/home/ubuntu/listmonk_proxy\nRestart=always\nRestartSec=10\n\n[Install]\nWantedBy=multi-user.target\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdestrex271%2Flistmonk_wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdestrex271%2Flistmonk_wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdestrex271%2Flistmonk_wrapper/lists"}