96a1e34
diff --git a/bugz/cli.py b/bugz/cli.py
96a1e34
index aa45d3b..12e2224 100644
96a1e34
--- a/bugz/cli.py
96a1e34
+++ b/bugz/cli.py
96a1e34
@@ -240,7 +240,10 @@ class PrettyBugz:
96a1e34
 			log_info(log_msg)
96a1e34
 
96a1e34
 		if not 'status' in params.keys():
96a1e34
-			params['status'] = ['CONFIRMED', 'IN_PROGRESS', 'UNCONFIRMED']
96a1e34
+			params['status'] = ['CONFIRMED', 'IN_PROGRESS',
96a1e34
+					'UNCONFIRMED', 'NEW', 'ASSIGNED', 'ON_DEV',
96a1e34
+					'POST', 'MODIFIED', 'ON_QA', 'VERIFIED',
96a1e34
+					'RELEASE_PENDING']
96a1e34
 		elif 'ALL' in params['status']:
96a1e34
 			del params['status']
96a1e34
 
96a1e34
diff --git a/bugzrc.example b/bugzrc.example
96a1e34
index f516bf0..e8e1234 100644
96a1e34
--- a/bugzrc.example
96a1e34
+++ b/bugzrc.example
96a1e34
@@ -59,3 +59,20 @@
96a1e34
 #
96a1e34
 # All parameters listed above can be used in the default section if you
96a1e34
 # only use one bugzilla installation.
96a1e34
+
96a1e34
+[gentoo]
96a1e34
+base: https://bugs.gentoo.org/xmlrpc.cgi
96a1e34
+columns: 80
96a1e34
+encoding: utf-8
96a1e34
+# user: myname@my.project.com
96a1e34
+# password: secret2
96a1e34
+
96a1e34
+[redhat]
96a1e34
+base: https://bugzilla.redhat.com/xmlrpc.cgi
96a1e34
+columns: 80
96a1e34
+encoding: utf-8
96a1e34
+# user: myname@my.project.com
96a1e34
+# password: secret2
96a1e34
+
96a1e34
+[default]
96a1e34
+connection: redhat
96a1e34
diff --git a/man/bugz.1 b/man/bugz.1
96a1e34
index 5a88494..365ab7e 100644
96a1e34
--- a/man/bugz.1
96a1e34
+++ b/man/bugz.1
96a1e34
@@ -28,6 +28,12 @@ This man page is a stub; the bugz program has extensive built in help.
96a1e34
 will show the help for the global options and
96a1e34
 .B bugz [subcommand] -h
96a1e34
 will show the help for a specific subcommand.
96a1e34
+.SH CONFIGURATION
96a1e34
+PyBugz is still configured just using the ~/.bugzrc file.  For simple template
96a1e34
+look at the bugzrc.example
96a1e34
+.B (rpm -qd pybugz | grep example)
96a1e34
+- you may copy it directly into your home directory to make PyBugz work by
96a1e34
+default with Red Hat bugzilla.
96a1e34
 .SH BUGS
96a1e34
 .PP
96a1e34
 The home page of this project is http://www.github.com/williamh/pybugz.