diff --git a/man/mta-sts-daemon.yml.5.adoc b/man/mta-sts-daemon.yml.5.adoc
index 3fc4ad18618f8dac955862ca50524e7b2cdb250e..127a4b2d254492001eebf9fbe6aae14f3cd400fa 100644
--- a/man/mta-sts-daemon.yml.5.adoc
+++ b/man/mta-sts-daemon.yml.5.adoc
@@ -32,7 +32,7 @@ The file is in YAML syntax with the following elements:
 
 *cache*::
 
-* *type*: (_str_: _internal_|_sqlite_|_redis_|_redis_sentinel_) cache backend type. Default: internal
+* *type*: (_str_: _internal_|_sqlite_|_redis_|_redis_sentinel_|postgres) cache backend type. Default: internal
 * *options*:
  ** Options for _internal_ type:
   *** *cache_size*: (_int_) number of cache entries to store in memory. Default: 10000
@@ -44,8 +44,10 @@ The file is in YAML syntax with the following elements:
   *** All parameters are passed to `aioredis.from_url` [0]. Check there for a parameter reference.
  ** Options for _redis_sentinel_ type:
   *** *sentinel_master_name*: (_str_) name of the sentinel master
-  *** *sentinels*: (_list_)(_tuple_) list of sentinels in form of ip/fqdn and port
+  *** *sentinels*: (_list_)(_tuple_) list of sentinels in form of IP/FQDN and port
   *** All other parameters are passed to `aioredis.sentinel.Sentinel` [1]. For additional details check [2].
+ ** Options for _postgres_ type:
+  *** *dsn*: (_str_) database connection string
 
 *proactive_policy_fetching*::