# File lib/mail/utilities.rb, line 147
    def capitalize_field( str )
      str.to_s.split("-").map { |v| v.capitalize }.join("-")
    end