Não, você não pode fazer citações de email no OWA. Dito isto, você pode usar o Firefox com o It's All Text! add-on para abrir o texto em um editor de texto e, em seguida, adicione o prefixo de citação. Em Corrigir o estilo de citação do Outlook :
No OWA, escolha responder a uma mensagem. O texto da mensagem com aspas horríveis é exibido.
Use É Todo o Texto ou alguma outra ferramenta semelhante para abrir o texto da mensagem em um editor razoavelmente inteligente.
Filtre todo o texto da mensagem através deste script. Por exemplo, no tipo Vim :%!path-to-script.rb
, depois de tornar o script executável, é claro.
Substitua o texto original da mensagem pela saída do filtro. Se estiver usando É todo o texto, digite :wq
.
Presto! Mensagem corretamente citada. Você pode ter que mover sua assinatura, no entanto.
É assim que se usa, agora aqui está o script:
#!/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("")