Tuesday, July 18, 2023
grimoire@muc.metronome.im
July
Mon Tue Wed Thu Fri Sat Sun
          1 2
3 4
5
6
7 8
9
10 11 12 13 14 15
16
17 18
19
20 21 22 23
24 25
26 27
28 29 30
31
           
Metronome IM "cook" book room | Support and Dev talk about the Metronome XMPP server.

Latest stable version build is: 4.0.3

For more information you can visit: https://metronome.im

Room logs can be found here: https://muc.metronome.im/logs/grimoire/

* Links *
<==========================================================>
- Building & Installation:
https://metronome.im/building
- Documentation:
https://metronome.im/documentation
- Issues Tracker:
https://github.com/maranda/metronome/issues
<==========================================================>

[08:19:43] <etg> hello, how to manually delete a muc from metronome?
[08:34:09] <Maranda> etg: with a server administrator account just enable super user mode via adhoc and delete the room via the xmpp client
[08:34:37] <Maranda> (that'll make owner of every room you join)
[08:35:53] <etg> just enable super user mode via adhoc, how to do that?
[08:38:20] <etg> I am using gajim, should I login with admin credentials of my server?
[08:38:36] <Maranda> https://aria.im/_matrix/media/v1/download/aria-net.org/HZrikSjAZEwnnyKRMaVQjOvX
[08:39:21] <Maranda> https://aria.im/_matrix/media/v1/download/aria-net.org/TyXPCaaynRNPfzYDrpIhAGtL
[08:40:15] <Maranda> https://aria.im/_matrix/media/v1/download/aria-net.org/DnLCDJxjBnbMjNlMKRJJIdEZ
[08:44:47] <etg> https://xmpp-upload.eltrincagoti.ynh.fr/upload/gHztEBCUjymv9883/928edea0-1877-4d6c-a2ce-bad988842895.png
[08:45:05] <etg> thanks, but I get that on the last screen
[08:45:20] <Maranda> You're not flagged as administrator in the config
[08:45:46] <etg> ah ok, should I login as admin user? I mean admin from my server
[08:46:36] <Maranda> The user flagged as server administrator in Metronome config file /etc/metronome/metronome.cfg.lua
[08:54:46] <etg> hmm I don't fine that line on that file in my server, running metrnome on yunohost, should I add a line?
[08:57:48] <etg> $ sudo cat /etc/metronome/metronome.cfg.lua
-- ** Metronome's config file example **
--
-- The format is exactly equal to Prosody's:
--
-- Lists are written { "like", "this", "one" }
-- Lists can also be of { 1, 2, 3 } numbers, etc.
-- Either commas, or semi-colons; may be used as seperators.
--
-- A table is a list of values, except each value has a name. An
-- example would be:
--
-- ssl = { key = "keyfile.key", certificate = "certificate.cert" }
--
-- Tip: You can check that the syntax of this file is correct when you have finished
-- by running: luac -p metronome.cfg.lua
-- If there are any errors, it will let you know what and where they are, otherwise it
-- will keep quiet.

-- Global settings go in this section

-- This is the list of modules Metronome will load on startup.
-- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.

modules_enabled = {
-- Generally required
"roster"; -- Allow users to have a roster. Recommended.
"saslauth"; -- Authentication for clients. Recommended if you want to log in.
"tls"; -- Add support for secure TLS on c2s/s2s connections
"disco"; -- Service discovery

-- Not essential, but recommended
"private"; -- Private XML storage (for room bookmarks, etc.)
"vcard"; -- Allow users to set vCards
"pep"; -- Allows setting of mood, tune, etc.
"pubsub"; -- Publish-subscribe XEP-0060
"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
"bidi"; -- Enables Bidirectional Server-to-Server Streams.

-- Nice to have
"version"; -- Replies to server version requests
"uptime"; -- Report how long server has been running
"time"; -- Let others know the time here on this server
"ping"; -- Replies to XMPP pings with pongs
"register"; -- Allow users to register on this server using a client and change passwords
"stream_management"; -- Allows clients and servers to use Stream Management
"stanza_optimizations"; -- Allows clients to use Client State Indication and SIFT
"message_carbons"; -- Allows clients to enable carbon copies of messages
"mam"; -- Enable server-side message archives using Message Archive Management
"push"; -- Enable Push Notifications via PubSub using XEP-0357
"lastactivity"; -- Enables clients to know the last presence status of an user
"adhoc_cm"; -- Allow to set client certificates to login through SASL External via adhoc
"admin_adhoc"; -- administration adhoc commands
"bookmarks"; -- XEP-0048 Bookmarks synchronization between PEP and Private Storage
"sec_labels"; -- Allows to use a simplified version XEP-0258 Security Labels and related ACDFs.
"privacy"; -- Add privacy lists and simple blocking command support

-- Other specific functionality
--"admin_telnet"; -- administration console, telnet to port 5582
--"admin_web"; -- administration web interface
"bosh"; -- Enable support for BOSH clients, aka "XMPP over Bidirectional Streams over Synchronous HTTP"
--"compression"; -- Allow clients to enable Stream Compression
--"spim_block"; -- Require authorization via OOB form for messages from non-contacts and block unsollicited messages
--"gate_guard"; -- Enable config-based blacklisting and hit-based auto-banning features
--"incidents_handling"; -- Enable Incidents Handling support (can be administered via adhoc commands)
--"server_presence"; -- Enables Server Buddies extension support
--"service_directory"; -- Enables Service Directories extension support
--"public_service"; -- Enables Server vCard support for public services in directories and advertises in features
--"register_api"; -- Provides secure API for both Out-Of-Band and In-Band registration for E-Mail verification
"websocket"; -- Enable support for WebSocket clients, aka "XMPP over WebSockets"
};

-- Server PID
pidfile = "/var/run/metronome/metronome.pid"

-- HTTP server
http_ports = { 5290 }
http_interfaces = { "127.0.0.1", "::1" }

--https_ports = { 5291 }
--https_interfaces = { "127.0.0.1", "::1" }

-- Enable IPv6
use_ipv6 = true

-- BOSH configuration (mod_bosh)
consider_bosh_secure = true
cross_domain_bosh = true

-- WebSocket configuration (mod_websocket)
consider_websocket_secure = true
cross_domain_websocket = true

-- Disable account creation by default, for security
allow_registration = false

-- Use LDAP storage backend for all stores
storage = "ldap"

-- stanza optimization
csi_config_queue_all_muc_messages_but_mentions = false;


-- Logging configuration
log = {
info = "/var/log/metronome/metronome.log"; -- Change 'info' to 'debug' for verbose logging
error = "/var/log/metronome/metronome.err";
-- "*syslog"; -- Uncomment this for logging to syslog
-- "*console"; -- Log to the console, useful for debugging with daemonize=false
}

------ Components ------
-- You can specify components to add hosts that provide special services,
-- like multi-user conferences, and transports.

---Set up a local BOSH service
Component "localhost" "http"
modules_enabled = { "bosh" }

----------- Virtual hosts -----------
-- You need to add a VirtualHost entry for each domain you wish Metronome to serve.
-- Settings under each VirtualHost entry apply *only* to that host.

Include "conf.d/*.cfg.lua"

[10:06:31] <Maranda> Add in the global section (before "Components"):
admins = { "admin@mydomain.tld" }
[10:06:41] <Maranda> where admin@mydomain.tld is your JID
[10:07:52] <Maranda> reload config and/or restart Metronome
[12:35:42] <etg> 🙏️ it worked! thank you so much mr. Maranda