OWA에서 메시지에 회신하도록 선택하십시오. 엄청나게 인용 된 메시지 텍스트가 나타납니다.
합리적으로 똑똑한 편집기에서 메시지 텍스트를 열려면 모두 텍스트 또는 기타 유사한 도구를 사용하십시오.
이 스크립트를 통해 전체 메시지 텍스트를 필터링하십시오. 예를 들어 :%!path-to-script.rb
스크립트를 실행 가능하게 만든 후 Vim 유형으로 예를 들어 .
원본 메시지 텍스트를 필터 출력으로 바꿉니다. 모두 텍스트를 사용하는 경우을 입력하십시오 :wq
.
프레스토 악장! 올바르게 인용 된 메시지. 그래도 시그를 움직여야 할 수도 있습니다.
그것이 그것을 사용하는 방법입니다, 이제 여기 스크립트가 있습니다 :
#!/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("")