diff options
author | Ruben Pollan <meskio@sindominio.net> | 2015-11-26 19:08:15 +0100 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2015-11-26 19:10:52 +0100 |
commit | 33ff87e46bef6bcc980ed4885d8950e3d912032e (patch) | |
tree | 87cb1c625b6280dacdf9b04958d356f22128f732 /doc | |
parent | 4557b215775b9dbc438292449d05806f2e43ae0f (diff) |
[doc] document the return codes of the TCP maps
- Resolves: #7271
Diffstat (limited to 'doc')
-rw-r--r-- | doc/DESIGN.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/DESIGN.md b/doc/DESIGN.md index e98976d..e33c6ae 100644 --- a/doc/DESIGN.md +++ b/doc/DESIGN.md @@ -145,6 +145,18 @@ virtual transport instead, we should append the domain (eg 123456@example.org). see http://www.postfix.org/ADDRESS_REWRITING_README.html#resolve +#### Return values + +The return codes and content of the tcp maps are: + + +----------------------------------------------------------+ + | virtual_alias_map | check_recipient_access | ++----------------+---------------------+------------------------------------+ +| user not found | 500 "NOT FOUND SRY" | 500 "REJECT" | +| key not found | 200 "<uuid>" | 400 "4.7.13 USER ACCOUNT DISABLED" | +| both found | 200 "<uuid>" | 200 "OK" | ++----------------+---------------------+------------------------------------+ + ### Current status |