$OpenBSD$
--- config/configuration.yml.example.orig	Wed Mar 20 00:32:31 2013
+++ config/configuration.yml.example	Thu Mar 21 14:32:13 2013
@@ -80,33 +80,27 @@
 
 # default configuration options for all environments
 default:
-  # Outgoing emails configuration (see examples above)
+  # OpenBSD note: this will not work in chrooted environment, you'll have
+  # to use SMTP delivery method instead. See the examples above.
   email_delivery:
-    delivery_method: :smtp
-    smtp_settings:
-      address: smtp.example.net
-      port: 25
-      domain: example.net
-      authentication: :login
-      user_name: "redmine@example.net"
-      password: "redmine"
+    delivery_method: :sendmail
 
   # Absolute path to the directory where attachments are stored.
   # The default is the 'files' directory in your Redmine instance.
   # Your Redmine instance needs to have write permission on this
   # directory.
-  # Examples:
-  # attachments_storage_path: /var/redmine/files
-  # attachments_storage_path: D:/redmine/files
-  attachments_storage_path:
+  #
+  # OpenBSD note: if you ever try to use a chrooted environment, you'd have
+  # to recreate the whole hierarchy under /var/www (or whatever).
+  attachments_storage_path: /var/redmine/files
 
   # Configuration of the autologin cookie.
   # autologin_cookie_name: the name of the cookie (default: autologin)
   # autologin_cookie_path: the cookie path (default: /)
   # autologin_cookie_secure: true sets the cookie secure flag (default: false)
-  autologin_cookie_name:
-  autologin_cookie_path:
-  autologin_cookie_secure:
+  autologin_cookie_name: autologin
+  autologin_cookie_path: /
+  autologin_cookie_secure: false
 
   # Configuration of SCM executable command.
   #
@@ -151,7 +145,7 @@ default:
   # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
   # * change the cipher key here in your configuration file
   # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
-  database_cipher_key:
+  database_cipher_key: '@DBCIPHERKEY@'
 
   # Set this to false to disable plugins' assets mirroring on startup.
   # You can use `rake redmine:plugins:assets` to manually mirror assets
@@ -166,11 +160,11 @@ default:
   #
   # If you have a load-balancing Redmine cluster, you have to use the
   # same secret token on each machine.
-  #secret_token: 'change it to a long random string'
+  secret_token: '@STOKEN@'
 
   # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
   # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
-  #imagemagick_convert_command:
+  imagemagick_convert_command: ${LOCALBASE}/bin/convert
 
   # Configuration of RMagcik font.
   #
@@ -192,7 +186,11 @@ default:
   #   Linux:
   #     rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
   #
-  rmagick_font_path:
+  # OpenBSD notes: you'll need to install ja-mplus-ttf package;
+  # if you want to go chroot, rememeber to copy the font choosen
+  # inside chroot.
+  #
+  rmagick_font_path: ${LOCALBASE}/lib/X11/fonts/mplus/ipam.ttf
 
   # Maximum number of simultaneous AJAX uploads
   #max_concurrent_ajax_uploads: 2
