d76fc1
diff --git a/doc/examples/imapd_conf/normal.conf b/doc/examples/imapd_conf/normal.conf
d76fc1
index 95b54e9..3935b77 100644
d76fc1
--- a/doc/examples/imapd_conf/normal.conf
d76fc1
+++ b/doc/examples/imapd_conf/normal.conf
d76fc1
@@ -10,7 +10,7 @@ admins: cyrus
d76fc1
 ###################################################################
d76fc1
 
d76fc1
 # Configuration directory
d76fc1
-configdirectory: /var/lib/cyrus
d76fc1
+configdirectory: /var/lib/imap
d76fc1
 
d76fc1
 # Directories for proc and lock files
d76fc1
 proc_path: /run/cyrus/proc
d76fc1
@@ -19,18 +19,18 @@ mboxname_lockpath: /run/cyrus/lock
d76fc1
 # Locations for DB files
d76fc1
 # The following DB are recreated upon initialization, so should live in
d76fc1
 # ephemeral storage for best performance.
d76fc1
-duplicate_db_path: /run/cyrus/deliver.db
d76fc1
-ptscache_db_path:  /run/cyrus/ptscache.db
d76fc1
-statuscache_db_path: /run/cyrus/statuscache.db
d76fc1
-tls_sessions_db_path: /run/cyrus/tls_sessions.db
d76fc1
+duplicate_db_path: /run/cyrus/db/deliver.db
d76fc1
+ptscache_db_path:  /run/cyrus/db/ptscache.db
d76fc1
+statuscache_db_path: /run/cyrus/db/statuscache.db
d76fc1
+tls_sessions_db_path: /run/cyrus/db/tls_sessions.db
d76fc1
 
d76fc1
 # Which partition to use for default mailboxes
d76fc1
 defaultpartition: default
d76fc1
-partition-default: /var/spool/cyrus/mail
d76fc1
+partition-default: /var/spool/imap
d76fc1
 
d76fc1
 # If sieveusehomedir is false (the default), this directory is searched
d76fc1
 # for Sieve scripts.
d76fc1
-sievedir: /var/spool/sieve
d76fc1
+sievedir: /var/lib/imap/sieve
d76fc1
 
d76fc1
 ###################################################################
d76fc1
 ## Important: KEEP THESE IN SYNC WITH cyrus.conf
d76fc1
@@ -51,19 +51,16 @@ syslog_prefix: cyrus
d76fc1
 # Space-separated list of HTTP modules that will be enabled in
d76fc1
 # httpd(8).  This option has no effect on modules that are disabled at
d76fc1
 # compile time due to missing dependencies (e.g. libical).
d76fc1
-#
d76fc1
-# Allowed values: caldav, carddav, domainkey, ischedule, rss
d76fc1
-httpmodules: caldav carddav
d76fc1
+# Fedora default: enable all modules besides admin and tzdist
d76fc1
+httpmodules: caldav carddav domainkey freebusy ischedule rss webdav
d76fc1
 
d76fc1
 # If enabled, the partitions will also be hashed, in addition to the
d76fc1
 # hashing done on configuration directories. This is recommended if one
d76fc1
 # partition has a very bushy mailbox tree.
d76fc1
 hashimapspool: true
d76fc1
 
d76fc1
-# Enable virtual domains
d76fc1
-# and set default domain to localhost
d76fc1
-virtdomains: yes
d76fc1
-defaultdomain: localhost
d76fc1
+# Disable virtual domains by default
d76fc1
+virtdomains: off
d76fc1
 
d76fc1
 ###################################################################
d76fc1
 ## User experience settings
d76fc1
@@ -72,6 +69,14 @@ defaultdomain: localhost
d76fc1
 # Minimum time between POP mail fetches in minutes
d76fc1
 popminpoll: 1
d76fc1
 
d76fc1
+# Conversation support is required for jmap
d76fc1
+conversations: 1
d76fc1
+conversations_db: twoskip
d76fc1
+
d76fc1
+# This will default to on in 3.1, and improves compatibility with some Apple
d76fc1
+# devices.  Upstream https://github.com/cyrusimap/cyrus-imapd/issues/1556
d76fc1
+specialusealways: 1
d76fc1
+
d76fc1
 ###################################################################
d76fc1
 ## User Authentication settings
d76fc1
 ###################################################################
d76fc1
@@ -99,6 +104,12 @@ sasl_auto_transition: no
d76fc1
 ## SSL/TLS Options
d76fc1
 ###################################################################
d76fc1
 
d76fc1
+# These three files will automatically be generated by the systemd unit when
d76fc1
+# the service starts for the first time.
d76fc1
+tls_server_cert: /etc/pki/cyrus-imapd/cyrus-imapd.pem
d76fc1
+tls_server_key: /etc/pki/cyrus-imapd/cyrus-imapd-key.pem
d76fc1
+tls_client_ca_file: /etc/pki/cyrus-imapd/cyrus-imapd-ca.pem
d76fc1
+
d76fc1
 # File containing the global certificate used for ALL services (imap,
d76fc1
 # pop3, lmtp, sieve)
d76fc1
 #tls_server_cert: /etc/ssl/certs/ssl-cert-snakeoil.pem
d76fc1
diff --git a/doc/examples/cyrus_conf/prefork.conf b/doc/examples/cyrus_conf/prefork.conf
d76fc1
index 186fe66..ab97848 100644
d76fc1
--- a/doc/examples/cyrus_conf/prefork.conf
d76fc1
+++ b/doc/examples/cyrus_conf/prefork.conf
d76fc1
@@ -19,8 +19,8 @@ SERVICES {
d76fc1
 #  nntps         cmd="nntpd -s" listen="nntps" prefork=1
d76fc1
 
d76fc1
   # these are only necessary if using HTTP for CalDAV, CardDAV, or RSS
d76fc1
-#  http          cmd="httpd" listen="http" prefork=3
d76fc1
-#  https         cmd="httpd -s" listen="https" prefork=1
d76fc1
+  http          cmd="httpd" listen="http" prefork=3
d76fc1
+  https         cmd="httpd -s" listen="https" prefork=1
d76fc1
 
d76fc1
   # at least one LMTP is required for delivery
d76fc1
 #  lmtp          cmd="lmtpd" listen="lmtp" prefork=0