Outlook Web Accessで internet-style quoting を有効にするにはどうすればよいですか?私は severalguides on how to をOutlookで有効にしましたが、Outlook Web Accessで1つではありません。バージョン8.1を実行しています。
外部からExchange/IMAPを使用してサーバーにアクセスできません。返信を送る前に長いメールを編集するのに多くの時間を費やさなければならないので、これは今私に重大な問題を提供しています。
いいえ、OWAではメールの引用をできません。そうは言っても、Firefoxで It's All Text! アドオンを使用してテキストエディターでテキストを開き、そこに引用プレフィックスを追加できます。 From Fix Outlook Quoting Style :
OWAで、メッセージへの返信を選択します。恐ろしく引用されたメッセージテキストが表示されます。
It's All Textまたは他の同様のツールを使用して、適度にスマートなエディターでメッセージテキストを開きます。
このスクリプトでメッセージテキスト全体をフィルタリングします。例えば。 Vimタイプ
:%!path-to-script.rb
、もちろんスクリプトを実行可能にした後。元のメッセージテキストをフィルターの出力で置き換えます。 「すべてのテキスト」を使用する場合は、
:wq
。プレスト!正しく引用されたメッセージ。ただし、SIGを移動する必要がある場合があります。
これがその使用方法です。ここにスクリプトがあります。
#!/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("")