mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
Update refernecs to file table module
It is named just 'file' now.
This commit is contained in:
parent
3f1a4e5868
commit
e3da7f3a89
4 changed files with 11 additions and 11 deletions
|
@ -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_
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue