# File lib/vmail/imap_client.rb, line 632
    def reply_template(replyall=false)
      log "sending reply template"
      if @current_mail.nil?
        log "- missing @current mail!"
        return nil
      end
      # user reply_template class
      reply_headers = Vmail::ReplyTemplate.new(@current_mail, @username, @name, replyall).reply_headers
      body = reply_headers.delete(:body)
      format_headers(reply_headers) + "\n\n\n" + body + signature
    end