Browse Source

Really fix regression introduced in 23879bc (fixes #2220)

Ryan Lue 6 years ago
parent
commit
b58fcbb5fc

+ 2 - 1
Gemfile

@@ -164,8 +164,9 @@ group :development, :test do
   # mock http calls
   gem 'webmock'
 
-  # record and replay TCP transactions
+  # record and replay TCP/HTTP transactions
   gem 'tcr'
+  gem 'vcr'
 end
 
 # Want to extend Zammad with additional gems?

+ 2 - 0
Gemfile.lock

@@ -461,6 +461,7 @@ GEM
     valid_email2 (2.1.0)
       activemodel (>= 3.2)
       mail (~> 2.5)
+    vcr (4.0.0)
     viewpoint (1.1.0)
       httpclient
       logging
@@ -565,6 +566,7 @@ DEPENDENCIES
   uglifier
   unicorn
   valid_email2
+  vcr
   viewpoint
   webmock
   writeexcel

+ 3 - 4
lib/import/exchange/folder.rb

@@ -25,8 +25,7 @@ module Import
       end
 
       def find(id)
-        (@lookup_map[id] ||= @connection.get_folder(id)) ||
-          id_folder_map[id]
+        @lookup_map[id] ||= @connection.get_folder(id)
       end
 
       def all
@@ -43,8 +42,8 @@ module Import
       end
 
       def display_path(folder)
-        display_name  = folder.display_name&.utf8_encode(fallback: :read_as_sanitized_binary)
-        parent_folder = find(folder.parent_folder_id)
+        display_name  = folder.display_name.utf8_encode(fallback: :read_as_sanitized_binary)
+        parent_folder = id_folder_map[folder.parent_folder_id]
 
         return display_name if parent_folder.blank?
 

+ 44 - 51
spec/lib/import/exchange/folder_spec.rb

@@ -2,81 +2,74 @@ require 'rails_helper'
 
 RSpec.describe Import::Exchange::Folder do
   # see https://github.com/zammad/zammad/issues/2152
-  # WARNING! This test is closely tied to the implementation. :(
   describe '#display_path (#2152)' do
-    let(:subject)        { described_class.new(connection) }
-    let(:connection)     { instance_double('Viewpoint::EWSClient') }
-    let(:root_folder)    { double('EWS Folder') }
-    let(:child_folder)   { double('EWS Folder') }
-    let(:exception_case) { double('EWS Folder') }
-
-    context 'when folder.display_name returns nil' do
-      before do
-        allow(root_folder).to receive(:display_name).and_return(nil)
-        allow(root_folder).to receive(:parent_folder_id).and_return(nil)
-
-        allow(subject).to receive(:find).with(any_args).and_return(root_folder)
-        allow(subject).to receive(:find).with(nil).and_return(nil)
-      end
-
-      it 'returns nil' do
-        expect(subject.display_path(root_folder)).to be(nil)
-      end
+    let(:subject)            { described_class.new(ews_connection) }
+    let(:ews_connection)     { Viewpoint::EWSClient.new(endpoint, user, pass) }
+    let(:endpoint)           { 'https://exchange.example.com/EWS/Exchange.asmx' }
+    let(:user)               { 'user@example.com' }
+    let(:pass)               { 'password' }
+    let(:grandchild_of_root) { ews_connection.get_folder_by_name('Inbox') }
+    let(:child_of_root)      { ews_connection.get_folder(grandchild_of_root.parent_folder_id) }
+
+    around do |example|
+      cassette_name = example.description.gsub(/[^0-9A-Za-z.\-]+/, '_')
+      VCR.use_cassette("lib/import/exchange/folder/#{cassette_name}") { example.run }
     end
 
     context 'when server returns valid UTF-8' do
-      before do
-        allow(root_folder).to receive(:display_name).and_return('Root')
-        allow(root_folder).to receive(:parent_folder_id).and_return(nil)
-
-        allow(child_folder).to receive(:display_name).and_return('Leaf')
-        allow(child_folder).to receive(:parent_folder_id).and_return(1)
-
-        allow(exception_case).to receive(:display_name).and_return('Error-Raising Leaf')
-        allow(exception_case).to receive(:parent_folder_id).and_raise(Viewpoint::EWS::EwsError)
-
-        allow(subject).to receive(:find).with(any_args).and_return(root_folder)
-        allow(subject).to receive(:find).with(nil).and_return(nil)
-      end
-
-      context 'and target folder is directory root' do
+      context 'and target folder is in root directory' do
         it 'returns the display name of the folder' do
-          expect(subject.display_path(root_folder)).to eq('Root')
+          expect(subject.display_path(child_of_root))
+            .to eq('Top of Information Store')
         end
       end
 
-      context 'and target folder is NOT directory root' do
+      context 'and target folder is in subfolder of root' do
         it 'returns the full path from root to target' do
-          expect(subject.display_path(child_folder)).to eq('Root -> Leaf')
+          expect(subject.display_path(grandchild_of_root))
+            .to eq('Top of Information Store -> Inbox')
         end
       end
 
       context 'and walking up directory tree raises EwsError' do
         it 'returns the partial path from error to target folder' do
-          expect(subject.display_path(exception_case)).to eq('Error-Raising Leaf')
+          allow(subject)
+            .to receive(:id_folder_map).with(any_args).and_raise(Viewpoint::EWS::EwsError)
+
+          expect(subject.display_path(grandchild_of_root))
+            .to eq('Inbox')
         end
       end
     end
 
     context 'when server returns invalid UTF-8' do
-      before do
-        allow(root_folder).to receive(:display_name).and_return('你好'.b)
-        allow(root_folder).to receive(:parent_folder_id).and_return(nil)
+      context 'and target folder is in root directory' do
+        it 'returns the display name of the folder in valid UTF-8' do
+          allow(child_of_root)
+            .to receive(:display_name).and_return('你好'.b)
 
-        allow(child_folder).to receive(:display_name).and_return('你好'.b)
-        allow(child_folder).to receive(:parent_folder_id).and_return(1)
+          expect { subject.display_path(child_of_root).to_json }.not_to raise_error
+        end
+      end
 
-        allow(exception_case).to receive(:display_name).and_return('你好'.b)
-        allow(exception_case).to receive(:parent_folder_id).and_raise(Viewpoint::EWS::EwsError)
+      context 'and target folder is in subfolder of root' do
+        it 'returns the full path from root to target in valid UTF-8' do
+          allow(grandchild_of_root)
+            .to receive(:display_name).and_return('你好'.b)
 
-        allow(subject).to receive(:find).with(any_args).and_return(root_folder)
-        allow(subject).to receive(:find).with(nil).and_return(nil)
+          expect { subject.display_path(grandchild_of_root).to_json }.not_to raise_error
+        end
       end
 
-      it 'returns a valid UTF-8 string' do
-        expect { subject.display_path(root_folder).to_json }.not_to raise_error
-        expect { subject.display_path(child_folder).to_json }.not_to raise_error
-        expect { subject.display_path(exception_case).to_json }.not_to raise_error
+      context 'and walking up directory tree raises EwsError' do
+        it 'returns the partial path from error to target folder in valid UTF-8' do
+          allow(grandchild_of_root)
+            .to receive(:display_name).and_return('你好'.b)
+          allow(subject)
+            .to receive(:id_folder_map).with(any_args).and_raise(Viewpoint::EWS::EwsError)
+
+          expect { subject.display_path(grandchild_of_root).to_json }.not_to raise_error
+        end
       end
     end
   end

+ 5 - 0
spec/support/vcr.rb

@@ -0,0 +1,5 @@
+VCR.configure do |config|
+  config.cassette_library_dir = 'test/data/vcr_cassettes'
+  config.hook_into :webmock
+  config.allow_http_connections_when_no_cassette = true
+end

+ 1 - 1
spec/support/webmock.rb

@@ -2,7 +2,7 @@
 # - Zammad webservices
 # - Google (calendar)
 allowed_sites = lambda do |uri|
-  ['zammad.com', 'google.com'].any? do |site|
+  ['zammad.com', 'google.com', 'exchange.example.com'].any? do |site|
     uri.host.include?(site)
   end
 end

+ 5937 - 0
test/data/vcr_cassettes/lib/import/exchange/folder/returns_the_display_name_of_the_folder.yml

@@ -0,0 +1,5937 @@
+---
+http_interactions:
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:Restriction>
+                <t:IsEqualTo>
+                  <t:FieldURI FieldURI="folder:DisplayName"/>
+                  <t:FieldURIOrConstant>
+                    <t:Constant Value="Inbox"/>
+                  </t:FieldURIOrConstant>
+                </t:IsEqualTo>
+              </m:Restriction>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:55 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG
+      Authorization:
+      - Negotiate TlRMTVNTUAADAAAAGAAYAEQAAADGAMYAXAAAAAAAAAAiAQAARABEACIBAAAAAAAAZgEAAAAAAABmAQAABYKJAgAAAACMsMhcFzagvVpk9XJvfT0n1+/Z6ZKyexGBvGLCLC7U5/qZACmYd1MyAQEAAAAAAACAXxjMDUTUAdfv2emSsnsRAAAAAAIAEABFAFgAQwBIAEEATgBHAEUAAQAMAEUAWABGAEUAMAA2AAQAGABFAFgAQwBIAEEATgBHAEUALgBJAE4AVAADACYARQBYAEYARQAwADYALgBFAFgAQwBIAEEATgBHAEUALgBJAE4AVAAFABgARQBYAEMASABBAE4ARwBFAC4ASQBOAFQABwAIAEjwA8wNRNQBAAAAAAAAAABjAHUAcwB0AG8AbQBlAHIAMwBAAGEANQAzADEAMgA3ADQALgBlAHgAYwBoAGEAbgBnAGUALQBtAGEAaQBsAC4AZQB1AA==
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f1ca4956-b518-4a0f-b96f-bfa49507a615
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrK;
+        expires=Thu, 04-Oct-2018 05:11:55 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; expires=Wed, 04-Sep-2019
+        05:11:55 GMT; path=/; HttpOnly
+      Persistent-Auth:
+      - 'true'
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:55 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:55 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:55 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrK;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 31715d2e-f807-4371-a0e7-33c53cd1c78a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrK;
+        expires=Thu, 04-Oct-2018 05:11:55 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:55 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:ParentFolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAAA=="/><t:FolderClass>IPF.Note</t:FolderClass><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:55 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:55 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrK;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e9279617-9c8b-40de-ba88-a914e9a0dbbc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrK;
+        expires=Thu, 04-Oct-2018 05:11:55 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:55 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:DisplayName>Top of
+        Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:55 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="root"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:55 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrK;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c7f3665e-42e2-45ba-908c-4f2cff38154d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrJ;
+        expires=Thu, 04-Oct-2018 05:11:56 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:56 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="23" IncludesLastItemInRange="true"><t:Folders><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABrc"/><t:DisplayName>AllContacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAw"/><t:DisplayName>Common
+        Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAr"/><t:DisplayName>Deferred
+        Action</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7R"/><t:DisplayName>Favorites</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAu"/><t:DisplayName>Finder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZh"/><t:DisplayName>Freebusy
+        Data</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZw"/><t:DisplayName>Location</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ+"/><t:DisplayName>MailboxAssociations</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbE"/><t:DisplayName>My Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbf"/><t:DisplayName>ParkedMessages</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7Z"/><t:DisplayName>People
+        I Know</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ3"/><t:DisplayName>PeopleConnect</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABW"/><t:DisplayName>Recoverable
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABLo"/><t:DisplayName>Reminders</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAx"/><t:DisplayName>Schedule</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZa"/><t:DisplayName>Sharing</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAt"/><t:DisplayName>Shortcuts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAs"/><t:DisplayName>Spooler
+        Queue</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZp"/><t:DisplayName>System</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbm"/><t:DisplayName>TemporarySaves</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaG"/><t:DisplayName>To-Do
+        Search</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:DisplayName>Top of
+        Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAv"/><t:DisplayName>Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:56 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:56 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrJ;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 24ffc82e-bef2-43fe-9930-b4208e883f15
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrJ;
+        expires=Thu, 04-Oct-2018 05:11:56 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:56 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:56 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="publicfoldersroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:56 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrJ;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 993205fd-14e5-46e1-810c-c2c44a913f56
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        expires=Thu, 04-Oct-2018 05:11:57 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:56 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="
+        ChangeKey="AQAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQref"/><t:DisplayName>O1015684</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:57 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:57 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 1101b4db-f91e-4084-8063-478272543595
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        expires=Thu, 04-Oct-2018 05:11:57 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:57 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:57 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:57 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b0547284-b76a-4584-aaf0-bd037dceaa6b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        expires=Thu, 04-Oct-2018 05:11:57 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:57 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:57 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:57 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5a323170-7973-4328-a609-4eb3fdcab804
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        expires=Thu, 04-Oct-2018 05:11:57 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:57 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:58 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:58 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrI;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ec677fb4-2cf4-462d-9116-a305d60157f7
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrH;
+        expires=Thu, 04-Oct-2018 05:11:58 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:58 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:58 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:58 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrH;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 8b9c4f69-0076-4b86-9241-30c1c9588ef3
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrH;
+        expires=Thu, 04-Oct-2018 05:11:58 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:58 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:58 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:58 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrH;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c4431370-779a-4afc-9661-2800f092188b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrH;
+        expires=Thu, 04-Oct-2018 05:11:58 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:58 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:59 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:59 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrH;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 63229789-ef6e-4d92-b8c2-47639b8fafd4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrG;
+        expires=Thu, 04-Oct-2018 05:11:59 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:59 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:59 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:59 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrG;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3d7ae905-7deb-4576-aed6-d82c3c7d7b72
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrG;
+        expires=Thu, 04-Oct-2018 05:11:59 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:59 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:59 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:59 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrG;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7b1d0f49-1896-4de9-ac8c-4e242afdd45e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrG;
+        expires=Thu, 04-Oct-2018 05:11:59 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:11:59 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:11:59 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:11:59 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7OxcrG;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 139bbc2d-bc22-49f2-b948-1c6c4c858270
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/P;
+        expires=Thu, 04-Oct-2018 05:12:00 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:00 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:00 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:00 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/P;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d619b701-14db-4dcb-8242-05da9ea2836c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/P;
+        expires=Thu, 04-Oct-2018 05:12:00 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:00 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:00 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:00 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/P;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6f3786dc-250e-4306-a93d-a1ac1b762bbb
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/P;
+        expires=Thu, 04-Oct-2018 05:12:00 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:00 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:00 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:00 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/P;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3cf56e0f-877e-4225-bc6f-d2b447167e58
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/O;
+        expires=Thu, 04-Oct-2018 05:12:01 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:01 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAB2"/><t:DisplayName>Calendar
+        Logging</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABe"/><t:DisplayName>Deletions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABu"/><t:DisplayName>Purges</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABm"/><t:DisplayName>Versions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:01 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:01 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/O;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 8180e3c3-ba6f-437b-adbd-a823e8444a99
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/O;
+        expires=Thu, 04-Oct-2018 05:12:01 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:01 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:01 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:01 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/O;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 52f1a06c-1558-4950-9ba6-ad4142721563
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/O;
+        expires=Thu, 04-Oct-2018 05:12:01 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:01 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:01 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:01 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/O;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c6a19126-6581-435f-bef0-d9630aa0c962
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/N;
+        expires=Thu, 04-Oct-2018 05:12:02 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:02 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:02 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/N;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e2cb8b0b-0430-4e96-b96a-31d3c5c87ebf
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/N;
+        expires=Thu, 04-Oct-2018 05:12:02 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:02 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:02 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/N;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 4c114a0f-a48f-489e-a8c7-b727b94ed8ff
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/N;
+        expires=Thu, 04-Oct-2018 05:12:02 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:02 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:02 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/N;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 70112a01-446c-48bc-8cc1-a091c0905588
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        expires=Thu, 04-Oct-2018 05:12:03 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Error"><m:MessageText>Der Zugriff wird verweigert. Überprüfen
+        Sie die Anmeldeinformationen, und versuchen Sie es dann erneut.</m:MessageText><m:ResponseCode>ErrorAccessDenied</m:ResponseCode><m:DescriptiveLinkKey>0</m:DescriptiveLinkKey></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:03 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:03 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 1992be8a-0e5f-46ad-a451-c72ca40c7e8e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        expires=Thu, 04-Oct-2018 05:12:03 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:03 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:03 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:03 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6cea5136-08e5-4dd6-b2b9-4fd08c1be6a7
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        expires=Thu, 04-Oct-2018 05:12:03 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:03 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:03 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:03 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e3ff7e0c-e709-4cfd-9b5d-4fc2055c12b5
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        expires=Thu, 04-Oct-2018 05:12:03 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:03 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:04 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:04 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/M;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f242506d-3394-492e-83f0-8fcfe68d7109
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/L;
+        expires=Thu, 04-Oct-2018 05:12:04 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:04 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:04 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:04 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/L;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b2af1fe1-a107-4338-a4a0-7a5d597e00f7
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/L;
+        expires=Thu, 04-Oct-2018 05:12:04 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:04 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:04 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:04 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/L;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 60e44b2a-1072-4a38-86a7-c25ea27bee37
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/L;
+        expires=Thu, 04-Oct-2018 05:12:04 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:04 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:05 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:05 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/L;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7b4463a5-e19e-4e80-b7c2-dae6400ee041
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/K;
+        expires=Thu, 04-Oct-2018 05:12:05 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:05 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:05 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:05 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/K;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 88a46ef3-cac3-4572-8d8d-13db948d2069
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/K;
+        expires=Thu, 04-Oct-2018 05:12:05 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:05 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:05 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:05 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/K;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d7f98bed-e1fd-4d6d-b45a-0ee98a203241
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/K;
+        expires=Thu, 04-Oct-2018 05:12:05 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:05 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:05 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:05 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/K;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c3deb17b-090b-4621-aed7-bd20a1cc1cfc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/J;
+        expires=Thu, 04-Oct-2018 05:12:06 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:06 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:06 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/J;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - '0972c4eb-ed9f-4221-9c66-e3b92f6c066b'
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/J;
+        expires=Thu, 04-Oct-2018 05:12:06 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:06 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:06 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/J;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 1515f929-108e-46cb-9256-9a6677a453b8
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/J;
+        expires=Thu, 04-Oct-2018 05:12:06 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:06 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:06 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/J;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a964b224-f0ac-40c1-816d-5ff16ac75b3d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/I;
+        expires=Thu, 04-Oct-2018 05:12:07 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:07 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:07 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/I;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3efc853a-2ec5-4664-bd40-0564c4b45228
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/I;
+        expires=Thu, 04-Oct-2018 05:12:07 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:07 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:07 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:07 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/I;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3cfb04d8-66e0-4953-986c-7336ee77b303
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/I;
+        expires=Thu, 04-Oct-2018 05:12:07 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:07 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:07 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:07 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/I;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 565b02be-3fd3-4c32-b08b-c37a92861b46
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/H;
+        expires=Thu, 04-Oct-2018 05:12:08 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:07 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:08 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:08 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/H;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 61a934f3-75a2-495c-8d67-e91c02a4cf8d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/H;
+        expires=Thu, 04-Oct-2018 05:12:08 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:08 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:08 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:08 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/H;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e3622c9e-54c2-487b-8782-486f5f940c17
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/H;
+        expires=Thu, 04-Oct-2018 05:12:08 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:08 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="
+        ChangeKey="AwAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQred"/><t:DisplayName>contracts
+        test</t:DisplayName><t:TotalCount>3</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:08 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:08 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/H;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 55a7cae0-8412-4f4e-8e95-2a7f63b044fc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/G;
+        expires=Thu, 04-Oct-2018 05:12:09 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:08 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:09 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:09 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/G;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - cebda712-218b-42fb-a691-f93b4b5406f6
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/G;
+        expires=Thu, 04-Oct-2018 05:12:09 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:09 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:09 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:09 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/G;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 16b7dc9f-2604-4918-b734-1542ab58618d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/G;
+        expires=Thu, 04-Oct-2018 05:12:09 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:09 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:09 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:09 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc/G;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a5bcaf46-55fb-482c-94e4-a2ba243b643b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        expires=Thu, 04-Oct-2018 05:12:10 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:09 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:10 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:10 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9e1b3500-de4b-4967-92af-ec85a6653144
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        expires=Thu, 04-Oct-2018 05:12:10 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:10 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:10 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:10 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 65efd28c-c6bc-417f-9eff-e7d123a2dd67
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        expires=Thu, 04-Oct-2018 05:12:10 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:10 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:10 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:10 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 40748c94-37c5-40bc-ae79-56e872d11adb
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        expires=Thu, 04-Oct-2018 05:12:10 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:10 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:11 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:11 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7P;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 1fa3245b-b83a-45af-a00e-c7957955e8c4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7O;
+        expires=Thu, 04-Oct-2018 05:12:11 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:11 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:12 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:12 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7O;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b044d1ad-1559-413a-afcb-f419a1af8559
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7N;
+        expires=Thu, 04-Oct-2018 05:12:12 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:12 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:12 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:12 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7N;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 72651040-7bca-4632-b84f-822f5602d065
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7N;
+        expires=Thu, 04-Oct-2018 05:12:12 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:12 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:12 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:12 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7N;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 537b4381-379c-45bb-a8b7-d69adc0c323b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7N;
+        expires=Thu, 04-Oct-2018 05:12:12 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:12 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:13 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:13 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7N;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6b04a9a7-5089-4e7d-923f-99c1ba21d4ed
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7M;
+        expires=Thu, 04-Oct-2018 05:12:13 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:13 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:13 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:13 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7M;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 60cbde8b-c385-4269-bdb3-35e8c385a769
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7M;
+        expires=Thu, 04-Oct-2018 05:12:13 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:13 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:13 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:13 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7M;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 303f8f8b-04cc-48bc-a22d-14d79879f13b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7M;
+        expires=Thu, 04-Oct-2018 05:12:13 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:13 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7M;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 46e8ec98-0f0d-4ae6-bf2d-cdbb6db4e1da
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7L;
+        expires=Thu, 04-Oct-2018 05:12:14 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:13 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7L;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e447aa04-c691-411a-a43e-6486abfab620
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7L;
+        expires=Thu, 04-Oct-2018 05:12:14 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:14 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7L;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3e6d15f3-aed7-4c40-8fa4-ba6ca526f8de
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7L;
+        expires=Thu, 04-Oct-2018 05:12:14 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:14 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7L;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - da6e4c1c-3c8a-4b5e-be93-3cd0edb544fe
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7K;
+        expires=Thu, 04-Oct-2018 05:12:15 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:14 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:15 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:15 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7K;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3b5ec074-486d-4314-be8d-16d4873833cc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7K;
+        expires=Thu, 04-Oct-2018 05:12:15 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:15 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:15 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:15 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7K;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 496a2119-5997-41bb-9b3e-7e598321ba02
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7K;
+        expires=Thu, 04-Oct-2018 05:12:15 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:15 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:15 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:15 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7K;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 0c5e5d66-5484-483f-b09e-db280e5a0723
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7J;
+        expires=Thu, 04-Oct-2018 05:12:16 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:15 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:16 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:16 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7J;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 0f96566d-d4e4-4a4c-95d9-f24613d10dcb
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7J;
+        expires=Thu, 04-Oct-2018 05:12:16 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:16 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:16 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:16 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7J;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - df5cdd98-3bbe-42a6-a6e7-392573a9d8bc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7J;
+        expires=Thu, 04-Oct-2018 05:12:16 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:16 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:16 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:16 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7J;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a8cc8f51-8650-4b52-a09a-4cd9c91e9462
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        expires=Thu, 04-Oct-2018 05:12:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:16 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:17 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:17 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c9816400-9b74-4a37-a534-6a22faaffce1
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        expires=Thu, 04-Oct-2018 05:12:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:17 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:17 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:17 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d04d3e4e-9836-429b-9923-fe2f4ac8e220
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        expires=Thu, 04-Oct-2018 05:12:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:17 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:17 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:17 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b94a6ae3-3caf-4f3e-a7ba-a19331c8d2de
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        expires=Thu, 04-Oct-2018 05:12:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:17 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:18 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:18 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7I;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 77b12200-ae99-414c-85ce-05c7fcf9207b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7H;
+        expires=Thu, 04-Oct-2018 05:12:18 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:17 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:18 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:18 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=NLZVOHC0INWFUJOZTHPG; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7H;
+        exchangecookie=36630a98856a49dfabdde7e7a9de483b
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 180edbd7-2a7d-4d59-b7a2-d9dd284a529c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc7H;
+        expires=Thu, 04-Oct-2018 05:12:18 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=36630a98856a49dfabdde7e7a9de483b; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:18 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:ParentFolderId Id="AAMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2M1NwAuAAAAAADbIT+HYOOASon5fupv/BoDAQC6Gn49WmeZQbLsvVWHF+rQAAAAAAEBAAA="
+        ChangeKey="AQAAAA=="/><t:DisplayName>Top of Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:18 GMT
+recorded_with: VCR 4.0.0

+ 5937 - 0
test/data/vcr_cassettes/lib/import/exchange/folder/returns_the_display_name_of_the_folder_in_valid_UTF-8.yml

@@ -0,0 +1,5937 @@
+---
+http_interactions:
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:Restriction>
+                <t:IsEqualTo>
+                  <t:FieldURI FieldURI="folder:DisplayName"/>
+                  <t:FieldURIOrConstant>
+                    <t:Constant Value="Inbox"/>
+                  </t:FieldURIOrConstant>
+                </t:IsEqualTo>
+              </m:Restriction>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:30 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW
+      Authorization:
+      - Negotiate TlRMTVNTUAADAAAAGAAYAEQAAADGAMYAXAAAAAAAAAAiAQAARABEACIBAAAAAAAAZgEAAAAAAABmAQAABYKJAgAAAADH2aDTjGpscndDCg1Nv0XuFN4xBm/eNiWYbgXjEOWyvjFEb8zIQC8iAQEAAAAAAAAAUykdEETUARTeMQZv3jYlAAAAAAIAEABFAFgAQwBIAEEATgBHAEUAAQAMAEUAWABGAEUAMAA2AAQAGABFAFgAQwBIAEEATgBHAEUALgBJAE4AVAADACYARQBYAEYARQAwADYALgBFAFgAQwBIAEEATgBHAEUALgBJAE4AVAAFABgARQBYAEMASABBAE4ARwBFAC4ASQBOAFQABwAIAAhHJh0QRNQBAAAAAAAAAABjAHUAcwB0AG8AbQBlAHIAMwBAAGEANQAzADEAMgA3ADQALgBlAHgAYwBoAGEAbgBnAGUALQBtAGEAaQBsAC4AZQB1AA==
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - fb59388a-283f-4274-a1ba-8fb0140b1b4e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczP;
+        expires=Thu, 04-Oct-2018 05:28:30 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; expires=Wed, 04-Sep-2019
+        05:28:30 GMT; path=/; HttpOnly
+      Persistent-Auth:
+      - 'true'
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:29 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:30 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:30 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 19a3ef5b-2379-417c-9333-7a50fe0572a3
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczP;
+        expires=Thu, 04-Oct-2018 05:28:30 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:30 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:ParentFolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAAA=="/><t:FolderClass>IPF.Note</t:FolderClass><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:30 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:30 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9d005515-34cf-4507-a73c-c16436b74e3b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczO;
+        expires=Thu, 04-Oct-2018 05:28:31 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:30 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:DisplayName>Top of
+        Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:31 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="root"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:31 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 194d16b7-c1f3-4f29-9959-30465ca7e463
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczO;
+        expires=Thu, 04-Oct-2018 05:28:31 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:30 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="23" IncludesLastItemInRange="true"><t:Folders><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABrc"/><t:DisplayName>AllContacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAw"/><t:DisplayName>Common
+        Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAr"/><t:DisplayName>Deferred
+        Action</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7R"/><t:DisplayName>Favorites</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAu"/><t:DisplayName>Finder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZh"/><t:DisplayName>Freebusy
+        Data</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZw"/><t:DisplayName>Location</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ+"/><t:DisplayName>MailboxAssociations</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbE"/><t:DisplayName>My Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbf"/><t:DisplayName>ParkedMessages</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7Z"/><t:DisplayName>People
+        I Know</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ3"/><t:DisplayName>PeopleConnect</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABW"/><t:DisplayName>Recoverable
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABLo"/><t:DisplayName>Reminders</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAx"/><t:DisplayName>Schedule</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZa"/><t:DisplayName>Sharing</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAt"/><t:DisplayName>Shortcuts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAs"/><t:DisplayName>Spooler
+        Queue</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZp"/><t:DisplayName>System</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbm"/><t:DisplayName>TemporarySaves</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaG"/><t:DisplayName>To-Do
+        Search</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:DisplayName>Top of
+        Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAv"/><t:DisplayName>Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:31 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:31 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 07df4191-b8ed-4c2c-894e-78edde1af07d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczO;
+        expires=Thu, 04-Oct-2018 05:28:31 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:31 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:31 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="publicfoldersroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:31 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 01e23b81-6e23-4cf4-94f9-8b3a6c4f37c5
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczN;
+        expires=Thu, 04-Oct-2018 05:28:32 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:31 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="
+        ChangeKey="AQAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQref"/><t:DisplayName>O1015684</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:32 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:32 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 236bf93e-4b46-4cc1-8d34-712e97287318
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczN;
+        expires=Thu, 04-Oct-2018 05:28:32 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:31 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:32 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:32 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f8b026ad-1a85-4cbf-afe8-6019ada9ca67
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczN;
+        expires=Thu, 04-Oct-2018 05:28:32 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:32 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:33 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:33 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 88170ccc-6c4c-4b29-8c65-fba26502a0bc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczM;
+        expires=Thu, 04-Oct-2018 05:28:33 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:32 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:33 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:33 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - dac96789-7985-477d-b4e0-b361f68de11f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczM;
+        expires=Thu, 04-Oct-2018 05:28:33 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:32 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:33 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:33 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 503c3fed-436c-4b8e-83a1-6b7c6afde9fa
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczM;
+        expires=Thu, 04-Oct-2018 05:28:33 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:33 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:34 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:34 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5a7162fb-34f7-4cf2-8e5a-a2c48c79324a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczL;
+        expires=Thu, 04-Oct-2018 05:28:34 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:33 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:34 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:34 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczL;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 2c28b396-746a-450f-a202-e9020f26903a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczL;
+        expires=Thu, 04-Oct-2018 05:28:34 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:33 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:34 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:34 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczL;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 389dcce2-f4b9-41c7-a0d7-2da70f51601d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczL;
+        expires=Thu, 04-Oct-2018 05:28:34 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:34 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:35 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:35 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczL;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5eb1d89a-a004-4a6c-89b5-3d577d4393a4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczK;
+        expires=Thu, 04-Oct-2018 05:28:35 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:34 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:35 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:35 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczK;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7e813ac5-b515-4a0a-9c7d-a074663bd046
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczK;
+        expires=Thu, 04-Oct-2018 05:28:35 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:34 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:35 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:35 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczK;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 1b6ea59e-8c1b-4a64-8fde-0c4b58c9287d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczK;
+        expires=Thu, 04-Oct-2018 05:28:35 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:35 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:36 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:36 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczK;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 8f8d10cd-0dbd-4cd2-a4bb-bd01b9b58fd7
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczJ;
+        expires=Thu, 04-Oct-2018 05:28:36 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:35 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:36 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:36 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczJ;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7568aa36-e95e-49a6-a03d-e3d8e39dcd77
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczJ;
+        expires=Thu, 04-Oct-2018 05:28:36 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:35 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAB2"/><t:DisplayName>Calendar
+        Logging</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABe"/><t:DisplayName>Deletions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABu"/><t:DisplayName>Purges</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABm"/><t:DisplayName>Versions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:36 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:36 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczJ;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 0c1a94c4-7218-40e3-9807-e5a9db470a18
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczJ;
+        expires=Thu, 04-Oct-2018 05:28:36 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:36 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:37 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:37 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczJ;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 53c31f1c-2bb5-4f51-ad3b-0e10d3b8f570
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczI;
+        expires=Thu, 04-Oct-2018 05:28:37 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:36 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:37 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:37 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczI;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 459f90e9-4555-4239-8154-37c6f59b52df
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczI;
+        expires=Thu, 04-Oct-2018 05:28:37 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:36 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:37 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:37 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczI;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - fbdf1323-80b0-414c-956f-142d286d22de
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczI;
+        expires=Thu, 04-Oct-2018 05:28:37 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:37 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:37 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:37 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczI;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6c7489f4-771c-4c51-ba5e-5f27d2d6c587
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczH;
+        expires=Thu, 04-Oct-2018 05:28:38 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:37 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:38 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:38 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczH;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ae033713-e12d-46bc-818f-b0c5d57d9f5e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczH;
+        expires=Thu, 04-Oct-2018 05:28:38 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:37 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Error"><m:MessageText>Der Zugriff wird verweigert. Überprüfen
+        Sie die Anmeldeinformationen, und versuchen Sie es dann erneut.</m:MessageText><m:ResponseCode>ErrorAccessDenied</m:ResponseCode><m:DescriptiveLinkKey>0</m:DescriptiveLinkKey></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:38 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:38 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczH;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 505fb308-16a0-4a4f-9fa8-77d1350986ce
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczH;
+        expires=Thu, 04-Oct-2018 05:28:38 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:38 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:38 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:38 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczH;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 4e5d3430-acfc-4e74-998c-45bc0a5bd233
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczG;
+        expires=Thu, 04-Oct-2018 05:28:39 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:38 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:39 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:39 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczG;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 31aee6bd-743f-4dc2-880a-d9160fa4ef61
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczG;
+        expires=Thu, 04-Oct-2018 05:28:39 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:38 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:39 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:39 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczG;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d326f4db-9a6c-4cf6-89b2-3a367af9139a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczG;
+        expires=Thu, 04-Oct-2018 05:28:39 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:39 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:39 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:39 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxczG;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 324ffe58-ce8c-4953-a80e-74ae60a34d9f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvP;
+        expires=Thu, 04-Oct-2018 05:28:40 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:39 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:40 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:40 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ba254d52-66bd-4487-9844-94da777865b1
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvP;
+        expires=Thu, 04-Oct-2018 05:28:40 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:39 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:40 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:40 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 2cd4d6f8-bf70-4a3a-a0f4-8c16a1f8aa61
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvP;
+        expires=Thu, 04-Oct-2018 05:28:40 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:40 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:41 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:41 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 400bf4a1-aa17-4d2e-bf72-cbd1373472a5
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvO;
+        expires=Thu, 04-Oct-2018 05:28:41 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:40 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:41 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:41 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6a7b169a-717c-46dd-8343-de232448cddc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvO;
+        expires=Thu, 04-Oct-2018 05:28:41 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:40 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:41 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:41 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 39b44dd8-65ce-4e15-adda-181472a9ea0d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvO;
+        expires=Thu, 04-Oct-2018 05:28:41 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:41 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:42 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:42 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - bb625982-6f6e-499b-970c-9416847e0730
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvN;
+        expires=Thu, 04-Oct-2018 05:28:42 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:41 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:42 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:42 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 300dcb47-6f19-4863-b5ef-f0ba262174dc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvN;
+        expires=Thu, 04-Oct-2018 05:28:42 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:41 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:42 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:42 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b9ec6752-3154-478f-b950-b83a91b2ed4b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvN;
+        expires=Thu, 04-Oct-2018 05:28:42 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:42 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:43 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:43 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 983e828e-6fe5-473f-a8c4-bcfbf91638ed
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvM;
+        expires=Thu, 04-Oct-2018 05:28:43 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:42 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:43 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:43 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e04214be-7e6d-4b3f-b2d1-678e19765ece
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvM;
+        expires=Thu, 04-Oct-2018 05:28:43 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:42 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:43 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:43 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5060ec34-20bc-4afa-bf95-2d67ba72cc4d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvM;
+        expires=Thu, 04-Oct-2018 05:28:43 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:43 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:43 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:43 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 244414d3-25d3-4c3c-bd91-dd74142c6a27
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvL;
+        expires=Thu, 04-Oct-2018 05:28:44 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:43 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:44 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:44 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvL;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 1b11f681-4876-4b7c-8ee2-ab5d9384f68e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvL;
+        expires=Thu, 04-Oct-2018 05:28:44 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:43 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="
+        ChangeKey="AwAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQred"/><t:DisplayName>contracts
+        test</t:DisplayName><t:TotalCount>3</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:44 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:44 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvL;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e33c5f22-8a59-4bc8-b10e-5cf75d0dc554
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvL;
+        expires=Thu, 04-Oct-2018 05:28:44 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:44 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:45 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:45 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvL;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 512e61c9-6dc2-4c36-a56c-612da865b5db
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvK;
+        expires=Thu, 04-Oct-2018 05:28:45 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:44 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:45 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:45 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvK;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9fe3bdfe-55de-40c5-841e-b680ac52110c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvK;
+        expires=Thu, 04-Oct-2018 05:28:45 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:44 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:45 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:45 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvK;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 2f672a9f-1067-4264-981d-c13026365a26
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvK;
+        expires=Thu, 04-Oct-2018 05:28:45 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:45 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:46 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:46 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvK;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6f159dd9-fd20-4fb9-90d0-c8e9fe5513fb
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvJ;
+        expires=Thu, 04-Oct-2018 05:28:46 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:45 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:46 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:46 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvJ;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 46507238-734d-4c10-a066-3155a230d90f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvJ;
+        expires=Thu, 04-Oct-2018 05:28:46 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:45 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:46 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:46 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvJ;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - aeca4852-b0df-474f-b933-aea5029b07f7
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvJ;
+        expires=Thu, 04-Oct-2018 05:28:46 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:46 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:47 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:47 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvJ;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 70b1d943-aa01-4473-b9a8-27b1d66e6df7
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvI;
+        expires=Thu, 04-Oct-2018 05:28:47 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:46 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:47 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:47 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvI;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 871fed47-c8a3-498f-8085-885f91517326
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvI;
+        expires=Thu, 04-Oct-2018 05:28:47 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:46 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:47 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:47 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvI;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - db7dcf30-4faf-4770-b3fe-3338f1187e43
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvI;
+        expires=Thu, 04-Oct-2018 05:28:47 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:47 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:48 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:48 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvI;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6673ba03-5c08-4e79-ad1d-bc9eb8277745
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvH;
+        expires=Thu, 04-Oct-2018 05:28:48 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:47 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:48 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:48 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvH;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a17eef9f-2af1-47f7-a80b-5467c80c8050
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvH;
+        expires=Thu, 04-Oct-2018 05:28:48 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:47 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:48 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:48 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvH;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 23effabf-407b-49a4-a04f-8e37a74f4e63
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvH;
+        expires=Thu, 04-Oct-2018 05:28:48 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:48 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:49 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:49 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvH;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 4e1163da-3a08-4a83-b324-7bb7e51e5d18
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvG;
+        expires=Thu, 04-Oct-2018 05:28:49 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:48 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:49 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:49 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvG;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - be77b4c1-70d1-4928-8d94-ed1e478785c0
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvG;
+        expires=Thu, 04-Oct-2018 05:28:49 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:48 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:49 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:49 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcvG;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7954a508-0726-4ad5-91ab-53d0588e4f52
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        expires=Thu, 04-Oct-2018 05:28:50 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:49 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:50 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:50 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 27cfe599-76b0-40bf-b7ba-031643ca1891
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        expires=Thu, 04-Oct-2018 05:28:50 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:49 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:50 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:50 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c4e94203-f392-4a45-895d-1052f6fc5a8f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        expires=Thu, 04-Oct-2018 05:28:50 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:49 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:50 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:50 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9f7ac2b6-005f-4bbc-b13e-8cf2beb12066
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        expires=Thu, 04-Oct-2018 05:28:50 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:50 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:51 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:51 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrP;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b05b8c3d-a6eb-4771-8dc8-4c941fbe215d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrO;
+        expires=Thu, 04-Oct-2018 05:28:51 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:50 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:51 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:51 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - fece4a82-c577-4502-a337-3d178271fcad
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrO;
+        expires=Thu, 04-Oct-2018 05:28:51 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:50 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:51 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:51 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3283ce68-3b70-47f7-8488-c71ce2aac49b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrO;
+        expires=Thu, 04-Oct-2018 05:28:51 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:51 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:52 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:52 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrO;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - eb8705a1-1910-4a00-b81e-e73dece36d3b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrN;
+        expires=Thu, 04-Oct-2018 05:28:52 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:51 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:52 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:52 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 324ed486-88f6-49dd-aa89-b77e290dbd09
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrN;
+        expires=Thu, 04-Oct-2018 05:28:52 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:51 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:52 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:52 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ecc254e1-5ff5-42e3-8682-7c9c1a2c8c58
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrN;
+        expires=Thu, 04-Oct-2018 05:28:52 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:52 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:53 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:53 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrN;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9479b792-ab8a-426a-9602-9a04bd990df3
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrM;
+        expires=Thu, 04-Oct-2018 05:28:53 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:52 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:53 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:53 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 57d2d2a9-a65f-4301-89db-2365b0c92357
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrM;
+        expires=Thu, 04-Oct-2018 05:28:53 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:52 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:53 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:53 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f82e4aa3-7cff-4268-95dd-fb0a090e1a4f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrM;
+        expires=Thu, 04-Oct-2018 05:28:53 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:53 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:54 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:54 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RALLTYJUOSRNES0LJW; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrM;
+        exchangecookie=7cfd725607374e1ead7c85eb833dd2b6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - '06299357-8b21-4f2b-8f85-12d4c707fa82'
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrL;
+        expires=Thu, 04-Oct-2018 05:28:54 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=7cfd725607374e1ead7c85eb833dd2b6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:53 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:ParentFolderId Id="AAMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2M1NwAuAAAAAADbIT+HYOOASon5fupv/BoDAQC6Gn49WmeZQbLsvVWHF+rQAAAAAAEBAAA="
+        ChangeKey="AQAAAA=="/><t:DisplayName>Top of Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:54 GMT
+recorded_with: VCR 4.0.0

+ 5855 - 0
test/data/vcr_cassettes/lib/import/exchange/folder/returns_the_full_path_from_root_to_target.yml

@@ -0,0 +1,5855 @@
+---
+http_interactions:
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:Restriction>
+                <t:IsEqualTo>
+                  <t:FieldURI FieldURI="folder:DisplayName"/>
+                  <t:FieldURIOrConstant>
+                    <t:Constant Value="Inbox"/>
+                  </t:FieldURIOrConstant>
+                </t:IsEqualTo>
+              </m:Restriction>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:20 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA
+      Authorization:
+      - Negotiate TlRMTVNTUAADAAAAGAAYAEQAAADGAMYAXAAAAAAAAAAiAQAARABEACIBAAAAAAAAZgEAAAAAAABmAQAABYKJAgAAAADUo1odoe1ASfx0xy2iNQhDFLjyhfCxvpn3LTFLybCwA7weUyGLyoc8AQEAAAAAAAAAEv/aDUTUARS48oXwsb6ZAAAAAAIAEABFAFgAQwBIAEEATgBHAEUAAQAMAEUAWABGAEUAMAA2AAQAGABFAFgAQwBIAEEATgBHAEUALgBJAE4AVAADACYARQBYAEYARQAwADYALgBFAFgAQwBIAEEATgBHAEUALgBJAE4AVAAFABgARQBYAEMASABBAE4ARwBFAC4ASQBOAFQABwAIAF0eSdsNRNQBAAAAAAAAAABjAHUAcwB0AG8AbQBlAHIAMwBAAGEANQAzADEAMgA3ADQALgBlAHgAYwBoAGEAbgBnAGUALQBtAGEAaQBsAC4AZQB1AA==
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 0ea18af7-5799-4a88-94af-6479a1f3baf0
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3P;
+        expires=Thu, 04-Oct-2018 05:12:20 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; expires=Wed, 04-Sep-2019
+        05:12:20 GMT; path=/; HttpOnly
+      Persistent-Auth:
+      - 'true'
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:20 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:20 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="root"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:20 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3P;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3678302a-4543-4e89-9a15-9c55af93d817
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3O;
+        expires=Thu, 04-Oct-2018 05:12:21 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:20 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="23" IncludesLastItemInRange="true"><t:Folders><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABrc"/><t:DisplayName>AllContacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAw"/><t:DisplayName>Common
+        Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAr"/><t:DisplayName>Deferred
+        Action</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7R"/><t:DisplayName>Favorites</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAu"/><t:DisplayName>Finder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZh"/><t:DisplayName>Freebusy
+        Data</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZw"/><t:DisplayName>Location</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ+"/><t:DisplayName>MailboxAssociations</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbE"/><t:DisplayName>My Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbf"/><t:DisplayName>ParkedMessages</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7Z"/><t:DisplayName>People
+        I Know</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ3"/><t:DisplayName>PeopleConnect</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABW"/><t:DisplayName>Recoverable
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABLo"/><t:DisplayName>Reminders</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAx"/><t:DisplayName>Schedule</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZa"/><t:DisplayName>Sharing</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAt"/><t:DisplayName>Shortcuts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAs"/><t:DisplayName>Spooler
+        Queue</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZp"/><t:DisplayName>System</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbm"/><t:DisplayName>TemporarySaves</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaG"/><t:DisplayName>To-Do
+        Search</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:DisplayName>Top of
+        Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAv"/><t:DisplayName>Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:21 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:21 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3O;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - cd280bfe-08f2-4888-8668-a341014e5086
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3O;
+        expires=Thu, 04-Oct-2018 05:12:21 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:21 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:21 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="publicfoldersroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:21 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3O;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 89768560-fa41-4d6c-aeee-531c4743bc68
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3O;
+        expires=Thu, 04-Oct-2018 05:12:21 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:21 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="
+        ChangeKey="AQAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQref"/><t:DisplayName>O1015684</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:22 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:22 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3O;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 85bebcfc-64b7-413c-87cb-452be2d18d81
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3N;
+        expires=Thu, 04-Oct-2018 05:12:22 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:21 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:22 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:22 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3N;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - '099abbdb-90be-4caf-8b79-ecd4524fc995'
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3N;
+        expires=Thu, 04-Oct-2018 05:12:22 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:22 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:22 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:22 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3N;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e335a278-d63c-4696-b5f8-e31fbd000d45
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3N;
+        expires=Thu, 04-Oct-2018 05:12:22 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:22 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:22 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:22 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3N;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 15744929-889c-4269-99cf-6af1ba517aff
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3M;
+        expires=Thu, 04-Oct-2018 05:12:23 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:22 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:23 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:23 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3M;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 15844a61-d4a5-4c92-bb83-ccf4ab6f966e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3M;
+        expires=Thu, 04-Oct-2018 05:12:23 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:23 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:23 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:23 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3M;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 92420c5a-d971-4a09-ac63-88f9d396beac
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3M;
+        expires=Thu, 04-Oct-2018 05:12:23 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:23 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:23 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:23 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3M;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 958e1c9e-97e9-4f9b-84c7-732b18d218ff
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3L;
+        expires=Thu, 04-Oct-2018 05:12:24 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:23 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:24 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:24 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3L;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b6a9ad6e-afd4-4edc-b7d1-de4c56ddb105
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3L;
+        expires=Thu, 04-Oct-2018 05:12:24 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:24 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:24 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:24 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3L;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a6efb295-0ef3-4f9c-8751-32c12badd78a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3L;
+        expires=Thu, 04-Oct-2018 05:12:24 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:24 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:24 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:24 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3L;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 942cfe03-e739-4e25-a3b0-3e0bcb4026bf
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3K;
+        expires=Thu, 04-Oct-2018 05:12:25 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:24 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:25 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:25 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3K;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ab1bd53c-e1d7-40ec-bb21-4ef78acc1e04
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3K;
+        expires=Thu, 04-Oct-2018 05:12:25 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:24 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:25 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:25 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3K;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 62a39b72-92bc-4b85-a23f-3cfee8f23c42
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3K;
+        expires=Thu, 04-Oct-2018 05:12:25 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:25 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:25 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:25 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3K;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c0ab6d09-b1a0-4d77-99aa-69aa9a2ced51
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        expires=Thu, 04-Oct-2018 05:12:26 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:25 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAB2"/><t:DisplayName>Calendar
+        Logging</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABe"/><t:DisplayName>Deletions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABu"/><t:DisplayName>Purges</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABm"/><t:DisplayName>Versions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:26 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:26 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5601111b-c82b-4469-9b2c-e731ed9b8f3a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        expires=Thu, 04-Oct-2018 05:12:26 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:25 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:26 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:26 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - cc18ba16-5b03-4eeb-a241-b695d6b0fe34
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        expires=Thu, 04-Oct-2018 05:12:26 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:26 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:26 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:26 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6e48c0cd-26e6-42c2-81fc-0aec267fb64f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        expires=Thu, 04-Oct-2018 05:12:26 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:26 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:27 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:27 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3J;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a00509ce-0747-46f4-b75b-66319c1a8515
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3I;
+        expires=Thu, 04-Oct-2018 05:12:27 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:26 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:27 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:27 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3I;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c5a88086-9fcd-4acb-9418-b74971607997
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3I;
+        expires=Thu, 04-Oct-2018 05:12:27 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:27 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:27 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:27 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3I;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - dd26c8b0-37ee-415c-b1a6-483dcfdac1be
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3I;
+        expires=Thu, 04-Oct-2018 05:12:27 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:27 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Error"><m:MessageText>Der Zugriff wird verweigert. Überprüfen
+        Sie die Anmeldeinformationen, und versuchen Sie es dann erneut.</m:MessageText><m:ResponseCode>ErrorAccessDenied</m:ResponseCode><m:DescriptiveLinkKey>0</m:DescriptiveLinkKey></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:28 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:28 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3I;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a20f38a6-d3ef-46d7-83b3-c3d404fe47a3
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3H;
+        expires=Thu, 04-Oct-2018 05:12:28 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:27 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:28 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:28 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3H;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 36d55ed0-8664-4497-8314-80595598388d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3H;
+        expires=Thu, 04-Oct-2018 05:12:28 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:27 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:28 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:28 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3H;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - dfdcc9be-a830-4abb-bde0-1510dc7a9868
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3H;
+        expires=Thu, 04-Oct-2018 05:12:28 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:28 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:28 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:28 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3H;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ba194722-4dab-40db-9539-14826a4e117f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3G;
+        expires=Thu, 04-Oct-2018 05:12:29 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:28 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:29 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:29 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3G;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3ed6a106-a9fa-481a-a3cc-e73d68cfbde2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3G;
+        expires=Thu, 04-Oct-2018 05:12:29 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:28 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:29 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:29 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3G;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3db1b2e8-cf02-40c6-9b34-5e7339a7ef59
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3G;
+        expires=Thu, 04-Oct-2018 05:12:29 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:29 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:29 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:29 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7Nxc3G;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c5147b8d-32ff-41b5-984f-ff0ac59cccd4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczP;
+        expires=Thu, 04-Oct-2018 05:12:30 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:29 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:30 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:30 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczP;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 85d41288-d088-474f-b3f2-a3ee9eb2c77a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczP;
+        expires=Thu, 04-Oct-2018 05:12:30 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:29 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:30 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:30 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczP;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7a109d83-c715-4242-b1c0-4ca4adde7df3
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczP;
+        expires=Thu, 04-Oct-2018 05:12:30 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:30 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:30 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:30 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczP;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5639e03a-26d8-439c-8de1-3970e33fe9f8
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczO;
+        expires=Thu, 04-Oct-2018 05:12:31 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:30 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:31 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:31 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczO;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e9fcd856-d171-40e0-8546-f43f03f11c1f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczO;
+        expires=Thu, 04-Oct-2018 05:12:31 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:30 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:31 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:31 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczO;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 405517e1-e568-4ab2-a5e5-6f61a577f63f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczO;
+        expires=Thu, 04-Oct-2018 05:12:31 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:31 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:31 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:31 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczO;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 0b36f7b4-5412-41ac-9faa-b32bdaddb4d4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        expires=Thu, 04-Oct-2018 05:12:32 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:31 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:32 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:32 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c6e54d78-d634-4b5c-b3c5-af7ad97c2837
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        expires=Thu, 04-Oct-2018 05:12:32 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:31 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:32 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:32 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 8c02b873-c56c-48b1-bd13-552d98da1bbe
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        expires=Thu, 04-Oct-2018 05:12:32 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:32 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:32 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:32 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c03c25f3-6859-40fb-abf6-5106fa4d5d14
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        expires=Thu, 04-Oct-2018 05:12:32 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:32 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:33 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:33 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczN;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 35e96872-4840-497f-8f5c-1263b6fd92f7
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczM;
+        expires=Thu, 04-Oct-2018 05:12:33 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:32 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:33 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:33 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczM;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 248474d4-fb64-453b-aedf-0e87a6f4838c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczM;
+        expires=Thu, 04-Oct-2018 05:12:33 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:32 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="
+        ChangeKey="AwAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQred"/><t:DisplayName>contracts
+        test</t:DisplayName><t:TotalCount>3</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:33 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:33 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczM;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - daef10e8-6f99-4933-ac9d-e96a3e080f20
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczM;
+        expires=Thu, 04-Oct-2018 05:12:33 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:33 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:34 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:34 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczM;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 4a590a71-4ae6-4638-8d11-02015f3165e9
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczL;
+        expires=Thu, 04-Oct-2018 05:12:34 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:33 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:34 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:34 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczL;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 01e369f3-b714-4c55-94e1-23859678b5e3
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczL;
+        expires=Thu, 04-Oct-2018 05:12:34 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:33 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:34 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:34 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczL;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 400a85a4-380c-4859-b960-bb73eb2b8f80
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczL;
+        expires=Thu, 04-Oct-2018 05:12:34 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:34 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:35 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:35 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczL;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 327ec37c-f2f3-40a1-8490-71ee26a8d5b6
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczK;
+        expires=Thu, 04-Oct-2018 05:12:35 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:34 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:35 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:35 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczK;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b1efd427-09dd-48fc-a1a8-5219bcae5cf9
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczK;
+        expires=Thu, 04-Oct-2018 05:12:35 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:34 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:35 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:35 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczK;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 309fa79c-343d-43ff-9384-b99f1fde2d1c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczK;
+        expires=Thu, 04-Oct-2018 05:12:35 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:35 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:35 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:35 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczK;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 485e4a9a-4817-42ce-8f06-d59d30bc7cd1
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczJ;
+        expires=Thu, 04-Oct-2018 05:12:36 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:35 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:36 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:36 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczJ;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9b1ed077-63d7-4b10-ba7d-05e298a6dd44
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczJ;
+        expires=Thu, 04-Oct-2018 05:12:36 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:35 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:36 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:36 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczJ;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c640f745-f4ce-49ab-bf27-6ce88b128142
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczJ;
+        expires=Thu, 04-Oct-2018 05:12:36 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:36 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:36 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:36 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczJ;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b1c6c3fc-e97e-42b5-8ac8-66862ec8f4ac
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczI;
+        expires=Thu, 04-Oct-2018 05:12:37 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:36 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:37 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:37 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczI;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 4e68a976-e5d9-44eb-b344-73abd61b113e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczI;
+        expires=Thu, 04-Oct-2018 05:12:37 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:36 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:37 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:37 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczI;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ea959fbf-9e17-4dcf-a8d7-e1dceb6b3b61
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczI;
+        expires=Thu, 04-Oct-2018 05:12:37 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:37 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:37 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:37 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczI;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d0ed0172-f6ab-428e-af78-2f7bd1c117d9
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        expires=Thu, 04-Oct-2018 05:12:38 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:37 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:38 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:38 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 8f91594a-4b8b-4c1d-a2b1-60b72e328926
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        expires=Thu, 04-Oct-2018 05:12:38 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:37 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:38 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:38 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9d23e15a-63fa-456b-84bd-e85abc2c5536
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        expires=Thu, 04-Oct-2018 05:12:38 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:38 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:38 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:38 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9ba0f6ff-27b9-4d79-b9f1-26c0814774e8
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        expires=Thu, 04-Oct-2018 05:12:38 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:38 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:39 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:39 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczH;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 3600aecb-8134-44ae-b4ba-cc0c6b795e12
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczG;
+        expires=Thu, 04-Oct-2018 05:12:39 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:38 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:39 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:39 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczG;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 1eff1dff-97b5-4b20-b72c-7877982c368a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczG;
+        expires=Thu, 04-Oct-2018 05:12:39 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:38 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:39 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:39 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczG;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 774f7a57-e356-49a9-b1fd-cab3d50eb4ee
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczG;
+        expires=Thu, 04-Oct-2018 05:12:39 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:39 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:40 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:40 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxczG;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 97586388-1ff7-4c6d-b778-cd8311b0fdb0
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvP;
+        expires=Thu, 04-Oct-2018 05:12:40 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:39 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:40 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:40 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvP;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - cb2d17d5-ae50-431d-960a-656ada5c1d2a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvP;
+        expires=Thu, 04-Oct-2018 05:12:40 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:39 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:40 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:40 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvP;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 00c30042-8780-4a43-8292-c6d4be679e14
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvP;
+        expires=Thu, 04-Oct-2018 05:12:40 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:40 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:41 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:41 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvP;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9d790348-6841-4967-95f3-93f3436f5dff
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvO;
+        expires=Thu, 04-Oct-2018 05:12:41 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:40 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:41 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:41 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvO;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e34438d9-4318-4b21-a787-91a7b049c569
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvO;
+        expires=Thu, 04-Oct-2018 05:12:41 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:40 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:41 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:41 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvO;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 971918a2-9cee-4f65-a12c-a7607fa63e48
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvO;
+        expires=Thu, 04-Oct-2018 05:12:41 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:41 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:41 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:41 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvO;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c7787f9e-7343-4e34-bfc1-9129685c6a78
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvN;
+        expires=Thu, 04-Oct-2018 05:12:42 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:41 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:42 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:42 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvN;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - cfa2a442-9608-4d62-9e76-d57679a0d636
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvN;
+        expires=Thu, 04-Oct-2018 05:12:42 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:41 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:42 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:42 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvN;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f6237014-ea52-4962-ba75-74f9fd8491f5
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvN;
+        expires=Thu, 04-Oct-2018 05:12:42 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:42 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:ParentFolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAAA=="/><t:FolderClass>IPF.Note</t:FolderClass><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:42 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:12:42 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=WQJXZUSDYXIBNQIMA; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvN;
+        exchangecookie=cc281f1bef134275b92ddab5379ffff6
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 47dce26f-ef6c-484b-b44f-08edf7ea06a2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc7NxcvM;
+        expires=Thu, 04-Oct-2018 05:12:43 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=cc281f1bef134275b92ddab5379ffff6; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:12:42 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:ParentFolderId Id="AAMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2M1NwAuAAAAAADbIT+HYOOASon5fupv/BoDAQC6Gn49WmeZQbLsvVWHF+rQAAAAAAEBAAA="
+        ChangeKey="AQAAAA=="/><t:DisplayName>Top of Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:12:43 GMT
+recorded_with: VCR 4.0.0

+ 5855 - 0
test/data/vcr_cassettes/lib/import/exchange/folder/returns_the_full_path_from_root_to_target_in_valid_UTF-8.yml

@@ -0,0 +1,5855 @@
+---
+http_interactions:
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:Restriction>
+                <t:IsEqualTo>
+                  <t:FieldURI FieldURI="folder:DisplayName"/>
+                  <t:FieldURIOrConstant>
+                    <t:Constant Value="Inbox"/>
+                  </t:FieldURIOrConstant>
+                </t:IsEqualTo>
+              </m:Restriction>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:56 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ
+      Authorization:
+      - Negotiate TlRMTVNTUAADAAAAGAAYAEQAAADGAMYAXAAAAAAAAAAiAQAARABEACIBAAAAAAAAZgEAAAAAAABmAQAABYKJAgAAAACRczNLvCscDZjhEzud/27aiLgyYS37xXuI+vzd2S+CCbU1MJ2YO6rWAQEAAAAAAAAAnKgsEETUAYi4MmEt+8V7AAAAAAIAEABFAFgAQwBIAEEATgBHAEUAAQAMAEUAWABGAEUAMAA2AAQAGABFAFgAQwBIAEEATgBHAEUALgBJAE4AVAADACYARQBYAEYARQAwADYALgBFAFgAQwBIAEEATgBHAEUALgBJAE4AVAAFABgARQBYAEMASABBAE4ARwBFAC4ASQBOAFQABwAIAEiOwywQRNQBAAAAAAAAAABjAHUAcwB0AG8AbQBlAHIAMwBAAGEANQAzADEAMgA3ADQALgBlAHgAYwBoAGEAbgBnAGUALQBtAGEAaQBsAC4AZQB1AA==
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 19f62f06-a1f1-48eb-bfcb-b32ab5c5bbd6
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrJ;
+        expires=Thu, 04-Oct-2018 05:28:56 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; expires=Wed, 04-Sep-2019
+        05:28:56 GMT; path=/; HttpOnly
+      Persistent-Auth:
+      - 'true'
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:55 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:56 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="root"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:56 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrJ;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 2f36e76f-b2f8-4e7d-94c9-5606f5a8ee0b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrJ;
+        expires=Thu, 04-Oct-2018 05:28:56 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:55 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="23" IncludesLastItemInRange="true"><t:Folders><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABrc"/><t:DisplayName>AllContacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAw"/><t:DisplayName>Common
+        Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAr"/><t:DisplayName>Deferred
+        Action</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7R"/><t:DisplayName>Favorites</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAu"/><t:DisplayName>Finder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZh"/><t:DisplayName>Freebusy
+        Data</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZw"/><t:DisplayName>Location</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ+"/><t:DisplayName>MailboxAssociations</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbE"/><t:DisplayName>My Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbf"/><t:DisplayName>ParkedMessages</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAA7Z"/><t:DisplayName>People
+        I Know</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZ3"/><t:DisplayName>PeopleConnect</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABW"/><t:DisplayName>Recoverable
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABLo"/><t:DisplayName>Reminders</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAx"/><t:DisplayName>Schedule</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZa"/><t:DisplayName>Sharing</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAt"/><t:DisplayName>Shortcuts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAs"/><t:DisplayName>Spooler
+        Queue</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAZp"/><t:DisplayName>System</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbm"/><t:DisplayName>TemporarySaves</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:SearchFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="
+        ChangeKey="BwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaG"/><t:DisplayName>To-Do
+        Search</t:DisplayName><t:TotalCount>0</t:TotalCount><t:UnreadCount>0</t:UnreadCount></t:SearchFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:DisplayName>Top of
+        Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAv"/><t:DisplayName>Views</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:56 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="msgfolderroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:56 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrJ;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 88ce851c-db59-4089-821e-c625ce0402bf
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrI;
+        expires=Thu, 04-Oct-2018 05:28:57 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:56 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:57 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:DistinguishedFolderId Id="publicfoldersroot"/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:57 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrI;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - dd7a5180-6a2a-4528-a6ab-13cd3d0d85a0
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrI;
+        expires=Thu, 04-Oct-2018 05:28:57 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:56 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="
+        ChangeKey="AQAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQref"/><t:DisplayName>O1015684</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:57 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIY2wAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:57 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrI;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - ba4e960d-f94b-416c-a568-1c489d814ea3
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrI;
+        expires=Thu, 04-Oct-2018 05:28:57 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:57 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:58 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:58 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrI;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d9760420-3c09-459c-9ec8-7da36ca2a0f6
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrH;
+        expires=Thu, 04-Oct-2018 05:28:58 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:57 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:58 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:58 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrH;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b1df600e-b75e-408d-8dfa-7b9c93612e6d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrH;
+        expires=Thu, 04-Oct-2018 05:28:58 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:57 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:58 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:58 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrH;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - fd8a7e8b-fd28-4960-918f-0d1fc5cfe9be
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrH;
+        expires=Thu, 04-Oct-2018 05:28:58 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:58 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:59 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:59 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrH;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - fc02d080-6c49-46b1-b1dc-bc28d6c5e1b2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrG;
+        expires=Thu, 04-Oct-2018 05:28:59 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:58 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:59 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:59 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrG;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 888e2504-b76e-4785-8704-eb058d132887
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrG;
+        expires=Thu, 04-Oct-2018 05:28:59 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:58 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:28:59 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:28:59 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrG;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 96450559-5d44-4112-a224-ba99b98f9b5c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrG;
+        expires=Thu, 04-Oct-2018 05:28:59 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:59 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:00 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:00 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3HxcrG;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 42fe0e94-6b79-4739-8d6a-10a6fb0dceb2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/P;
+        expires=Thu, 04-Oct-2018 05:29:00 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:59 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:00 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:00 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/P;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b5a31447-2fe0-40db-b4a4-99a6603bc7ac
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/P;
+        expires=Thu, 04-Oct-2018 05:29:00 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:28:59 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:00 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:00 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/P;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 670beead-75e1-44e2-8a20-d688ec6b2a03
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/P;
+        expires=Thu, 04-Oct-2018 05:29:00 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:00 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:01 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAINIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:01 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/P;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 71fd3da6-2ff6-48d0-9817-6ce766b2ff52
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/O;
+        expires=Thu, 04-Oct-2018 05:29:01 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:00 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:01 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:01 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/O;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 662a5996-a560-4208-a194-d275442decd2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/O;
+        expires=Thu, 04-Oct-2018 05:29:01 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:00 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:01 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:01 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/O;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 834aeafa-a188-4f4a-bd4a-e08e81c02aaa
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/O;
+        expires=Thu, 04-Oct-2018 05:29:01 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:01 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAB2"/><t:DisplayName>Calendar
+        Logging</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABe"/><t:DisplayName>Deletions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABu"/><t:DisplayName>Purges</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAABm"/><t:DisplayName>Versions</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:02 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIRCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:02 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/O;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 0dd76611-88a7-4b27-89d6-3dabb90b974e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/N;
+        expires=Thu, 04-Oct-2018 05:29:02 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:01 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:02 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:02 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/N;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5084ee71-f5fd-4d12-b2bf-f8322d8d04fc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/N;
+        expires=Thu, 04-Oct-2018 05:29:02 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:01 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:02 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:02 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/N;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 8c386c8a-9484-4f6f-ae30-0f834eb3388c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/N;
+        expires=Thu, 04-Oct-2018 05:29:02 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:03 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBAwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:03 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/N;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e6b3c514-4933-4ba0-8414-3ff18c7d121a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/M;
+        expires=Thu, 04-Oct-2018 05:29:03 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:03 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBZAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:03 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/M;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 959b1242-5613-4323-a376-ffad248efdb9
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/M;
+        expires=Thu, 04-Oct-2018 05:29:03 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:03 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBGgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:03 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/M;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7bc69d7d-9123-468b-84c7-b439f22fcee2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/M;
+        expires=Thu, 04-Oct-2018 05:29:03 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:02 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Error"><m:MessageText>Der Zugriff wird verweigert. Überprüfen
+        Sie die Anmeldeinformationen, und versuchen Sie es dann erneut.</m:MessageText><m:ResponseCode>ErrorAccessDenied</m:ResponseCode><m:DescriptiveLinkKey>0</m:DescriptiveLinkKey></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:03 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:03 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/M;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - baeeb75c-24bd-4af3-88e0-1dc08dd7779a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/L;
+        expires=Thu, 04-Oct-2018 05:29:04 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:03 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:04 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIFTQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:04 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/L;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 7692563e-eb43-4038-be38-0f2080d4f1eb
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/L;
+        expires=Thu, 04-Oct-2018 05:29:04 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:03 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:04 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:04 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/L;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 920b28c4-7952-4a80-880b-9f98b00fc0a8
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/L;
+        expires=Thu, 04-Oct-2018 05:29:04 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:03 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="13" IncludesLastItemInRange="true"><t:Folders><t:CalendarFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="
+        ChangeKey="AgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA3"/><t:DisplayName>Calendar</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:CalendarFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsm"/><t:DisplayName>Contacts</t:DisplayName><t:TotalCount>2</t:TotalCount><t:ChildFolderCount>4</t:ChildFolderCount></t:ContactsFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAak"/><t:DisplayName>Conversation
+        Action Settings</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA0"/><t:DisplayName>Deleted
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA5"/><t:DisplayName>Drafts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="
+        ChangeKey="BgAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA6"/><t:DisplayName>Journal</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAaP"/><t:DisplayName>Junk
+        Email</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="
+        ChangeKey="BQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA7"/><t:DisplayName>Notes</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA1"/><t:DisplayName>Outbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAz"/><t:DisplayName>Sent
+        Items</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder><t:TasksFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="
+        ChangeKey="BAAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAA8"/><t:DisplayName>Tasks</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:TasksFolder><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbY"/><t:DisplayName>Working
+        Set</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:04 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBBQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:04 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/L;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c48813e0-2263-442b-99f7-bdd929ba83e2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/K;
+        expires=Thu, 04-Oct-2018 05:29:05 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:04 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:05 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:05 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/K;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 0a96f60f-87be-48bd-8688-c3c9e3495bd5
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/K;
+        expires=Thu, 04-Oct-2018 05:29:05 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:04 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:05 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:05 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/K;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - e4095f59-6760-4546-8fcb-a5f21f973e29
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/K;
+        expires=Thu, 04-Oct-2018 05:29:05 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:04 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:05 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:05 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/K;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 13cc325d-d401-49bb-92d7-0c6134bc31d2
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/J;
+        expires=Thu, 04-Oct-2018 05:29:06 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:05 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:06 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:06 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/J;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b16dd4b3-0b47-4389-8362-85eaa772f7e9
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/J;
+        expires=Thu, 04-Oct-2018 05:29:06 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:05 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:06 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:06 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/J;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f94ff7b3-233b-4320-9841-16cf757363f4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/J;
+        expires=Thu, 04-Oct-2018 05:29:06 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:07 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:07 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/J;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6a91c663-1d0d-46ea-99f0-8868e640df9d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/I;
+        expires=Thu, 04-Oct-2018 05:29:07 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:07 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:07 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/I;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 52be1399-31a8-46ad-81e6-f92a6a31b1c6
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/I;
+        expires=Thu, 04-Oct-2018 05:29:07 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:07 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:07 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/I;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 6786cf2f-493c-4c13-9207-c759367c0a61
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/I;
+        expires=Thu, 04-Oct-2018 05:29:07 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:06 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:08 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:08 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/I;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 75022e21-dd6a-4fde-af24-85d58ece323b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/H;
+        expires=Thu, 04-Oct-2018 05:29:08 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:07 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:08 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:08 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/H;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a54fd9ed-6a16-4d80-a1ff-f3bf2d5b5132
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/H;
+        expires=Thu, 04-Oct-2018 05:29:08 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:07 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:08 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:08 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/H;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b3fb8d04-6376-40ed-8685-3807b6868d62
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/H;
+        expires=Thu, 04-Oct-2018 05:29:08 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:07 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:08 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:08 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/H;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 18a2d83e-7282-49d7-89da-c66935c19e9c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/G;
+        expires=Thu, 04-Oct-2018 05:29:09 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:08 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:09 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:09 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/G;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 289520b6-eda9-4f83-b019-6516c4b1e33b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/G;
+        expires=Thu, 04-Oct-2018 05:29:09 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:08 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:09 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEJQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:09 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/G;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 4d3e5d31-4fc5-4f40-9fb5-17fd4a3215d1
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/G;
+        expires=Thu, 04-Oct-2018 05:29:09 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:08 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="
+        ChangeKey="AwAAABYAAAAo0JoHBe/CTqGtbvXWRhp9AAABQred"/><t:DisplayName>contracts
+        test</t:DisplayName><t:TotalCount>3</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:09 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:09 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc/G;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 70a18ac6-b9ed-4753-94eb-50339589f3eb
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7P;
+        expires=Thu, 04-Oct-2018 05:29:10 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:09 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:10 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:10 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7P;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 73393961-0319-4c5d-8480-75abc9bcc892
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7P;
+        expires=Thu, 04-Oct-2018 05:29:10 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:09 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:10 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:10 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7P;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 5a459b25-a329-4364-bb2a-d45f4d7a068d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7P;
+        expires=Thu, 04-Oct-2018 05:29:10 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:09 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:10 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBFQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:10 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7P;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 637f0182-f736-4e1e-a536-298ce44c8b2f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7O;
+        expires=Thu, 04-Oct-2018 05:29:11 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:10 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:11 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:11 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7O;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 44f474d8-7bc1-460a-9b77-1020454bd803
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7O;
+        expires=Thu, 04-Oct-2018 05:29:11 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:10 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:11 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:11 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7O;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 16c92ff0-b15b-4f9a-b27a-7ad8b406c9fd
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7O;
+        expires=Thu, 04-Oct-2018 05:29:11 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:10 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="4" IncludesLastItemInRange="true"><t:Folders><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa1"/><t:DisplayName>{06967759-274D-40B2-A3EB-D7F9E73727D7}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAa9"/><t:DisplayName>{A9E2BC46-B3A0-4243-B315-60D991004455}</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAbQ"/><t:DisplayName>GAL Contacts</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder><t:ContactsFolder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="
+        ChangeKey="AwAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAas"/><t:DisplayName>Recipient
+        Cache</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount></t:ContactsFolder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:11 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:11 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7O;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - aed9a57a-672c-4a91-8817-18bf1c995c30
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7N;
+        expires=Thu, 04-Oct-2018 05:29:12 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:12 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:12 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:12 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7N;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f376bfba-f596-4711-85e3-4cecfec37f65
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7N;
+        expires=Thu, 04-Oct-2018 05:29:12 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:12 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:12 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:12 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7N;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9281a959-62c0-42d0-bdae-ac762e55f730
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7N;
+        expires=Thu, 04-Oct-2018 05:29:12 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:12 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:12 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:12 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7N;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d5cfe33a-2ebd-4062-afc8-422b31b51322
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7M;
+        expires=Thu, 04-Oct-2018 05:29:13 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:13 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="1" IncludesLastItemInRange="true"><t:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsj"/><t:DisplayName>Untitled
+        Folder</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>0</t:ChildFolderCount><t:UnreadCount>0</t:UnreadCount></t:Folder></t:Folders></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:13 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:13 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7M;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 23b66d1b-0a03-4366-b208-18c9b1c115da
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7M;
+        expires=Thu, 04-Oct-2018 05:29:13 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:13 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:13 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBHgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:13 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7M;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c48bc619-4f9b-4bdb-bad1-3b152e417a15
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7M;
+        expires=Thu, 04-Oct-2018 05:29:13 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:13 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7M;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - '09872de0-3ebc-4968-b880-4b7965180ef3'
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7L;
+        expires=Thu, 04-Oct-2018 05:29:14 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:14 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7L;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a88d6110-0cd3-47d3-aefc-8e308f7cd291
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7L;
+        expires=Thu, 04-Oct-2018 05:29:14 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:14 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7L;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 71953672-3d7e-4786-b8da-6602085d345b
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7L;
+        expires=Thu, 04-Oct-2018 05:29:14 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:14 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:14 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBEgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:14 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7L;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - a8f29e16-f362-4d27-bb04-cd7cd0b6f4e8
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7K;
+        expires=Thu, 04-Oct-2018 05:29:15 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:15 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:15 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBJAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:15 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7K;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 671bbc4f-1801-42bc-8aed-8b2505d9833d
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7K;
+        expires=Thu, 04-Oct-2018 05:29:15 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:15 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:15 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:15 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7K;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 141ee1c5-34d0-4d13-8c2e-e930c44c1afc
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7K;
+        expires=Thu, 04-Oct-2018 05:29:15 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:15 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:15 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:15 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7K;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - eb1b0cba-b857-4d36-ab94-e2889f608347
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7J;
+        expires=Thu, 04-Oct-2018 05:29:16 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:16 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:16 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:16 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7J;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 820f03ce-368a-4753-9a35-cb708e46b8b5
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7J;
+        expires=Thu, 04-Oct-2018 05:29:16 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:16 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:16 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:16 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7J;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 60c1602a-4f8a-4d8e-9963-410e9fe38884
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7J;
+        expires=Thu, 04-Oct-2018 05:29:16 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:16 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:16 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:16 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7J;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - c43be297-d713-48eb-ab7a-b7c8e56a6d1f
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        expires=Thu, 04-Oct-2018 05:29:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:16 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:17 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQEuAAADGkRzkKpmEc2byACqAC/EWgMAii9amSMn3EupYKndVHK8gAADtVXEKwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:17 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 852d82dd-c80c-43d2-b6d9-c29a6df84ca4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        expires=Thu, 04-Oct-2018 05:29:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:17 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:17 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIQAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:17 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 297a8469-e1a7-447b-81eb-a692cb086f1c
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        expires=Thu, 04-Oct-2018 05:29:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:17 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:17 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIgAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:17 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - d2676fe7-2f57-4cce-928b-73e359b12048
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        expires=Thu, 04-Oct-2018 05:29:17 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:17 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:18 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIwAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:18 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7I;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 79644b44-3bf9-49ce-9a11-b2761714b1d4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7H;
+        expires=Thu, 04-Oct-2018 05:29:18 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:18 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:18 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBIAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:18 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7H;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - b5ad5784-1013-4249-818d-1433058dd34a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7H;
+        expires=Thu, 04-Oct-2018 05:29:18 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:18 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:18 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <FindFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" Traversal="Shallow">
+              <FolderShape>
+                <t:BaseShape>Default</t:BaseShape>
+              </FolderShape>
+              <m:ParentFolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBKAAAAA=="/>
+              </m:ParentFolderIds>
+            </FindFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:18 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7H;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 9e8b43df-09c7-4831-a22e-e93530ab593e
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7H;
+        expires=Thu, 04-Oct-2018 05:29:18 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:18 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
+        TotalItemsInView="0" IncludesLastItemInRange="true"><t:Folders/></m:RootFolder></m:FindFolderResponseMessage></m:ResponseMessages></m:FindFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:19 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:19 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7H;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - f2282164-2df0-4820-8183-e5f6fa69769a
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7G;
+        expires=Thu, 04-Oct-2018 05:29:19 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:19 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBDAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAABsE"/><t:ParentFolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAAA=="/><t:FolderClass>IPF.Note</t:FolderClass><t:DisplayName>Inbox</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>1</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:19 GMT
+- request:
+    method: post
+    uri: https://exchange.example.com/EWS/Exchange.asmx
+    body:
+      encoding: UTF-8
+      string: |
+        <?xml version="1.0"?>
+        <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
+          <soap:Header>
+            <t:RequestServerVersion Version="Exchange2010"/>
+          </soap:Header>
+          <soap:Body>
+            <GetFolder xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
+              <FolderShape>
+                <t:BaseShape>AllProperties</t:BaseShape>
+              </FolderShape>
+              <m:FolderIds>
+                <t:FolderId Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA==" ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/>
+              </m:FolderIds>
+            </GetFolder>
+          </soap:Body>
+        </soap:Envelope>
+    headers:
+      User-Agent:
+      - HTTPClient/1.0 (2.8.3, ruby 2.4.4 (2018-03-28))
+      Accept:
+      - "*/*"
+      Date:
+      - Tue, 04 Sep 2018 05:29:19 GMT
+      Content-Type:
+      - text/xml
+      Cookie:
+      - ClientId=RELLLPQY0OXKOZNCQ; X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7G;
+        exchangecookie=45c714e4f76d45a88c8413d37550e5ad
+  response:
+    status:
+      code: 200
+      message: OK
+    headers:
+      Cache-Control:
+      - private
+      Transfer-Encoding:
+      - chunked
+      Content-Type:
+      - text/xml; charset=utf-8
+      Server:
+      - Microsoft-IIS/8.0
+      Request-Id:
+      - 192d207d-c7cc-4640-b251-b2238b6791b4
+      X-Calculatedbetarget:
+      - exdag20-2.exchange.int
+      X-Diaginfo:
+      - EXDAG20-2
+      X-Beserver:
+      - EXDAG20-2
+      X-Aspnet-Version:
+      - 4.0.30319
+      Set-Cookie:
+      - X-BackEndCookie=S-1-5-21-2149852636-2334046265-983485362-135679=u56Lnp2ejJqBzpnGyczNzMjSy8nOydLLnJzM0seamc/SzMjJxs6bm8eazZnIgYHNz87H0s7P0s/Lq8/Kxc3Gxc7G;
+        expires=Thu, 04-Oct-2018 05:29:19 GMT; path=/EWS; secure; HttpOnly
+      - exchangecookie=45c714e4f76d45a88c8413d37550e5ad; path=/
+      X-Powered-By:
+      - ASP.NET
+      X-Feserver:
+      - EXFE06
+      Date:
+      - Tue, 04 Sep 2018 05:29:19 GMT
+    body:
+      encoding: UTF-8
+      string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
+        MajorVersion="15" MinorVersion="0" MajorBuildNumber="1293" MinorBuildNumber="6"
+        Version="V2_23" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
+        xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:GetFolderResponse
+        xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetFolderResponseMessage
+        ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Folders><t:Folder><t:FolderId
+        Id="AQMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2MANTcALgAAA9shP4dg44BKifl+6m/8GgMBALoafj1aZ5lBsuy9VYcX6tAAAAIBCAAAAA=="
+        ChangeKey="AQAAABYAAAC6Gn49WmeZQbLsvVWHF+rQAAAAAAAy"/><t:ParentFolderId Id="AAMkADRjMTk4NmJlLTNjMGUtNDk1Yy04MjAxLWE2Nzk0NWYzY2M1NwAuAAAAAADbIT+HYOOASon5fupv/BoDAQC6Gn49WmeZQbLsvVWHF+rQAAAAAAEBAAA="
+        ChangeKey="AQAAAA=="/><t:DisplayName>Top of Information Store</t:DisplayName><t:TotalCount>0</t:TotalCount><t:ChildFolderCount>13</t:ChildFolderCount><t:EffectiveRights><t:CreateAssociated>true</t:CreateAssociated><t:CreateContents>true</t:CreateContents><t:CreateHierarchy>true</t:CreateHierarchy><t:Delete>true</t:Delete><t:Modify>true</t:Modify><t:Read>true</t:Read></t:EffectiveRights><t:UnreadCount>0</t:UnreadCount></t:Folder></m:Folders></m:GetFolderResponseMessage></m:ResponseMessages></m:GetFolderResponse></s:Body></s:Envelope>
+    http_version: 
+  recorded_at: Tue, 04 Sep 2018 05:29:19 GMT
+recorded_with: VCR 4.0.0

Some files were not shown because too many files changed in this diff