Outlook Web Access에서 인터넷 스타일 인용을 활성화하려면 어떻게 해야 합니까?

Outlook Web Access에서 인터넷 스타일 인용을 활성화하려면 어떻게 해야 합니까?

어떻게 활성화할 수 있나요?인터넷 스타일 인용Outlook Web Access에서? 나는 발견했다여러 개의 가이드~에어떻게Outlook에서는 활성화하지만 Outlook Web Access에서는 활성화하지 않습니다. 우리는 버전 8.1을 실행하고 있습니다.

외부에서 Exchange/IMAP을 사용하여 서버에 액세스할 수 없습니다. 답장을 보내기 전에 긴 이메일을 편집하는 데 많은 시간을 소비해야 하기 때문에 이는 현재 나에게 심각한 문제를 야기하고 있습니다.

답변1

아니, 당신은할 수 없다OWA에서 이메일 인용을 하세요. 즉, Firefox를 다음과 함께 사용할 수 있습니다.그것은 모두 텍스트입니다!텍스트 편집기에서 텍스트를 연 다음 거기에 인용 접두사를 추가하는 추가 기능입니다. 에서Outlook 인용 스타일 수정:

  1. OWA에서 메시지에 회신하도록 선택합니다. 끔찍하게 인용된 메시지 텍스트가 나타납니다.

  2. 합리적으로 스마트한 편집기에서 메시지 텍스트를 열려면 It's All Text 또는 기타 유사한 도구를 사용하십시오.

  3. 이 스크립트를 통해 전체 메시지 텍스트를 필터링합니다. 예를 들어 Vim type 에서 :%!path-to-script.rb스크립트를 실행 가능하게 만든 후입니다.

  4. 원본 메시지 텍스트를 필터 출력으로 바꿉니다. It's All Text를 사용하는 경우에는 :wq.

  5. 프레스토 악장! 메시지를 올바르게 인용했습니다. 하지만 사인을 옮겨야 할 수도 있습니다.

이것이 그것을 사용하는 방법입니다. 이제 스크립트는 다음과 같습니다.

#!/usr/bin/env ruby
# Fix outlook quoting. Inspired by perl original by Kevin D. Clark.
# This program is meant to be used as a text filter. It reads a plaintext
# outlook-formatted email and fixes the quoting to the "internet style",
# so that::
#
#   -----Original Message-----
#   [from-header]: Blah blah
#   [timestamp-header]: day month etc
#   [...]
#
#   message text
#
# or::
#
#   ___________________________
#   [from-header]: Blah blah
#   [timestamp-header]: day month etc
#   [...]
#
#   message text
#
# becomes::
#
#   On day month etc, Blah blah wrote:
#   > message text
#
# It's not meant to alter the contents of other peoples' messages, just to
# filter the topmost message so that when you start replying, you get a nice
# basis to start from.
require 'date'
require 'pp'
 
message = ARGF.read
# split into two parts at the first reply delimiter
# match group so leaves the delim in the array,
# this gets stripped away in the FieldRegex if's else clause
msgparts = message.split(/(---*[\w\s]+---*|______*)/)
# first bit is what we've written so far
mymsg = msgparts.slice!(0)
# rest is the quoted message
theirmsg = msgparts.join
# this regex separates message header field name from field content
FieldRegex = /^\s*(.+?):\s*(.+)$/
from = nil
date = nil
theirbody = []
theirmsg.lines do |line|
  if !from || !date
    if FieldRegex =~ line
      parts = line.scan(FieldRegex)
      if !from
        from = parts.first.last
      elsif !date
        begin
          DateTime.parse(parts.first.last)
          date = parts.first.last
        rescue ArgumentError
          # not a parseable date.. let's just fail
          date = " "
        end
      end
    else
      # ignore non-field, this strips extra message delims for example
    end
  else
    theirbody << line.gsub(/^/, "> ").gsub(/> >/, ">>")
  end
end
 
puts mymsg
puts "On #{date}, #{from} wrote:\n"
puts theirbody.join("")

답변2

제가 한 일은 다음과 같습니다.

인용하려는 메시지 부분을 복사하고 답장까지 다시 스크롤한 다음 "인용" 버튼("메시지" 도구 모음 아래)을 클릭하고 붙여넣습니다.

"인용" 단추가 강조 표시된 Outlook 웹 서식 도구 모음

붙여넣은 메시지는 왼쪽에 회색 막대의 기본 스타일로 나타납니다. 인용된 텍스트 안에 답글을 삽입하려면 거기에 커서를 놓고 Enter 또는 Return 키를 몇 번 눌러 인용문을 벗어나 인라인 답글을 입력하세요.

Outlook 365 OWA 웹 앱에서 인용되지 않은 인라인 회신과 인용된 부분이 삽입되어 있는 것을 보여주는 이메일 메시지. 텍스트는 Bhagavad-Gita 2장의 인용문입니다.

이것은 outlook.office365.com에서 호스팅되는 Outlook Web App에 있습니다. 어떤 버전인지 어떻게 확인하는지 잘 모르겠지만, 이 글을 쓰는 시점(2023년 8월) 현재 버전인 것 같습니다. 도움이 되었기를 바랍니다. 더 내장되었으면 좋겠지만 적어도 너무 어렵지 않고 추가 소프트웨어나 플러그인이 필요하지 않습니다.

답변3

Linux를 사용한다고 가정하면 시도해 볼 수 있는 몇 가지 대체 이메일 클라이언트가 있습니다.

금언:진화- 이것은 확실히 작동하지만 OWA를 통해 Exchnage에 연결됩니다.

KDE:연락처- 이는 이전 Exchange 서버에서도 작동하는 것으로 보입니다.

관련 정보