Gajim - 2024-03-27


  1. nicoco

    gitlab is down, I'm getting error 500 on any page

  2. cal0pteryx

    Yes

  3. kurion

    When I create a groupchat, "Archive chat on server" option in groupchat_config is enabled by default. How can I change this default?

  4. kurion

    unfortunately, couldn't find its trace in the codebase

  5. kurion

    I can see ``` self._client.get_module('MUC').request_config ```

  6. kurion

    are groupchat configurations always set by the server for the first time?

  7. lovetox

    Yes, but Gajim overwrites it

  8. lovetox

    It's there in the code search for muc config or something

  9. kurion

    lovetox Sorry, couldn't find it.

  10. lovetox

    It's in the MUC module

  11. lovetox

    Follow the process of creating a muc

  12. kurion

    Ok I'll try

  13. kurion

    I also tried grepping for different labels in groupchat_config ui in hope to backtrack, but didn't find it

  14. kurion

    I think muc.py has what I need.

  15. kurion

    I think common/modules/muc.py has what I need.

  16. kurion

    > I think common/modules/muc.py has what I need. oh, looks like it doesn't

  17. kurion

    I guess I finally found the thing

  18. kurion

    get_default_muc_config in helpers.py

  19. kurion

    If I want to have "Archive chat to server" set to False by default, should changing the following key be sufficient? ``` 'muc#roomconfig_enablelogging': True, ```

  20. kurion

    or should I also make changes to ```

  21. kurion

    or should I also make changes to ``` # Ejabberd options 'allow_voice_requests': False, 'public_list': False, 'mam': True, # Prosody options '{http://prosody.im/protocol/muc}roomconfig_allowmemberinvites': True, 'muc#roomconfig_enablearchiving': True, ```

  22. kurion

    ^^ "mam" and ''muc#roomconfig_enablearchiving'" key

  23. kurion

    couldn't find `enablearchiving` in MUC XEP

  24. lovetox

    Every Server defines it's own

  25. lovetox

    So yes you need to change both

  26. kurion

    lovetox thanks

  27. q7697896

    Why can't I add friends.

  28. lovetox

    i dont know, but you can tell me what problem you see

  29. q7697896

    I don't know how to add your friends.

  30. lovetox

    press the green + button and choose add contacts

  31. lovetox

    or choose start chat and type the address into that field

  32. q7697896

    If I need to add your friend, is the address: gajim@conference.gajim.org /Lovetox? Yes?

  33. lovetox

    no thats the address of this groupchat, you dont need to add me

  34. lovetox

    if you need something you can simply say it here, or you double click my name in the groupchat roster

  35. lovetox

    then you can open a private chat

  36. bot_

    ?

  37. bot_

    Why'd I just get a from you?

  38. debacle

    If my server has both `_xmpp-client._tcp` (for STARTTLS) and `_xmpps-client._tcp` (for direct TLS) SRV records, which one is preferred by Gajim? In case one is not reachable (e.g. hotel firewall), will it automatically try the other?