Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

Matrix (Synapse/Element)

105 Topics 1.2k Posts
  • Matrix (Synapse/Element) - Package Updates

    Pinned
    319
    0 Votes
    319 Posts
    92k Views
    Package UpdatesP

    [1.9.47]

    Update element-web to 1.11.89 Full Changelog Upgrade matrix-sdk-crypto-wasm to 1.11.0 (https://github.com/matrix-org/matrix-js-sdk/pull/4593) Fix url preview display (#​28766).
  • Has anyone got the Element X App working with Cloudron Matrix?

    10
    1 Votes
    10 Posts
    163 Views
    girishG

    @jdaviescoates I should have been clearer... I meant the sliding sync webapp got obsoleted and the repo was archived. TBH, I don't really know if the protocol / implementation was merged in a compatible way.

  • 1.121 came out 5 days ago

    2
    1 Votes
    2 Posts
    33 Views
    girishG

    You can see it here - https://git.cloudron.io/apps/synapse-app/-/merge_requests/10 . The tests are failing, we have to investigate. The update won't work with Element X though, I am pretty sure πŸ™‚

  • Set admin user

    Solved
    3
    0 Votes
    3 Posts
    50 Views
    C

    @nebulon Correct, but I just realised that in copying and pasting I appear to have missed something.
    That's embarassing. In any case it has now worked and this is resolved. Thanks for the quick reply.

  • Matrix Homeserver Sliding Sync

    16
    7 Votes
    16 Posts
    5k Views
    jdaviescoatesJ

    @girish all sounds very promising indeed.

    I just went to see if I can now connect to my Cloudron Matrix using Element X... the QR Code login thing at least doesn't seem to have been implemented on Cloudron yet:

    b6462474-d41a-457f-97d6-545ddad657f8-image.png

    And trying to login in manually doesn't seem to work yet either:

    Screenshot_20241104-132148_Element X.png

    Hopefully in the coming months such things will begin to work? Do we know what we're waiting for? I guess maybe for 2.0 to actually release and packaged? πŸ™‚

  • Can't get admin-ui running

    Solved
    9
    1 Votes
    9 Posts
    636 Views
    C

    Hello,
    it seems there is a loop with SSO Login. ItΒ΄s jumped back to ..#Login after Authentifcation.

  • Setup SMS for phone number verification

    1
    0 Votes
    1 Posts
    71 Views
    No one has replied
  • Unable to register account from iOS or Android (can from mac app though)

    3
    1 Votes
    3 Posts
    102 Views
    O

    thanks @joseph, for any mods, feel free to remote this thread.

  • Element X, Call and Server Suite are production ready

    12
    4 Votes
    12 Posts
    539 Views
    girishG

    @andreasdueren yes exactly, that's the bug. They are yet to add OIDC support in the Element X apps . the one you linked is the iOS app, the one I linked earlier was for the android app.

  • Password for first user?

    Solved
    3
    0 Votes
    3 Posts
    106 Views
    S

    @nebulon Thanks! Got it working finally

  • OIDC not working after app migration to another Cloudron & IPv6 error

    Unsolved
    15
    0 Votes
    15 Posts
    539 Views
    humptydumptyH

    I'm not sure how to do any of that but I'll worry about this later as I received a reply from Hetzner support about my VPS (SMTP issue) and you won't believe what they said.

  • Matrix/Synapse Admin Interface

    23
    0 Votes
    23 Posts
    9k Views
    L

    Just uploaded and extracted latest version but it's just loading, don't see any login screen

  • Matrix in constant "starting..." state.

    7
    1 Votes
    7 Posts
    563 Views
    girishG

    @gargamel8 ok, there are some suggested solutions at https://docs.cloudron.io/troubleshooting/#hairpin-nat . Maybe something works for you.

  • 1 Votes
    9 Posts
    771 Views
    D

    This is very interesting @jdaviescoates thank you for this. I'll examinate this more deeply !

  • Matrix "Not responding" after automatic Update from v1.82.0 to v1.83.0

    Moved
    16
    0 Votes
    16 Posts
    513 Views
    R

    @girish
    Thanks for the tip, I have entered pfSense as DNS, now it works again.

    At the end of last week I set up a test server to play with which is connected to a different firewall. I had exactly the same problem with this fresh installation.

    Another problem with the new login procedure is that mobile devices with the policy of not allowing cookies can no longer log in to the Element app.
    An alternative solution must now be found, possibly deactivating openID if this is possible, but that is another topic.

    Many thanks for your help and have a good week!

    For all those who need a short summary:

    Log in via SSH
    Create the file "custom.conf":

    sudo touch /etc/unbound/unbound.conf.d/custom.conf

    Edit file:

    sudo nano /etc/unbound/unbound.conf.d/custom.conf

    Insert content into the file:

    # this disables DNSSEC server: val-permissive-mode: yes # forward all queries to the internal DNS forward-zone: name: "." forward-addr: 172.xxx.xxx.xxx

    Restart:

    sudo systemctl restart unbound

    Check:

    sudo systemctl status unbound
  • Matrix Healtheck error: Error: Timeout of 7000ms exceeded

    Solved
    5
    0 Votes
    5 Posts
    523 Views
    archosA

    So for two days, it looks like everything's fine. I think I can close this thread.

  • Questions to Matrix

    3
    0 Votes
    3 Posts
    340 Views
    L

    @nebulon said in Questions to Matrix:

    There is already a thread for file uploads at https://forum.cloudron.io/topic/11032/unable-to-increase-upload-size-above-2gb-matrix/21

    Thank you, then we I have to wait for an update because I use only E2E rooms

  • Element Starter Core

    2
    2 Votes
    2 Posts
    366 Views
    M

    News: https://element.io/blog/2024-is-about-being-in-your-element/

  • Unable to increase upload size above 2GB Matrix

    Moved
    21
    0 Votes
    21 Posts
    2k Views
    M

    Found a solution in the old bug report, only issue is that it doesn't work in e2e rooms
    here is the solution https://github.com/matrix-org/synapse/issues/12023#issuecomment-1044337550

    That seemed to work because when uploading to an unencrypted room the upload does start, but when uploading in a e2e room it just failed (doesn't even start uploading) Does anyone have an idea on how we can make this work in e2e rooms as well?

    btw for anyone trying to apply it do the following
    1, go to the terminal. 2, click postgress then type psql and press enter.
    3, paste in the following to change media_length from integer to bigint

    ALTER TABLE local_media_repository ALTER COLUMN media_length TYPE bigint;

    you can use the following to check if the change was applied

    SELECT data_type FROM information_schema.columns WHERE table_name = 'local_media_repository' AND column_name = 'media_length';
  • Expand Matrix app features

    26
    13 Votes
    26 Posts
    3k Views
    andreasduerenA

    @girish said in Expand Matrix app features:

    @Sam_uk are you looking for a specific connector? I think adding all of them is not going to be "sustainable". It's just going to break with all releases and dependencies.

    For me it's really only the WhatsApp bridge. It's by far the most popular chat service, requires no API access with a complex registration process or high fees and is fairly easy to use. I am basically currently running a separate server with yunohost just so I can use the bridge and would love to change that.