Software / code / prosody-modules
Comparison
mod_motd_sequential/README.markdown @ 1820:8de50be756e5
Various README files: Correct indentation levels, fix syntax and other small fixes
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Wed, 02 Sep 2015 17:30:33 +0200 |
| parent | 1803:4d73a1a6ba68 |
comparison
equal
deleted
inserted
replaced
| 1819:1b08597b5e6f | 1820:8de50be756e5 |
|---|---|
| 14 which message. | 14 which message. |
| 15 | 15 |
| 16 Configuration | 16 Configuration |
| 17 ============= | 17 ============= |
| 18 | 18 |
| 19 | 19 ``` lua |
| 20 modules_enabled = { | 20 modules_enabled = { |
| 21 -- other modules | 21 -- other modules |
| 22 "motd_sequential"; | 22 "motd_sequential"; |
| 23 } | 23 } |
| 24 motd_sequential_messages = { | 24 motd_sequential_messages = { |
| 25 "Hello and welcome to our service!", -- First login | 25 "Hello and welcome to our service!", -- First login |
| 26 "Lorem ipsum dolor sit amet", -- Second time they login | 26 "Lorem ipsum dolor sit amet", -- Second time they login |
| 27 -- Add more messages here. | 27 -- Add more messages here. |
| 28 } | 28 } |
| 29 ``` |