it isn't on cloudron but odoo has country specific accounting. I cant remember if that module is proprietary or open source.
Probably the easiest option is to just be a multi-billionaire and not pay any tax.
it isn't on cloudron but odoo has country specific accounting. I cant remember if that module is proprietary or open source.
Probably the easiest option is to just be a multi-billionaire and not pay any tax.
This release is labelled a minor rather than a patch on purpose: vLLM 0.29 removes ten model architectures and makes Model Runner V2 the default engine. Most installs are unaffected, the package's default model (Qwen/Qwen3-0.6B) and mainstream families like Llama, Qwen, Mistral, DeepSeek and Gemma all continue to work.
But if your LLM_MODEL points at one of the removed architectures, the app will fail to start rather than degrade gracefully:
Arctic, Chameleon, Cheers, Fairseq2Llama, FireRedLID, GritLM, HCXVision, MPT, the RWForCausalLM/StableLMEpochForCausalLM aliases, or PrithviGeoSpatialMAE.
The same applies if you pass the now-removed VLLM_TEST_FORCE_FP8_MARLIN or VLLM_ROCM_USE_AITER_FP4_ASM_GEMM through LLM_EXTRA_ARGS, or rely on the PyAV video decoder backend (use OpenCV or Torchcodec instead).
If you have auto-updates enabled, check the LLM_MODEL value in your app's Environment section now. If it names one of the above, switch to a supported model before the update reaches you. If it has already updated and the app will not start, Cloudron takes a backup immediately before every update, so restoring that backup returns you to the previous version while you pick a replacement model.
We have just updated wger and hope your training schedule wasn't interrupted. Hail Victory!
@necrevistonnezr I wonder why they went with Apache in the first place, if they didn't want that sort of thing to happen.
Here is our AIo repo:
https://forgejo.wanderingmonster.dev/WanderingMonster/AIo
We spent a lot of time on considering how to document our projects taking into account AI.
It is easiest to try with a greenfield (new) coding project, but the AIo spec also shows how to introduce it to a brownfield (pre-existing) project, too.
We hope you like the cool artwork and might like to try using some of the procedures there. We have been working on this for half a year or so.
I think AI for documentation is a strong way forward and I hope Cloudron experiments with it. A clear template works wonders for having the AI conform to a standard style of presentation. The burden falls on creating/finding an exemplary model which the AI can follow, and then providing a couple of iterations to tweak it with some human feedback.
Readability was mentioned by @girish. We naturally assume human readability is meant here, and that is important. In the future, increasingly larger amounts of code will be created, debugged, documented and maintained by AI. (We think of this as being AI-Forward.) The distinction between documentation and code is becoming blurred, as AI coders are using the documentation as instructions. We should consider AI agents as part of the readership and perhaps consider them as 1st Class Citizens (!), when we create documentation.
We have been investigating this area and to keep discussion going, here are 6 suggestions for making documentation better suited for AI.
(SPOILER ALERT - Shield your eyes, this is AI generated!)
Six things that make docs genuinely useful to AI
One document, one job. Tutorial, how-to, reference, or explanation β never mixed. A page that switches modes halfway retrieves badly and gets summarised wrong.
Put the metadata at the top. Title, purpose, audience, status, and last-updated date in a header block. This is what lets a tool decide whether the page is relevant before reading it.
Say the context out loud. Prerequisites, assumptions, and where this sits relative to everything else. A model has no hallway to ask in β anything "everyone knows" is invisible to it.
Write in self-contained chunks. Descriptive headings, one idea per section, no "as mentioned above". Retrieval hands over fragments, not whole documents, so each fragment has to stand alone.
Be exact and executable. Real file paths, real commands, real values β no placeholders, no "adjust as needed". Anything ambiguous gets guessed, and a confident wrong guess costs more than a gap.
Don't restate what the source already says. Directory trees, function signatures, and config keys are read directly and go stale fast. Document the why β intent, constraints, dead ends β which is the part nothing else records.
The last one is usually the least intuitive to a room and the highest-leverage: most teams' docs are ~40% restated structure that the tool would rather read from the source anyway.
We're pretty-much now in the age of: "I'll have my AI speak to your AI, and TLDR me the results."
Wild times.
It is like Hollywood: "I'll have my people talk to your people and we can figure out a time to have lunch."
@necrevistonnezr has a valid point, too. What else can we do, though? "Understand it better?" This problem meant people were not receiving emails. Not sending a bug report, particularly when the ai had found a fix, didn't seem public spirited. It also is a bit like self-censorship.
On the other hand, Cloudron has a policy about no AI generated text in the forum. This is just one case where there is an AI bug report. @girish kindly found the time to investigate it. In the future, there may be many AI bug reports and human intervention might not be able to handle them all.
There are arguments for and against both sides. It does seem rude though to paste a load of AI and expect a human to look at it. I know what you mean.
Category: Support / Mail
@staff could you please take a look at this as mail is not working?
Cloudron 9.0.0, mail image cloudron/mail:4.3.5.
After a reboot of a reasonably busy server, inbound mail was dead for nearly three hours. The dashboard showed the mail service healthy for all of it. There are four separate issues tangled together here, and the last two are what turned a bad morning into a long one.
services.js starts things in this order:
async function start() {
await dovecot.start(); // start this before solr in case the fts has to be re-indexed
await fts.start();
await haraka.start();
await spamd.start();
...
}
On our boot, Solr exceeded the readiness timeout:
08:55:47 Error: Could not verify fts readiness: Timed out waiting for solr/tika readiness
at Object.start (/app/code/fts.js:286:27)
at async Object.start (/app/code/services.js:32:5)
08:57:26 solr core "dovecot" comes up normally (14,093 docs)
Solr was fine, just about a hundred seconds slower than the check allowed, because the whole box was contending after a reboot. But the throw propagated out of start(), so haraka.start() and spamd.start() never ran:
dovecot RUNNING
haraka STOPPED Not started
spamd STOPPED Not started
mail-service RUNNING
solr RUNNING
tika RUNNING
Full-text search is a search index. It seems wrong for it to be a hard prerequisite of SMTP. Could fts.start() be made non-fatal, logging and continuing with a background retry, or simply moved after haraka.start()? Either would have turned a three-hour mail outage into a temporarily degraded search box.
Throughout the outage, and afterwards in the broken state described below:
{"status":true,"haraka":{"status":true},"dovecot":{"status":true},"spamd":{"status":true},
"redis":{"status":true},"solr":{"status":true},"tika":{"status":true}}
This is because getHealth() is process liveness only:
const out = safe.child_process.execSync(`supervisorctl status ${program} | grep RUNNING`, ...);
health[program].status = out && out.includes('RUNNING');
A running Haraka that rejects every recipient is reported exactly like a working one. Would it be reasonable for the healthcheck to assert that /run/haraka/config/host_list is non-empty whenever at least one domain has inbound set? That single check would have caught both this and issue 3.
Seeing haraka STOPPED, the obvious operator move is:
docker exec mail supervisorctl start haraka spamd
Both come up RUNNING, the healthcheck goes green, and SMTP answers on 25 and 587. It looks fixed. It is not. haraka.start() is not just supervisorctl start haraka:
async function start() {
const [syncConfigError] = await safe(syncConfig());
if (syncConfigError) throw new Error(...);
safe.child_process.execSync('supervisorctl start haraka', ...);
}
syncConfig() is what writes /run/haraka/config/host_list and populates the DKIM runtime directory. Starting the daemon directly skips it, so Haraka runs with an empty host list and no DKIM keys. The result:
RCPT TO:<valid-mailbox@example.com> 550 I cannot deliver mail for <valid-mailbox@example.com>
RCPT TO:<nosuchuser@example.com> 550 No such address
Note the asymmetry, which is what misled us for a while: the invalid address gets the correct "No such address" from the cloudron plugin, proving the plugin is loaded and knows the domain. The valid address falls through to Haraka's core rejection in connection.js, because the cloudron plugin calls plain next() for a good mailbox and relies on rcpt_to.in_host_list to accept it, and host_list is empty.
This state is worse than the service simply being down. With Haraka stopped, port 25 refuses connections and sending servers queue and retry for days, so nothing is lost. With Haraka running against an empty host list, every sender gets a permanent 550 and gives up. Mail is destroyed rather than delayed.
Two suggestions:
host_list is empty while inbound domains are configured. Failing closed at connect level is far safer than 550-ing real mail.supervisorctl entries, since supervisorctl start haraka is the natural thing for an operator to type and it is silently wrong.POST /mail/<domain>/inbound returns 202 without applying anythingHaving worked out that the runtime config needed regenerating, the natural way to trigger it looks like a no-op write of a domain's existing inbound setting. It answers a confident 202 and does nothing relevant:
async function setDomainInbound(domain, enabled, auditSource) {
const result = await database.query('UPDATE mail SET inbound = ? WHERE domain = ?', );
if (result.affectedRows === 0) throw new MailError(...);
await boxEventlog.add(...);
}
There is no call to restartHarakaService(). It is defined at domains.js:11 but called only from lines 92, 128 and 143, and the route returns 202 unconditionally. host_list stayed empty and Haraka's uptime never reset. Would it be worth having domain setters that change delivery-relevant state trigger a reconfigure, or at least not report success when nothing was applied?
The underlying config is untouched in the database; only Haraka's runtime copy is missing. A no-op write of the existing max email size triggers haraka.reconfigure(), which regenerates host_list and the DKIM keys and restarts Haraka, without touching Dovecot and without re-running the fts check. It also returns 503 with a real error if the reconfigure fails, rather than an unconditional success:
GET /max_email_size?access_token=$CLOUDRON_MAIL_TOKEN -> {"size":25000000}
POST /max_email_size?access_token=$CLOUDRON_MAIL_TOKEN
Body: {"size": 25000000} (write back the same value)
Verify all three of these, because the first two can look right while mail is still broken:
cat /run/haraka/config/host_list # your inbound domains
ls /run/haraka/config/dkim # one directory per domain
supervisorctl status haraka # uptime MUST reset to seconds
A Haraka uptime that has not reset means the reconfigure did not run, whatever the HTTP code said. Then test a real recipient over SMTP. A valid mailbox must return 250 where it previously returned 550 I cannot deliver mail for, while a genuinely unknown address should still return 550 No such address.
One last note for anyone probing SMTP by hand: Haraka applies a greeting delay to unknown clients, so a short-timeout probe reports failure against a perfectly healthy server. Allow at least 20 seconds before concluding the port is dead.
I have successfully used NC Talk with the HPB and 30+ users
Hey, well done on that! It must have been a great call. Thanks for letting us know.
Lets see how long it takes to top this! I think you will have the record for quite a while.
Do you have any tips for managing such a large teleconference?
TL;DR: Unseen Servant publishes one folder of plain text to Gemini, Gopher, Spartan, Nex and Finger at once, and mirrors the same pages to the web. No build step, and nothing executed, ever. Human architected, AI coded. Packaged for Cloudron; unofficial and community-maintained; built and tested on Cloudron 9.x.

What it does/llms.txt with Markdown siblings serves machine readers.
Project site: https://unseenservant.dev/
Source and issues: https://forgejo.unseenservant.dev/unseen-servant/unseen-servantThe site is the demonstration: the page you land on is served by the software, from one folder, on every protocol it supports, and its front page opens with the facts (version, licence, packages, networks, lineage) before it asks you to read a word of prose. Swap https:// for gemini:// on the same address and you are reading the same file.
How to installClick the Add custom app dropdown (top right in the App Store) and choose Community app, then paste the CloudronVersions.json URL into the box that pops up. Apps installed this way receive automatic updates.


https://raw.githubusercontent.com/OrcVole/unseen-servant/main/CloudronVersions.json
Or with the CLI:
cloudron install \
--versions-url https://raw.githubusercontent.com/OrcVole/unseen-servant/main/CloudronVersions.json \
--location capsule.example.com
Minimums: 256 MiB RAM, localstorage only. No database, no extra subdomain. Cloudron 9.1 or newer.
First run: there is no login, which is the point: no admin panel means no credential to leak and no login page to probe. The app writes a starter capsule and serves it immediately; you edit the content folder through the dashboard's File Manager. The Gemini port is fixed at 1965 because every client assumes it; the other four protocols are optional ports in the app's settings, served above 1024 because their canonical ports are privileged.
For usersThe small internet is genuinely nice to write for, and the usual barrier is that publishing there means picking one protocol and one server, then maintaining a second copy for people who only have a browser. Here one folder of plain text is the whole workflow: gemtext in, every surface out, within seconds of saving.
Good fit if you keep a gemlog, or want one, and would rather not run five daemons. Not a fit if you need a general-purpose web server: this one refuses dynamic anything, permanently and by design, and its own site will tell you which of Agate, gmid, Molly Brown or GmCapsule to run instead.
Cloudron specifics worth having: backups include the server identity, so a restore brings back the same certificate your readers pinned; all state is one directory under /app/data.
On authorshipHuman architected, AI coded
What is offered instead of trust: every design decision recorded in writing before the code, the research published, a wire-level test suite, eight fuzzed parsers, and a conformance run against the live deployment. It is a first release and not independently audited; Agate and gmid have years of production hardening this does not, and the project's own comparison page says so.
What helped: the app is a single static binary with no database and no supervisor, so the whole package is a Dockerfile, a start.sh and the manifest; localstorage covered every persistence need.
What was tricky: four real ones. The conventional ports for Gopher, Finger and Spartan (70, 79, 300) are privileged and tcpPorts refuses them, so the package publishes 1024, 7979 and 3300 instead. Port 3000 is also refused as reserved, which is not in the manifest documentation and only surfaces as a 400 at install time. tcpPorts entries marked readOnly cannot be moved, which means two installs of this app cannot coexist on one box, correct here but worth knowing. And the health check has to stay green when an admin disables the Gemini port, or the app hangs in "Startingβ¦" because of a protocol-side setting.
Still rough: the first install from a versions URL onto a fresh subdomain is the path with the least mileage on it, and confirmations from anyone who tries it are welcome.
οΈ For the Cloudron teamMaintenance burden: light. The package carries no patches, the binary has no runtime dependencies, and the scope is deliberately fixed: new protocols are a versioned decision, not organic growth.
Why it suits the App Store: the niche, the package is small: 256 MiB and a few megabytes on disk.
Friction worth knowing: the community-install validator requires iconUrl, mediaLinks and packagerUrl, none of which are in the manifest's own documented field list, and each is discovered as a separate 400 during install. iconUrl additionally forces minBoxVersion to 9.1.0 or newer, a compatibility floor imposed by a metadata field rather than by anything the app does. A single validation pass listing all missing fields at once would have saved several round trips.
UnlocksA gemlog on your Cloudron that someone in Lagrange, someone in a gopher client from the nineties, and someone who only clicked a link in an email all read from the same files, with no second server and no publishing step.
SynergiesUnseen Servant + Forgejo or Gitea: keep the content in a git repository, pull it into the content folder, and the same tree is a website, a capsule and a gopherhole with no build between them.
Unseen Servant + Miniflux or FreshRSS: it writes Atom, so your own gemlog is subscribable in the reader you already run.
Unseen Servant + Surfer: if you already publish static HTML with Surfer, this adds the small-network surfaces from the same source files rather than replacing anything.
Feedback, bug reports, and "works on our install" confirmations all welcome.
Your wish has been granted: https://ca.cloudron.io/app/wazuh
Well done on packaging this!
We did an automated look at whether Wazuh would be a suitable candidate for a cloudron package and the result was a resounding, "No!"
In case you are interested, according to our ai:
Our ai thought the resource floor for Wazuh exceeds and would dwarf the rest of a Cloudron's combined apps. It also thought it would be difficult to find a place for the agents to connect. Cloudron backups assume gigabytes not terrabytes. Upstream ships its own deployment tooling. Wazuh is a fork of a fork (it forks opensearch which is a fork of elastic search.)
Thank you and well done!
Semaphore UI is a web interface for Ansible. Playbooks, inventories, repositories, environments and schedules get a browser front end, so routine automation can be run and reviewed by people who are
not sitting at a terminal, and by people you would rather did not have your SSH keys.
It is not Semaphore CI. The name is shared with an unrelated continuous-integration product.

Headline featuresansible-core 2.16.3) and git ship inside, so a fresh install can clone a playbook repositoryproxyAuth. ThatPackage repository: https://github.com/OrcVole/semaphore-cloudron
Versions feed: https://raw.githubusercontent.com/OrcVole/semaphore-cloudron/main/CloudronVersions.json
Upstream project: https://semaphoreui.com β source at https://github.com/semaphoreui/semaphore
How to installThe easiest route, and the one that gets you automatic updates: in the App Store, open the Add
custom app dropdown at the top right, choose Community app, and paste the versions URL above
into the box that appears.
https://raw.githubusercontent.com/OrcVole/semaphore-cloudron/main/CloudronVersions.json


οΈ Requirements and first runMinimums: 1 GiB memory, addons localstorage, postgresql, oidc. No extra subdomain.
First run: an administrator is created for you. Open a Terminal for the app and run
cat /app/data/.initial-admin to get the password, sign in as admin, change it, then promote your
own account from Team β Users.
That last step is not optional bookkeeping. Accounts arriving through Cloudron single sign-on are external users and are never administrators, and upstream does not let non-administrators create
projects, so without promoting yourself, signing in with SSO leaves you looking at an empty app.
One more thing worth knowing: Semaphore's "disable password login" setting only hides the password
form. The login endpoint keeps accepting credentials. Treat the admin password as live.
Back up /app/data/keys. It holds the key that decrypts every credential the app stores. It is
inside Cloudron's normal backups, so the only way to lose it is to restore selectively, but if it does go, the app keeps running and looks healthy while every stored credential is permanently
unreadable. semaphore vaults check --config /run/semaphore/config.json tells you the truth; every
key should say active.
For usersWhy try it: you have playbooks, and the people who need to run them keep asking you to run them.
What you get: a browser front end for playbooks, inventories and credentials; scheduled runs and webhook triggers; per-project members and permissions, so someone can run the deploy without holding the keys it uses.
Cloudron wins: single sign-on, TLS, backups and updates all handled by the platform, and the encryption key is generated per install rather than shared with everyone who downloaded the same compose file.
What helped the platform's postgresql and oidc addons covered the whole dependency list; nothing needed bundling. Existing community packages were the reference for the versions feed shape.
What was tricky:
$HOME/.ansible/tmp. It needs HOME, andANSIBLE_REMOTE_TEMP β the second is the one that breaks module transfer, and adebug will happily pass without revealing it./etc/ansible/ansible.cfg./app/data owned by a different uid. Git then refuses every storedhost:port; there is no separate portsslmode=disable is needed because the addon serves no TLS.Still rough We would welcome a second pair of eyes on a cold install from the feed onto a fresh subdomain, and on behaviour with a large existing playbook repository.
οΈ For the Cloudron teamMaintenance burden: low. The package is a build of one Go binary plus Ansible from the distribution, with no patched application code, upstream releases drop straight in with a version bump. Upstream ships often, roughly fortnightly with point releases between.
Why it suits the App Store: Ansible is the obvious automation tool for exactly the audience that runs a Cloudron, and until now running it meant a terminal and a laptop that happened to be on. It uses the platform's own identity rather than reimplementing users, and it has no bundled datastore.
For Semaphore's developersThank you! The configuration surface is clean, the OIDC support is in the community build, and the keyring with vaults check and vaults rekey is a good piece of design that made the custody decision easy.
Two things we would raise: password_login_disable is not enforced at the login endpoint, only in the interface; and web/src/assets/logo.svg is a leftover from the Vue
scaffold rather than your mark, which is a small trap for anyone packaging you.
UnlocksServer maintenance that someone other than you can run. Patch windows as a scheduled task rather than an evening. Credentials that live in one encrypted store instead of on four laptops.
SynergiesSemaphore + Gitea or Forgejo: keep playbook repositories on the same box that runs them; Semaphore clones over the internal network and never needs an outside git host.
Semaphore + Uptime Kuma: point a Kuma alert at a Semaphore webhook integration so a failed check triggers the remediation playbook instead of a notification you read in the morning.
Semaphore + n8n: n8n handles the branching and the approvals, Semaphore does the part that needs Ansible, called through its REST API.
Semaphore + Grafana: dashboards for the fleet, and the tool that changes the fleet, on the same
login.
Semaphore + ntfy: task results pushed to your phone, which is the difference between a scheduled
playbook you trust and one you check.
@andreasdueren The dev closed a feature request with a note explaining why:
https://github.com/baptisteArno/typebot.io/issues/734#event-29694236908