# File lib/mongrel/configurator.rb, line 236
236:     def load_mime_map(file, mime={})
237:       # configure any requested mime map
238:       mime = load_yaml(file, mime)
239: 
240:       # check all the mime types to make sure they are the right format
241:       mime.each {|k,v| log "WARNING: MIME type #{k} must start with '.'" if k.index(".") != 0 }
242: 
243:       return mime
244:     end