# File lib/mail/utilities.rb, line 91
    def unparen( str )
      match = str.match(/^\((.*?)\)$/)
      match ? match[1] : str
    end