Update refernecs to file table module

It is named just 'file' now.
This commit is contained in:
fox.cpp 2020-05-04 23:00:20 +03:00
parent 3f1a4e5868
commit e3da7f3a89
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
4 changed files with 11 additions and 11 deletions

View file

@ -147,7 +147,7 @@ chmod u+xs,g+x,o-x /usr/lib/maddy/maddy-shadow-helper
This module implements username:password authentication by looking up the
password hash using a table module (maddy-tables(5)). It can be used
to load user credentials from text file (file_table module) or SQL query
to load user credentials from text file (file module) or SQL query
(sql_table module).
@ -168,7 +168,7 @@ pass_table <table> [table arguments] {
Example, read username:password pair from the text file:
```
smtp tcp://0.0.0.0:587 {
auth pass_table file_table /etc/maddy/smtp_passwd
auth pass_table file /etc/maddy/smtp_passwd
...
}
```
@ -220,7 +220,7 @@ Configuration block for any module from maddy-tables(5) can be used here.
Example:
```
user file_table /etc/maddy/allowed_users
user file /etc/maddy/allowed_users
```
**Syntax:** pass _auth provider_

View file

@ -475,7 +475,7 @@ Takes precedence over all 'sender' directives.
Example:
```
source_in file_table /etc/maddy/banned_addrs {
source_in file /etc/maddy/banned_addrs {
reject 550 5.7.0 "You are not welcome here"
}
source example.org {
@ -552,7 +552,7 @@ Takes precedence over all 'destination' directives.
Example:
```
destination_in file_table /etc/maddy/remote_addrs {
destination_in file /etc/maddy/remote_addrs {
deliver_to smtp_downstream tcp://10.0.0.7:25
}
destination example.com {

View file

@ -11,7 +11,7 @@ change the source of data, effectively turning the table into a complete
interface to a key-value store for maddy. Such tables are referred to as
"mutable tables".
# File mapping (file_table)
# File mapping (file)
This module builds string-string mapping from a text file.
@ -20,11 +20,11 @@ modification time). No changes are applied if file contains syntax errors.
Definition:
```
file_table <file path>
file <file path>
```
or
```
file_table {
file {
file <file path>
}
```
@ -33,7 +33,7 @@ Usage example:
```
# Resolve SMTP address aliases using text file mapping.
modify {
alias file_table /etc/maddy/aliases
alias file /etc/maddy/aliases
}
```

View file

@ -101,8 +101,8 @@ modifiers local_modifiers {
# Implement plus-address notation.
replace_rcpt regexp "(.+)\+(.+)@(.+)" "$1@$3"
# Resolve aliases using text file. See "replace_rcpt" section
# in maddy-filter(5) and "file_table" in maddy-tables(5) for details.
replace_rcpt file_table /etc/maddy/aliases
# in maddy-filter(5) and "file" in maddy-tables(5) for details.
replace_rcpt file /etc/maddy/aliases
}
limits outbound_limits {