Outlook Web Accessでinternet style quotingを有効にするにはどうすればいいですか?Outlookで有効にする方法について、複数の ガイドを見つけましたが、Outlook Web Accessでは一つもありませんでした。私たちはバージョン8.1を実行しています
外部からExchange/IMAPを使ってサーバーにアクセスできません。返信を送信する前に長いメールの編集に多くの時間を費やす必要があるため、これが大きな問題となっています
35 None 2010-10-28
いいえ、あなたはOWAで電子メールの引用を行うことはできません。つまり、It’s All Text!アドオンでFirefoxを使用してテキストエディタでテキストを開き、そこに引用符の接頭辞を追加することができます。Outlook の引用スタイルを修正する より
OWAでは、メッセージへの返信を選択します。恐ろしく引用されたメッセージのテキストが表示されます
It’s All Text などを使用して、メッセージのテキストを適度にスマートなエディタで開くことができます
このスクリプトを使ってメッセージテキスト全体をフィルタリングします。例えば Vim の場合、スクリプトを実行可能にした後に
:%!path-to-script.rb
と入力してください元のメセージのテキストをフィルタの出力で置き換えます。すべてのテキストを使用している場合は
:wq
と入力してくださいPresto!正しく引用されたメッセージシグナルを移動する必要があるかもしれませんが
使い方は以上です、次はスクリプトです
#!/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("")
14 sdaau 2012-01-26
Linuxを使用していると仮定して、ここでは、あなたが試すことができる代替のメールクライアントをいくつか紹介します
Gnome。Evolution – これは間違いなく動作しますが、OWAを介してExchnageに接続します
KDEです。Kontact – 古い Exchange サーバでも動作するようです
-1 paradroid 2010-10-29