# HG changeset patch # User Kim Alvefur # Date 1346865061 -7200 # Node ID f9b80a58366fc94b81bf83f3bfe34b48bf786384 # Parent d745b203cbbd1b24a85d61b056260f4847ccd40e Add page for mod_default_bookmarks diff -r d745b203cbbd -r f9b80a58366f mod_default_bookmarks.wiki --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_default_bookmarks.wiki Wed Sep 05 19:11:01 2012 +0200 @@ -0,0 +1,31 @@ +#summary Default bookmarked chatrooms + += Introduction = + +This module allows you to add default bookmarks for users. It only kicks in when the user has no existing bookmarks, so users are free to add, change or remove them. + += Details = + +Most clients support storing a private list of room "bookmarks" on the server. When they log in, they fetch this list and join any that are marked as "autojoin". If this list is empty, as it would be for new users, this module would return the list supplied in the config. + += Configuration = + +Add "default_bookmarks" to your modules_enabled list: +{{{ + modules_enabled = { + -- ...other modules here... -- + "default_bookmarks"; + -- ...maybe some more here... -- + } +}}} + +Then add a list of the default rooms you want: + +{{{ +default_bookmarks = { + { jid = "room@conference.example.com", name = "The Room" }; + { jid = "another-room@conference.example.com", name = "The Other Room" }; + -- You can also use this compact syntax: + "yetanother@conference.example.com"; -- this will get "yetanother" as name +}; +}}} \ No newline at end of file