3 summary: Default bookmarked chatrooms
9 This module allows you to add default bookmarks for users. It only kicks
10 in when the user has no existing bookmarks, so users are free to add,
11 change or remove them.
16 Most clients support storing a private list of room "bookmarks" on the
17 server. When they log in, they fetch this list and join any that are
18 marked as "autojoin". If this list is empty, as it would be for new
19 users, this module would return the list supplied in the config.
24 Add "default\_bookmarks" to your modules\_enabled list:
27 -- ...other modules here... --
29 -- ...maybe some more here... --
32 Then add a list of the default rooms you want:
35 { jid = "room@conference.example.com", name = "The Room" };
36 -- Specifying a password is supported:
37 { jid = "secret-room@conference.example.com", name = "A Secret Room", password = "secret" };
38 -- You can also use this compact syntax:
39 "yetanother@conference.example.com"; -- this will get "yetanother" as name
45 ------- ---------------
49 ------- ---------------