Index: trunk/grails-app/conf/Config.groovy
===================================================================
--- trunk/grails-app/conf/Config.groovy	(revision 943)
+++ trunk/grails-app/conf/Config.groovy	(revision 944)
@@ -17,12 +17,14 @@
     grails.config.locations = [ "classpath:${appName}-config.groovy" ]
 
+//grails.project.groupId = appName // change this to alter the default package name and Maven publishing destination
+
 // Set false due to acegi security issue.
 // See: http://jira.grails.org/browse/GPACEGI-41
 // See: http://www.gnumims.org/trac/ticket/98
 grails.mime.file.extensions = false // enables the parsing of file extensions from URLs into the request format
-
+//grails.mime.use.accept.header = false
 grails.mime.types = [ html: ['text/html','application/xhtml+xml'],
                       xml: ['text/xml', 'application/xml'],
-                      text: 'text-plain',
+                      text: 'text/plain',
                       js: 'text/javascript',
                       rss: 'application/rss+xml',
@@ -39,4 +41,8 @@
                       multipartForm: 'multipart/form-data'
                     ]
+
+// URL Mapping Cache Max Size, defaults to 5000
+//grails.urlmapping.cache.maxsize = 1000
+
 // The default codec used to encode data with ${}
 grails.views.default.codec="none" // none, html, base64
@@ -55,8 +61,11 @@
 grails.enable.native2ascii = true
 
-// whether to install the java.util.logging bridge for sl4j. Disable fo AppEngine!
+// whether to install the java.util.logging bridge for sl4j. Disable for AppEngine!
 grails.logging.jul.usebridge = true
 // packages to include in Spring bean scanning
 grails.spring.bean.packages = []
+
+// request parameters to mask when logging exceptions
+grails.exceptionresolver.params.exclude = ['password']
 
 /**
