# File lib/net/yail/output_api.rb, line 114
  def ctcpreply(target, text)
    # Dup strings so handler can filter safely
    target = target.dup
    text = text.dup

    handle(:outgoing_ctcpreply, target, text)

    report "{#{target}} [Reply: #{@me} #{text}]" unless @silent
    notice(target, "\001#{text}\001")
  end