loomio - helps groups make better decisions together
-
It does appear that nearly all features are working in my test build. There is one last challenge remaining here - a potentially notable one. Inbound email for loomio is, in its usual deployment form, handled by a custom sub domain with an MX pointing to a nodejs mailin server to convert messages to webhooks. My plan for the cloudron packaging is to use the
recvmail
with a custom poller process that will grab emails and POST them as required to the app.However, this will require a patch to the underlying software as well. The patch to make loomio use the configured
CLOUDRON_MAIL_TO
while leveraging the+
-delimited subaddresses feature would be similar to https://github.com/loomio/loomio/compare/master...piratas-ar:pipe_to_api but withapp/helpers/email_helper.rb
using the ENV var rather than the hard-coded "loomio" shown in the linked patch. It's a pretty minimal change to get the packaging working so that all the various loomio services operate out of the singular cloudron container, so I'm comfortable pressing ahead with that approach, but if anyone can think of a better solution, please let me know! -
@girish or @nebulon Maybe you can help here? I've got everything in place as far as I can figure for email. Outbound works fine, but I keep getting bounces when attempting to reply. Both
sendmail
andrecvmail
are enabled for the app (in that order in the manifest), but something doesn't seem to be working nicely on the Cloudron side. I've confirmed that I get a 550 5.1.1User doesn't exist: loomio.app@example.com
when emailing either the nakedloomio.app@example.com
address or a subaccount address (ultimately the one I care about for reply-by-email) likeloomio.app+subaccount@example.com
Action: failed Status: 5.1.1 Remote-MTA: 127.0.0.1 Diagnostic-Code: smtp;550 5.1.1 <loomio.app@example.com> User doesn't exist: loomio.app@example.com
Otherwise, as far as I can tell, I think everything is functioning correctly, but the reply-by-email and custom poller I've written can't be exercised and fully verified until I can sort out this mail delivery issue. Very excited to finally be (nearly) done with this one!
-
@jimcavoli Where is the repo for this? I am not finding it in https://git.cloudron.io/jimcavoli
-
Just giving this another little bump
@girish did you ever manage to have a look at @jimcavoli's package?
-
@bubonicfred @girish any progress on Loomio? Just trialling it in our organisation and inclusion would make the case for Cloudron stronger for us.
-
Friends made a startup in this decision management field called KIE Labs - https://www.kielabs.com
-
@jdaviescoates @girish
Just bumping this again,
possibly willing to help test -
Off topic:
@sam_uk said in loomio - helps groups make better decisions together:
@atridad he did a great job of packaging Humhub for me.
I'm assuming/ hoping the plan is to get Humhub into the Cloudron App Store too, right?
-
I can take a look at making sure the packaging code is up to date, but it's very much working on a test instance still. Only issue was @girish building / testing - happy to work on that part of it if needed...I could make it a straight-through Dockerfile rather than BuildKit dependent - though it'll take a fairly long time to build that way, maybe that's just what we need to do?
-
@jimcavoli ah nice, if you can update the base image to 3.0.0, then I can take a look into publishing it. In fact, I am not sure why I didn't look into this further. Would be great to make it a straight through Dockerfile as that's how all the other packages are.
-
@girish Opened it up and got to updating - was reminded that the issue was the inbound email side of things, not the Dockerfile on this one...it's the OpenSlides packaging stalled on the multistage builds (which needs some more revision and I'll update soon). In any case, I've updated it to use
cloudron/base:3.0.0
and Loomio at2.8.3
(latest) locally and on my test box. The outstanding issue with inbound mail remains, plus a new, if minor, issue with RedisAUTH
for the channel server - any chance we'll see Redis updated to 6.x soon?I can work on alternatives to make the channel server Redis connection happy, but I still need help on the inbound email side of things. Sending seems fine, but replies (the inbound-to-app side) bounce immediately. I've pushed the changes for the newer versions to https://git.cloudron.io/jimcavoli/loomio-app and included the caveat(s) about the broken components in the commit message for now.