ฉันจะเปิดใช้งานการอ้างอิงสไตล์อินเทอร์เน็ตใน Outlook Web Access ได้อย่างไร


33

ฉันจะเปิดใช้งานการอ้างอิงสไตล์อินเทอร์เน็ตใน Outlook Web Access ได้อย่างไร ฉันพบคำแนะนำหลายประการ เกี่ยวกับวิธีการเปิดใช้งานใน Outlook แต่ไม่ใช่แนวทางเดียวใน Outlook Web Access เรากำลังใช้งานเวอร์ชัน 8.1

ฉันไม่สามารถเข้าถึงเซิร์ฟเวอร์โดยใช้ Exchange / IMAP จากภายนอก นี่เป็นปัญหาสำคัญสำหรับฉันในขณะนี้เนื่องจากฉันต้องใช้เวลาในการแก้ไขอีเมลยาว ๆ ก่อนส่งคำตอบ


คุณไม่จำเป็นต้องเข้าถึง IMAP หากคุณมี Outlook แน่นอน คุณสามารถเพิ่มเซิร์ฟเวอร์ Exchange และรายละเอียดผู้ใช้ลงใน Outlook หากคุณมี Outlook
Paradroid

1
ฉันลืมที่จะพูดถึงว่าฉันกำลังเข้าถึงเซิร์ฟเวอร์ภายนอกและวิธีเดียวที่ทำได้คือผ่าน OWA
David Holm

คุณไม่จำเป็นต้องใช้ OWA เพื่อเข้าถึงการแลกเปลี่ยนภายนอก คุณจะต้องใช้มันก็ต่อเมื่อ Outlook ไม่พร้อมให้คุณใช้งานและคุณไม่จำเป็นต้องอยู่บน LAN เดียวกัน ถ้าคุณไปที่พื้นที่ตัวเลือกใน OWA และไปที่เกี่ยวกับคุณสามารถรับชื่อเซิร์ฟเวอร์กล่องจดหมายของคุณ
Paradroid

@ jason404: ปัญหาคือว่าฉันไม่ได้ใช้ windows ที่บ้านดังนั้นฉันไม่สามารถเรียกใช้ Outlook และเนื่องจากไม่มี IMAP ฉันไม่สามารถใช้ไคลเอนต์ที่ฉันต้องการได้เช่นกัน
David Holm

2
เหลือเชื่อ. ในปี 2559 คุณยังไม่สามารถตอบกลับแบบอินไลน์โดยใช้เว็บอินเตอร์เฟสของ Office Office Outlook ได้ ฉันใช้ Linux และฉันจะไม่ติดตั้ง Windows หรือ Outlook ใน Wine อย่างแน่นอนเพื่อตอบกลับแบบอินไลน์
Dan Dascalescu

คำตอบ:


14

ไม่ได้คุณไม่สามารถระบุข้อความอีเมลใน OWA ได้ อย่างที่บอกไปแล้วว่าคุณสามารถใช้ Firefox พร้อมกับIt's All Text! add-on เพื่อเปิดข้อความในโปรแกรมแก้ไขข้อความและเพิ่มคำเสริมหน้าข้อความ จากFix Outlook Quoting Style :

  1. ใน OWA เลือกเพื่อตอบกลับข้อความ ข้อความข้อความที่ยกมาอย่างน่ากลัวจะปรากฏขึ้น

  2. ใช้ It's All Text หรือเครื่องมืออื่นที่คล้ายคลึงกันเพื่อเปิดข้อความในเครื่องมือแก้ไขอัจฉริยะที่สมเหตุสมผล

  3. กรองข้อความทั้งหมดผ่านสคริปต์นี้ เช่นในประเภทเป็นกลุ่ม:%!path-to-script.rbหลังจากทำให้สคริปต์ทำงานได้แน่นอน

  4. แทนที่ข้อความ mesage ดั้งเดิมด้วยเอาต์พุตตัวกรอง หากใช้ 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("")

-1

สมมติว่าคุณใช้ Linux ต่อไปนี้เป็นไคลเอนต์อีเมลทางเลือกสองสามข้อที่คุณสามารถลองได้:

คำพังเพย: วิวัฒนาการ - มันใช้งานได้จริง แต่การเชื่อมต่อกับ Exchnage ผ่าน OWA

KDE: Kontact - ปรากฏว่าสิ่งนี้ใช้ได้กับเซิร์ฟเวอร์ Exchange รุ่นเก่า


ขอบคุณสำหรับคำตอบ แต่ฉันอยากจะทำสิ่งนี้จาก OWA แทนการใช้ซอฟต์แวร์ไคลเอ็นต์เพราะฉันมักจะเข้าถึงโดยใช้เบราว์เซอร์
David Holm
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.