diff --git a/CHANGELOG.md b/CHANGELOG.md
index a92034869d0d12f1701ec0976bfcb02c1f5067f5..8f76b0713616206b544dc98484f28fb684774c9a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - [core] backup halt should trigger email report if enabled
 - [core] wrap report email body to 1000 characters by default (DEBBUG-871793)
 - [core] improve error handling around `reporthost` feature
+- [docs] add missing parameters to `backupninja.conf` manpage
 
 ## [1.2.0] - 2021-01-21
 
diff --git a/man/backupninja.conf.5 b/man/backupninja.conf.5
index 76a7ae0e0cd7a175d945c12e97cd57c537e41635..b503099d69dbaeff399c6f91f7eaf4579fd235e0 100644
--- a/man/backupninja.conf.5
+++ b/man/backupninja.conf.5
@@ -50,11 +50,31 @@ Send a summary of the backup status to this email address.
 .B reportsuccess
 If set to 'yes', a report email will be generated even if all modules reported success.
 
+.TP
+.B reportinfo
+If set to 'yes', info messages from handlers will be sent into the email.
+
 .TP
 .B reportwarning
 If set to 'yes', a report email will be generated even if there was no error.
 
 .TP
+.B reportspace
+If set to 'yes', disk space usage will be included in the backup email report.
+
+.TP
+.B reporthost
+Where to rsync the backupninja.log to be aggregated in a ninjareport.
+
+.Ts
+.B reportuser
+What user to connect to reporthost to sync the backupninja.log
+
+.TP
+.B reportdirectory
+Where on the reporthost should the report go.
+
+.Te
 .B reportwrap
 Number of columns the email report body should wrap to.
 
@@ -113,7 +133,15 @@ reportemail = root
 .br
 reportsuccess = yes
 .br
-reportwarning = yes
+reportinfo = no
+.br
+reportspace = no
+.br
+reporthost =
+.br
+reportuser = ninja
+.br
+reportdirectory = /var/lib/backupninja/reports
 .br
 reportwrap = 1000
 .br