diff options
author | Andrew Lewis <nerf@judo.za.org> | 2014-02-07 12:10:09 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2014-02-07 12:10:09 +0200 |
commit | dca39cf240e1bcdd255b60236eb88b9fd4663513 (patch) | |
tree | 2ccbb5dd84b5c32bbde63bd5bb733171818e3cfd /doc | |
parent | fa8e1dc94f5db51d9f171021c661f4799dacd793 (diff) | |
download | rspamd-dca39cf240e1bcdd255b60236eb88b9fd4663513.tar.gz rspamd-dca39cf240e1bcdd255b60236eb88b9fd4663513.zip |
Fix documentation for RBL module - rbls {} was not referenced
Diffstat (limited to 'doc')
-rw-r--r-- | doc/markdown/modules/rbl.md | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/markdown/modules/rbl.md b/doc/markdown/modules/rbl.md index ccbff68df..055b06a02 100644 --- a/doc/markdown/modules/rbl.md +++ b/doc/markdown/modules/rbl.md @@ -6,11 +6,14 @@ Configuration is structured as follows: ~~~nginx rbl { - # default settings - an_rbl { - # rbl-specific subsection + # default settings defined here + # 'rbls' subsection under which the RBL definitions are nested + rbls { + an_rbl { + # rbl-specific subsection + } + # ... } - # ... } ~~~ |