diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-31 18:59:22 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-31 18:59:22 +0000 |
commit | 92e28d4047e9426ceb9ab54aa64a9cf8ff03ed49 (patch) | |
tree | 12d6666e4d74298b662271ffdca2b0735eb1f48a /doc | |
parent | 99740e83f2f8a94467ba301431ca2c4192c4c2ed (diff) |
- Implement motd{} configuration blocks based on ircu's implementation
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2151 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'doc')
-rw-r--r-- | doc/reference.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/reference.conf b/doc/reference.conf index 6fd28ef..6b75d02 100644 --- a/doc/reference.conf +++ b/doc/reference.conf @@ -292,6 +292,24 @@ class { }; /* + * motd {}: specifies various MOTD files. Applies to local users only. + */ +motd { + /* + * mask: multiple mask entries are permitted. Mask can either be + * a class name or a hostname. + */ + mask = "*.at"; + mask = "*.de"; + mask = "*.ch"; + + /* + * file: path top the actual motd file. + */ + file = "/usr/local/ircd/etc/german.motd"; +}; + +/* * listen {}: contains information about the ports ircd listens on */ listen { |