diff mod_motd_sequential/README.markdown @ 1803:4d73a1a6ba68

Convert all wiki pages to Markdown
author Kim Alvefur <zash@zash.se>
date Fri, 28 Aug 2015 18:03:58 +0200
parents mod_motd_sequential/README.wiki@29f3d6b7ad16
children 8de50be756e5
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_motd_sequential/README.markdown	Fri Aug 28 18:03:58 2015 +0200
@@ -0,0 +1,28 @@
+---
+labels:
+- 'Stage-Beta'
+summary: Sequential MOTD messages
+...
+
+Introduction
+============
+
+mod\_motd\_sequential is a variant of
+[mod\_motd](https://prosody.im/doc/modules/mod_motd) that lets you
+specify a sequence of MOTD messages instead of a single static one. Each
+message is only sent once and the module keeps track of who as seen
+which message.
+
+Configuration
+=============
+
+
+        modules_enabled = {
+            -- other modules
+                "motd_sequential";
+        }
+        motd_sequential_messages = {
+            "Hello and welcome to our service!", -- First login
+            "Lorem ipsum dolor sit amet", -- Second time they login
+            -- Add more messages here.
+        }